/*
Theme Name: Zaiora Inc
Author: Shedrack
Description: The offcial theme for Zaiora
Text Domain: zaiora
Version:3
*/

:root{
	--primary-color:#26a9cd;
	--white-color: #fff;
	--box-shadow-color:#eee;
	--light-primary-color:#f6fbfc;
	--service-hover-bg-color:#5adafd;
	--active-link-color:#6fe7ff;
	--site-gradient: linear-gradient(90deg, #60efff, 15%, #26a9cd 85%);
	--dark:#000;
}
*{
	box-sizing: border-box;
	margin:0;
    padding:0;
}

body{
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #2d2e32;
	font-weight: 300;
	letter-spacing: .5px;
	background-color: #fff;
}
.add-primary-color{
	color: var(--primary-color);
}
img{
	width: 100%;
	max-width: 100%;
	height: auto;
}

h1{
	font-size: 24px;
	color: green;
}
h3{
	font-size: 20px;
}

p{
	line-height: 1.5;
	color: black;
	margin-bottom: 15px;
}
p.add-drop-cap::first-letter {
    color: var(--primary-color);
    padding: 0 .3rem;
    margin: -.7rem .3rem 0 0;
    font-family: monospace;
    font-size: 3rem;
    float: left;
    line-height: 1.5;
  }

a{
	text-decoration: none;
	color: black;
}

a:hover{
	text-decoration: underline;
}


.container{
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
}

.content-container{
	width: 100%;
	max-width: 84%;
	margin: 0 auto;
	position: relative;
}
#header-slider{
	position: relative;
}

#header-slider .container{
	padding: 0;
}

/*Navigation*/
header{
	display: flex;
	align-items: center;
	height: 80px;
	position: fixed;
    top: 0;
    z-index: 9999;
    box-shadow: 2px 1px 5px 2px rgba(38,169,205,.2);
    width: 100%;
	background-color: var(--white-color); /*default for mobile*/
}

header .container{
	padding: 0;
}
nav{
	width: 100%;
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 16px 0 0;
	box-sizing: border-box;
	z-index: 1000;
	padding-right: 0; 
}

nav a{
	padding: 0 32px;
	color: var(--dark);
	transition: 0.4s;
}
nav ul li:last-child a{
	border-radius: 50px;
	padding: 5px 15px;
	background: var(--site-gradient);
	color:var(--white-color);
}

nav ul.sub-menu li:last-child a{
	color:var(--dark);
}

nav a:hover,
ul li .sub-menu li a:hover{
	text-decoration: none;
	color:var(--active-link-color);
}
nav ul{
	list-style: none;
}

nav ul{
	display: flex;
	height: 100%;
	margin: 0;
}

nav ul li .fas{
	margin-left: 10px;
}

nav ul.nav-list{
	position: relative;
	align-items: center;
	justify-content: space-around;
}

nav ul.nav-list li:hover .sub-menu{
	display: block;
	width: 250px;
    z-index: 999;
	
	
}
.current-menu-item a{
	color: var(--primary-color);
}



/* Submenu */
ul li .sub-menu{
	display: none;
	width: 10rem;
	position: absolute;
	flex-direction: column;
	padding-bottom: 15px; 
	padding-left: 0; 
	padding-top: 30px;
	height: auto;
}
ul li .sub-menu li a{
	color:var(--dark);
}

ul li:hover .sub-menu{
	display: block;
}
.sub-menu li{
	padding: 10px 5px;
	margin-bottom: 5px;
	background-color: var(--primary-color);
}

.sub-menu li a{
    display:block;
    text-transform: capitalize;/*each word*/
    padding:5px;
}

.sub-menu li:last-child a{
	background: none;
	
}


#logo-img{
	display: flex;
	align-items: center;
	color: white;
	transition: .4s;
	height: inherit;
	
}
#logo-img a{
	padding: 0;
}

#logo-img img{
	width: 100%;
	max-width: 150px;
	height: auto;
}

#menu-icon{
	height: 100%;
	font-size: 28px;
	padding: 0 4px;
	color: var(--primary-color);
	display: none;
	align-items: center;
}


/*Slideout menu*/
#slideout-menu{
	width: 100%;
	display: none;
	position: fixed;
	top: 55px;
	left: 0;
	background-color: var(--primary-color);
	z-index: 9999;
	transition: 0.4s;
	text-align: center;
}

#slideout-menu ul{
	list-style: none;
	padding: 0 32px;
}
#slideout-menu ul li{
	padding: 8px;
}

#slideout-menu a{
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	color: white;
}

#slideout-menu input{
	width: 85%;
	padding: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	text-align: center;
}

.page-content-start-margin{
	margin-top: 50px;
}

/*Banner and bread crumb*/

.banner{
	width: 100%;
	height: 79vh; /*500px*/
	background-color: #fff;
	color: #fff;
	position: relative;
	background-position: center center;
    background-size: cover;
}

.banner::after{
	content: '';
	/* background-color: rgba(0,0,0,.58); */
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;

}

.breadcumb-wrap{
	position: relative;
	top: 250px;
	z-index: 1;
}
.breadcumb-wrap h2,
.breadcumb-wrap a,
.breadcumb-wrap li{
	color: #fff;
}
.breadcumb-wrap h2{
	font-size: 45px;
	
	margin-bottom: 20px;
}
.breadcumb ul{
	list-style: none;
	display: flex;
}
.breadcumb ul li{
	padding: 0 5px;
}
.breadcumb-wrap a:hover{
	text-decoration: none;
}


/* New css */
.underline-heading::after{
	content: '';
	background-color: var(--primary-color);
	height: 5px;
	width: 55px;
	display: block;
	margin-bottom: 50px;
	font-size: 26px;
}


.btn{
	width: 10rem;
	background-color: var(--primary-color);
	border-radius: 1.5rem;
	color:#fafafa;
	display: block;
	padding: 1rem;
	transition: background-color 650ms linear;
	font-size:1rem;
	margin: auto;
	text-align: center;
}
.btn:hover{
	background-color: lightgreen;
}


.underline-heading{
	color: var(--primary-color);
	background-color: none;
}

.welcome{
	margin-top: -168px;
}

.welcome .row{
	clear: both;
	display: flex;
	justify-content: space-between;
	
}
.welcome .col{
	position: relative;
	top: -50px;
 	flex-basis: 32%;
 	border-radius: 20px;
 	box-shadow: -1px 5px 5px 2px lightgrey;
 	background-color: #fff;
 	padding: 0 20px 20px 20px;
 	min-height: 350px;
 }

 /* Updated css */
 .welcome .icon{
	margin-top: -80px;
 }

 .advance-center-page-contents .icon{
	 border: 4px dotted #3eadcf;
 }
 .welcome .icon,
 .advance-center-page-contents .icon{
 	border-radius: 100%;
 	width: 144px;
 	height: 144px;
 	display: flex;
 	align-items: center;
	 margin-left: auto;
	 margin-right: auto;
	 margin-bottom: 0;
 }
 .welcome .icon img, .services .icon img,
 .advance-center-page-contents .icon img{
 	margin: auto;
 }

 .welcome .icon img,
 .advance-center-page-contents .icon img{
	    width: 50%; /*I this create space around this image*/
	    max-width: 79px;
	    
	}
	/*home service*/
	.home-service-intro .service-wrap .icon{
		width: 100%;
		max-width: 60px;
	}


 .welcome h3 {
 	text-align: center;
 }

 .welcome p {
 	text-align: center;
	 min-height:130px;
 }
/*linear-gradient(90deg, #fbc68e 0%, #dd760a 85%);*/
 .welcome .col1 .icon, .welcome .col1 .btn{
 	background: linear-gradient(90deg, #fbc68e 0%, #dd760a 85%);
 }
 .welcome .col2 .icon, .welcome .col2 .btn{
 	background: linear-gradient(90deg, #a7ff3c 0%, #016001 85%);
 }
 .welcome .col3 .icon, .welcome .col3 .btn{
 	background: linear-gradient(90deg, #e66d6d 0%, #a40202 85%);
 }


.about-company{
	position: relative;
}
.about-company .content-container{
	margin-top: 50px;
}
.about-company .content-container{
	padding: 10px;
	background-color: #eee;
}

 .about-company .row{
 	display: flex;
 	justify-content: space-between;

 }

/*row2*/

.about-company .row2 h3{
	text-align: left;
	margin-top: 15px;
}
.about-company .row2 h3::after{
	margin-top: 8px;
	margin-left: 0;
	
}


.about-company .row2 .col1{
	width: 45rem;
} 

.about-company .row2 .col2{
	width: 55rem;
} 

.about-company .row2 .col2{
	display: flex;
	flex-direction: column;
}


.about-company .row2 .col2 .sub-col{
	flex:1;
	display: flex;
	align-items: center;

}
.about-company .sub-col .col-size{
	flex:1;
}
.about-company .row2 .col2 .sub-col span{
	font-size: 24px;
}
.about-company .row2 .col2 .sub-col p{
	font-size: 14px;
}
.about-company .row2 .col2 .sub-col div{
	height: 100%;
	padding: 30px 20px 10px 20px;
	text-align: center;
}
.about-company .row2 .col2 .sub-col div:nth-child(2){
	border-left: 2px solid lightgrey;
	border-right: 2px solid lightgrey;
	
	
}
.about-company .row2 .col2 .col2-row1 div:nth-child(1){
	border-bottom: 4px solid red;
	opacity: 65%;
}
.about-company .row2 .col2 .col2-row2 div:nth-child(1){
	border-top: 4px solid red;
	opacity: 70%;
}

.about-company .row2 .col2 .col2-row1 div:nth-child(2){
	border-bottom: 4px solid lightgreen;
	opacity: 65%;
}
.about-company .row2 .col2 .col2-row2 div:nth-child(2){
	border-top: 4px solid lightgreen;
	opacity: 70%;
}
 

.about-company .row2 .col2 .col2-row1 div:nth-child(3){
	border-bottom: 4px solid yellow;
	opacity: 65%;
}
.about-company .row2 .col2 .col2-row2 div:nth-child(3){
	border-top: 4px solid yellow;
	opacity: 70%;

}

/* hompage Service section */
.services{
	margin-top: 50px;
	padding-bottom: 50px;
	background-color: #eee;
}

.home-service-intro{
   margin-top: 50px;
}

.home-service-intro .service-wrap{
 	display: flex;
 	justify-content: space-between;
 	flex-wrap:wrap;
 }
 

.services .underline-heading, .client-testimonials .underline-heading,
.client-logo .underline-heading, .recent-work .underline-heading, 
.our-services-page .underline-heading{
	text-align: center;
	margin-top: 50px;
}

.services .underline-heading::after, .client-testimonials .underline-heading::after,
.client-logo .underline-heading::after, .recent-work .underline-heading::after,
.our-services-page .underline-heading::after{
	margin: 8px auto;
}

.home-service-intro .service-wrap .service{
	flex-basis: 32%;
	margin-top: 10px;
 	border-radius: 20px;
	height: 300px;
	padding: 150px 10px 10px 10px;
	color: #fff;
	transition: all 0.4s;
	background-size: cover;
	background-repeat: no-repeat;
	background-origin: center;
	position:relative;
	z-index: 1;
}

.home-service-intro .service-wrap .service::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(7,232,42,0.9) 0%, rgba(15,15,15,0.8) 100%); 
	z-index: -1;
	border-radius: 20px;
	}

.home-service-intro .service-wrap .service a{
	text-decoration: none;
	color: #fff;
	font-weight: 300;
	letter-spacing: .5px;
}

.home-service-intro .service-wrap .service p{
	display: none;
}


.home-service-intro .service-wrap{
	margin-top: 50px;
	margin-bottom: 30px;
}

.home-service-intro .service-wrap .service:hover{
	padding-top:10px;
} 
.home-service-intro .service-wrap .service:hover p{
	display: block;
}

/*home Client logo */
.clients{
	margin:80px 0 30px;
}

.client-logo-wrap .client-logo{
	padding:0 10px;
	width: 180px; /*this determine the width of the img*/
}
.client-logo-wrap .client-logo .img-wrap{
	border:1px solid #eee;
	border-radius: 5px;
}
.client-logo-wrap .client-logo img{
	height: 180px;
	padding: 1px;
}



/*home Testimonial section */
.testimonies{
	display: flex;
	align-items: center;
	background-color: #eee;
}


.client-testimonials{
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	z-index: -1;
}

.client-testimonials, .recent-work{
	height: 50vh;
	min-height: 60vh;
	margin-top: 100px;
	padding-bottom: 50px;
}

/* New css Footer*/
footer{
	background-origin: center;
	background-repeat: no-repeat;
	background-color: #f8f8f8;
	background-size: cover;
	position: relative;
	margin-top: auto;

}
footer h3{
	margin: 30px 0;
	padding: 0;
	line-height: 0;
	color: #333449;
}
footer .underline-heading::after{
	display: none;
}


.quick-link-color{
	color: #333449;
}

.footer-info{
	padding-top: 50px;
}

.footer-info .row{
	display: flex;
}


.f-quick-link, .f-services{
	flex-basis:26%;
	line-height: 2;
}

.f-quick-link ul, .f-services ul{
	list-style: square;
}

.f-quick-link a:hover, .f-services a:hover{
	color: green;
}

.f-certification{
	flex-basis:18%;

}
.f-contact{
	flex-basis:30%;
}
.f-certification img{
	width: 120px;
	box-shadow: -0.5px 2px 2px 1px black;
	border-radius: 2px;
	padding: 5px;
	background-color: #fff;
	
}

footer .f-contact a{
	transition: 0.4s;
}
footer .f-contact a .fa-facebook{
	color: #2b5998;
}
footer .f-contact a .fa-youtube{
	color: red;
}
footer .f-contact a .fa-twitter{
	color: skyblue;
}

.f-contact ul{
	display: flex;
}

.f-contact ul li{
	font-size: 32px;
	padding: 0 10px;
	transition: 0.4s;
}

footer .f-contact ul li:hover a .fa-youtube, footer .f-contact ul li:hover a .fa-facebook,
footer .f-contact ul li:hover a .fa-twitter{
	opacity: 50%;
}

.app-links .img-group{
	display: flex;
	justify-content: space-between;
}
.app-links a{
	display: inline-block;
}
.app-links img{
	max-width: 80%;
}
.f-address{
	background-color: rgba(255,255,255,.5);
	border-radius: 10px;
	padding: 10px;
	margin-top: 30px;
	border: 1px solid lightgrey;
}
.f-address p{
	color: #333449;
}


.copyright{
	background-color: var(--primary-color);
	margin-top: 50px;
}
/* copyright color */
.copyright, .copyright a{
	color: #fff;
}
.copyright .container{
	padding-top: 30px;
	padding-bottom: 30px;
}
.copyright .c-row{
	display: flex;
	justify-content: space-between;
}

.c-row .f-col-1{
	display: flex;
	align-items: center;
	justify-content:space-between;
}



/* contact us form */
.form-col p{
	padding-top:15px;
	padding-bottom: 15px; 
}
.contact-us-page .content-container{
	background-color: #fff;
}
.contact-us-page .row{
	display: flex;
}

.form-col{
	flex-basis:50%;
}
.office-address{
	flex-basis:40%;
	margin: 0 0 0 auto;
}



form{
	background-color: #eee;
	padding: 5px; 
	
}
form .form-header{
	background-color: #fff;
}
form h3{
	font-size: 3rem;
	margin-left: 0;
}

.form-row{
	padding: 1rem 0;
	width: 100%;
}


.form-row input, textarea{
	width: 100%;
	border: 1px solid lightgray;
	padding: 1rem;
}

.form-row input{
	height: 3rem;
}

form .btn{
	width: 6rem;
	border:none;
	margin-left: 0;
	

}

form input[type="submit"]{
	background: linear-gradient(90deg, black, darkgreen);
	color:#fff;
}

input:focus, textarea:focus{
	border: 1px solid rgb(239,65,54);
	opacity: 50%;
}

/* Office address section */
.office{
	background-color: #fff;
	width: 90%;
	margin: 0 auto;
	box-shadow: -2px 5px 5px 2px lightgrey;
	padding: 20px;
	margin-bottom: 30px;
}

.office h3{
	background: var(--site-gradient);
	padding:10px;
	color: #fff;
}

.office p{
	margin: 16px 0;
}

/* About-Us Page */
.title-wrap h5{
	margin-bottom: 10px;
	font-size: 16px;
}
.title-wrap h2,
h2.title{
	font-size: 30px;
	font-weight: 600;
}
h2.title{
	color: var(--primary-color);
}
section.about-page-intro,
section.service-page-intro{
	margin-top: 70px;
}

.about-page-intro .story-wrap,
.mission-and-vision .content-container,
.service-page-intro .content-container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 30px;
}



.about-page-intro .img-wrap{
	height: inherit;
	padding: 40px 0;
}
.about-page-intro .img-wrap .img{
	height: 100%;
	background-position: center center;
	background-size: cover;
	z-index: 1;
	position: relative;
	
}

.about-page-intro .story{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-page-intro .story p,
.business-approach p{
	margin-top: 15px;
}


.divider{
	display: flex;
	position: relative;
	margin: 10px 0px 10px 0px;
}

.divider .paral{
	width: 12px;
	height: 20px;
	background-color: var(--primary-color);
	transform: skew(-20deg);
	margin-right: 3px;
}

.divider .triangle {
	width: 0;
	height: 0;
	border-top: 5px solid var(--primary-color);
	border-bottom: 15px solid var(--primary-color);
	border-left: 20px solid transparent;
  }


  .mission-and-vision{
	margin-top: 30px;
	opacity: .6;
  }

  section.business-approach{
	margin-top:50px;
	background-color: var(--primary-color);
	padding: 50px 0;
  }
  .business-approach p{
	color: var(--white-color);
	text-align: justify;
  }
  .business-approach .header-content-wrap{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  }
  .business-approach .header-content-wrap .img-wrap{
	margin-bottom: 15px;

  }
  .business-approach .header-content-wrap img{
	width: auto;

  }

  /* white color */
  .business-approach .header-content-wrap h2,
  .call-to-action.service h3{
	color: var(--white-color);
  }
  .business-approach .underline-heading::after {
    background-color: var(--white-color);
	}
  .business-approach .divider .triangle {
	
	border-top: 5px solid var(--white-color);
	border-bottom: 15px solid var(--white-color);
  }

  .business-approach .divider .paral{
	background-color: var(--white-color);
  }
  .business-approach .write-up, 
  .testimonial .testimony-wrap{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
  }

  section.testimonial{
	margin-top: 80px;
	text-align: center;
  }
  section.testimonial .divider{
	justify-content: center;
  }

  .testimonial .testimony-wrap{
	margin-top: 50px;
  }
  section.testimonial .testimony{
	border:1px solid #eee;
	padding: 15px;
	border-radius: 20px;
  }
  .testimony-footer{
	padding: 20px 0;
	padding: 20px 0;
    display: flex;
    align-items: center;
  }
  .testimony-footer .img-wrap{
	width: 100px;
	height: 100px;
	border: 1px solid #eee;
	border-radius: 50%;
	padding: 15px;
	margin-right:15px;
  }
  
  .testimony-footer h3, 
  .testimony-footer h4{
	text-align: left;
  }
  .testimony-footer h4{
	opacity: .4;
	font-size: 14px;
  }

  section.call-to-action{
	margin: 30px 0;
  }
  section.call-to-action .title{
	text-align: center;
  }
  section.call-to-action .btn, 
  .service-page-intro .btn{
	border-radius: 4px;
	min-width: 13rem;
  }
  section.call-to-action .btn.about-us-cta,
  .service-page-intro .btn{
	background-color: var(--primary-color);
	color: var(--white-color);
  }
  section.call-to-action .btn{
	margin-top: 30px;
	background-color: var(--white-color);
	color: var(--primary-color);

  }

/* Our services Page */
@keyframes move-up-down{
    0%{
        transform: translateY(-20%);
        visibility: visible;
    }
	50%{
        transform: translateY(-10%);
        visibility: visible;
    }
    100%{
        transform: translateY(-20%);
        visibility: visible;
    }
}

.divider .trapezoid{
	border-top: 5px solid;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    height: 0px;
    width: 50px; 
}

.service-page-intro .img-wrap{
	position: relative;
	margin: 50px 0 5px 20px;
	max-width: 538px;
	max-height:538px;
}
.img-wrap .animated-div{
	position: absolute;
	left: 0;
	border: 35px solid var(--primary-color);
	height: 150px;
	width: 150px;
	border-radius: 50%;
	animation: move-up-down 2s linear infinite;
}
.img-wrap .experience-div{
	position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 180px;
    border: 5px solid var(--white-color);
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 2px 1px 3px var(--box-shadow-color);
    color: var(--white-color);
	padding: 10px;
	text-align: center;
}
.service-page-intro .img-wrap img{
	position: relative;
	border-radius: 50%;
}
.service-page-intro .img-wrap .experience-div h2{
	font-size: 35px;
}
.service-page-intro .img-wrap .experience-div p{
	font-size: 20px;
}

.service-page-intro .img-wrap .experience-div h2,
.service-page-intro .img-wrap .experience-div p{
	color:var(--white-color);
}

.service-page-intro p{
	margin-bottom: 25px;
}
.service-page-intro .emphasis{
	padding: 30px;
    background-color: #fbfbfb;
}
.service-page-intro .emphasis p{
	margin-bottom: 0;
}
.call-to-action.service .content-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.call-to-action.service{
	background-color: var(--primary-color);
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;

}

.call-to-action h5{
	padding-bottom: 10px;
	color: var(--primary-color);
}

.our-approach .title-wrap{
	max-width: 750px;
	width: 100%;
}
.our-approach .title-wrap h2{
	font-size: 30px;
}
.approach-wrap{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.approach{
	padding: 30px 20px;
}
.approach-wrap .approach:last-child{
	padding-right: 0;
}
.approach .icon-img-wrap{
	position: relative;
	box-shadow: 1px 1px 5px 2px var(--box-shadow-color);
	width: 214px;
	height: 214px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	border: 4px solid transparent;
}
.approach-wrap .approach h5{
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}
.approach-wrap .approach p{
	opacity: .65;
	text-align: center;
}
.approach .icon-img-wrap img{
	height: 190px;
	width: 190px;
	border-radius: 50%;
}


.approach .icon-img-wrap .digit{
	height: 80px;
	width: 80px;
	position: absolute;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(38, 169, 205, .5);
	color: var(--white-color);
	border-radius: 50%;
}
.approach .icon-img-wrap .digit span{
	height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
	border:4px solid #2097b9;
	padding: 20px;
	border-radius: 50%;
	background-color: var(--primary-color);
}

.approach-wrap .approach:hover .icon-img-wrap{
	transition: all .8s ease-in-out;
	border-color: var(--primary-color);
	box-shadow: none;
	
}

.approach-wrap .approach:hover .icon-img-wrap .digit{
	transition: all .6s ease-in-out;
	transform: translateY(-70%);
}


.call-to-action.service.cta2 .content-container div{
	flex: 1;
}
.call-to-action.service.cta2 .content-container div h5,
.call-to-action.service.cta2 .content-container div p{
	color: var(--white-color);
	font-weight: bold;
}

.portfolio1{
	margin: 60px 0 80px;
}
.portfolio1 .slider1{
	height: 150px;
	margin: 20px 10px;
}
.portfolio1 .slider1 div .img-wrap{
	width: 300px;
	height: 150px;
	margin: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.portfolio1 .slider1 img{
	width: auto;
	height: 100%;
}

.slick-dots {
    bottom: -50px;
}
.slick-dots li .customslickdot{
    height: 8px;
    width: 20px;
    background: var(--primary-color);
    border-radius: 5px;
}
.slick-dots li.slick-active .customslickdot{
	opacity: .5;
}

.recruitment{
	margin-top:80px;
	background: var(--light-primary-color);
	padding: 95px 0 80px 0;
}
.recruitment .underline-heading::after{
	margin-left: auto;
	margin-right: auto;
}
.recruitment .title-wrap{
	text-align: center;
}
.recruitment .divider{
	justify-content: center;
}
.recruitment .title-wrap p{
	font-weight: bold;
	opacity: .6;
	margin: 40px 100px;
}

.recruitment .recruitment-type{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.recruitment .recruitment-type .type{
	display: flex;
	background-color: var(--white-color);
	align-items: center;
	border-radius: 5px;
	box-shadow: 1px 3px 25px 10px var(--box-shadow-color);
}
.recruitment .recruitment-type .icon-wrap,
.recruitment .recruitment-type .type .title{
	height: 54px;
	display: flex;
	align-items: center;
}

.recruitment .recruitment-type .icon-wrap{
	background-color: var(--primary-color);
	height: 54px;
	width: 54px;
	justify-content: center;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	flex: 1;

}
.recruitment .recruitment-type .icon-wrap span{
	display: block;
    border: 2px solid var(--white-color);
    padding: 6px;
    border-radius: 50%;
	color: var(--white-color);
}
.recruitment .recruitment-type .type .title{
	font-size: 20px;
	padding-left: 12px;
	position: relative;
	flex: 5;

}

@keyframes increaseColor {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
.recruitment .recruitment-type .type .title:hover::after{
	position: absolute;
	top: 0;
	left: 0;
	height: 54px;
	width: 96%;
	content:attr(text);
	background-color: var(--service-hover-bg-color);
	color: var(--white-color);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	animation: increaseColor .4s ease-in;
	display: flex;
	align-items: center;
	font-size: 18px;
	padding-left: 12px;
}


/* Service detail page */
.service-detail .service-page-intro{
	background-color: var(--light-primary-color);
	margin-top:0;
	padding: 70px 0;
}
.service-detail .title-wrap .divider .rectangle{
	background-color: var(--primary-color);
	width: 100px;
    height: 5px;
}

.service-detail .service-page-intro .img-wrap img {
    top: 0;
    border-radius: 0;
    height: auto;
}


.service-detail .service-page-intro .btn{
	margin-left: 0;
}

.service-detail .service-listing{
	margin-top: 40px;
}
.service-detail .service-listing .title h2{
	font-size: 30px;
	padding: 10px 0;
}
.service-detail .service-listing .title p{
	font-weight: 300;
	padding-bottom: 8px;
}
.service-list-wrap > div {
	padding-bottom: 15px;
}
.service-detail .list{
	flex: 1;
}
.service-detail .list .icon{
	display: flex;
}
.list .icon .fa{
	font-size: 50px;
	margin: auto;
}

.service-detail .list h3,
.service-detail .list p{
	text-align: center;
}
.service-detail .list h3{
	padding: 15px 20px;
}
.service-detail .list p{
	padding: 0 10px 10px;
	font-weight: 400;
}
.why-choose-us{
	margin-top: 50px;
	padding: 70px 0 50px;
	background-color: var(--light-primary-color);
}
.why-choose-us .container{
	display: flex;
	gap: 30px;
}
.why-choose-us .content h2{
	font-size: 30px;
	margin-bottom: 20px;
}
.why-choose-us .container > div{
	flex:1;
}
#zaiora-tablist{
	border: 1px solid #eee;
	margin-top:10px;
}
#zaiora-tablist .tab{
	/* border-top: 1px solid #eee; */
	border-bottom: 1px solid #eee;
}
#zaiora-tablist .tab:last-child{
	border-bottom: none;
}
#zaiora-tablist .title{
	display: flex;
	align-items: center;
	gap:10px;
	padding: 15px 15px;
	
}
#zaiora-tablist .title h3{
	font-weight: 400;
}
#zaiora-tablist .hide-tablist{
	display: none;
}
#zaiora-tablist .show-tablist{
	display: block;
	border-top: 1px solid #eee;
	padding: 15px 20px;
	font-size: 15px;
}

.service-detail-cta{
	
	background-position: center center;
	background-size: cover;
	background-color: var(--primary-color);
}
.service-detail-cta .container{
	min-height: 250px;
	display: flex;
	align-items: center;
}
section.call-to-action.service-detail-cta{
	margin-top: 0;
}

section.call-to-action.service-detail-cta p{
	font-size: 25px;
	font-weight: 700;
	color: var(--white-color);
	text-align: center;
}
/* end of service detail page */



/* New Css For custom pages */
.underline-heading::after{
	margin-bottom: 20px;
	margin-top:10px;
}
.special-heading{
	background: #eee;
	padding: 10px;
}
.special-heading h5{
	font-size: 16px;
	color: #3eadcf;
}
.special-heading h4{
	font-size: 20px;
}
.special-heading h5, .special-heading h4, .special-heading h3{
	padding:0;
	margin: 10px 0px;
}
.special-heading p{
	color: #3eadcf;
}

section.custom-page .flex-container,
.service-list-wrap > div{
	display: flex;
	padding-top: 10px;
	gap: 20px;
	
}
section.custom-page .flex-container{
	padding-bottom: 70px;
}
section.custom-page .flex-wrap{
	flex-wrap: wrap;
	justify-content: space-between;
}
section.custom-page .flex-wrap .flex-item{
	flex-basis: 45%;
}
section.custom-page .flex-wrap .flex-item h5{
	font-weight: 800;
	font-size: 16px;
}

.custom-page h3{
	font-size: 30px;
	font-weight: 400;
}

.content-wrap{
	flex-basis: 55%;
	align-self: center;
}
.image-container{
	align-self: center;
	padding-left: 55px;
	flex-basis: 45%;
}
.swatch-pad-right{
	padding-left: 0;
	padding-right: 55px;
}

.add-round-border img{
	border-radius: 10px;
}
.image-container img{
	min-height: 300px;
}

.custom-page em{
	color: #3eadcf;
}



section.center-page-contents,
section.advance-center-page-contents .section-bg-img{
	background-size: cover;
	background-repeat: no-repeat;
	background-origin: center;
	position:relative;
	z-index: 1;
	color: #fff;
}

section.center-page-contents{
	min-height:200px; 
	display:flex;
	
}
section.advance-center-page-contents .section-bg-img{
	min-height:500px;
}


section.center-page-contents::before,
section.advance-center-page-contents .section-bg-img::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.center-page-contents::before{
	background-image: linear-gradient(180deg,rgba(62, 173, 207, 0.9) 0%,rgba(62, 173, 207, 0.747) 100%); 
}
section.advance-center-page-contents .section-bg-img::before{
	background-image: linear-gradient(180deg,rgba(18, 20, 31, 0.9) 0%,rgba(25, 66, 78, 0.747) 100%); 
}

section.center-page-contents .content-container{
	display:flex;
	margin-top:auto; 
	margin-bottom:auto; 
	
}

section.center-page-contents .content-container .special-heading{
	padding-left: 0;
	padding-right: 50px;
	background: none;
}
section.center-page-contents .content-container .special-heading h5{
	color: #fff;
}
.remove-background-color{
	background: none;
}

.content-wrap{
	flex-basis: 70%;
}

section.advance-center-page-contents .content-holder{
	text-align: center;
	padding-top: 80px;
}

section.advance-center-page-contents .content-holder h2{
	font-weight: 800;
	font-size: 35px;
}

section.advance-center-page-contents .content-holder p{
	width:300px;
	margin: 0 auto;
	color: #fff;
}

section.advance-center-page-contents .flex-container{
	position: relative;
	top: -140px;
	z-index: 1;
}

section.advance-center-page-contents .flex-container .flex-item{
	flex-basis: 30%;
	background: #fff;
	border: 1px solid #eee;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
}

/*Media queries*/
@media(max-width:1024px) {
	.img-wrap .experience-div {
		bottom: 60px;
	}
	
}

@media(max-width: 900px){
	
	body{
		font-size: 12px;
	}
	.page-content-start-margin{
		margin-top:100px;
		padding-left:15px;
		padding-right:15px;
	}
	p{
		font-size: 14px;
	}

	header{
		top:0px;
	}
	.content-container,
	.container{
		max-width: 98%;
	}

	header .content-container{
		max-width: 100%;
	}


	#logo-img{
		margin-left: 2%;
	}

	nav, #logo-img img{
		height: 60px;
	}
	
	nav ul{
		display: none;
	}

	#menu-icon{
		display: flex;
	}

	/*Slideout menu*/
	#slideout-menu.show{
		display: block;
	}
	ul li .sub-menu{
		width: 100%;
		position: relative;
		margin-top: 15px;
	}

	ul li.menu-item-has-children .fas{
		float: right;
	}
	ul li.menu-item-has-children ul li{
		background: none;
	}
	#header-slider,
	.banner{
	    top: 55px;
	}
	

	.banner h2{
		font-size: 30px;
	}

	/*Section after slider*/
	.welcome {
	    top: 0;
		position: relative;
		margin-top: 0;
	}



	.welcome .row{
		flex-wrap: wrap;
		position: relative;
		top: 0px;
	}

	.welcome .col{
		top: 0px;
		min-height: 200px;
		padding-top: 0;
		margin-top: 100px;
	}


	.welcome .icon {
	    width: 85px;
	    height: 85px;
	   margin-top: -50px;

	}

	.btn{
		padding: .8rem;
	}

	/* About company section */
	.about-company .content-container {
	   	padding-bottom: 50px;
	}

	.about-company .row{
	 	flex-direction: column;
	 }
	

	 .about-company .row2 .col{
	 	flex-direction: column;

	 }

	 .about-company .row2 .col1{
		width: 100%;
	} 

	

	.about-company .row2 .col2{
		width: 100%;
	} 



	.about-company .row2 .col2 .sub-col{
		flex-direction: column;
	}
	.about-company .row2 .col2 .sub-col div:nth-child(2){
		border-left: none;
		border-right: none;
	}

	.about-company .row2 .col2 .col2-row1 div:nth-child(1),
	.about-company .row2 .col2 .col2-row1 div:nth-child(2),
	.about-company .row2 .col2 .col2-row1 div:nth-child(3){
		border-bottom-width: 6px;
	}

	.about-company .row2 .col2 .col2-row2 div:nth-child(1){
		border-top: none;
		border-bottom: 6px solid red;
	}

	.about-company .row2 .col2 .col2-row2 div:nth-child(2){
		border-top: none;
		border-bottom: 6px solid lightgreen;
	}
	 
	.about-company .row2 .col2 .col2-row2 div:nth-child(3){
		border-top: none;
		border-bottom: 6px solid yellow;

	}

	.services {
	    padding-bottom: 2px;
	}

	.home-service-intro .service-wrap{
		flex-wrap: wrap;
	}

	.home-service-intro .service-wrap .service{
		margin-bottom: 20px;
		flex-basis: 30%;
	}
	/* About us page */
	.about-page-intro .img-wrap{
/* 		height: 300px; */
	}


	/*home recept work section*/
	.client-testimonials, .recent-work {
	    margin-top: 0;
	}
	.testimonies {
	    height: 50vh;
	}
	
	/* Our services */
	.approach-wrap,
	.recruitment .recruitment-type {
		grid-template-columns: repeat(2, 1fr);
	}
	.approach .icon-img-wrap {
		margin-left: auto;
		margin-right: auto;
	}
	.service-page-intro .img-wrap img {
		height: 350px;
	}
	.img-wrap .experience-div {
		width: 180px;
		height: 180px;
	}

	/* footer */
	footer .container{
		padding-left:15px;
		padding-right: 15px; 
	}
	footer h3{
		text-align: left;
	}
	.footer-info .row{
		flex-wrap: wrap;
	}

	
	footer ul{
		text-align: left;
	}

	.copyright{
		height: auto;
	}
	.copyright .c-row .c-col:nth-child(1){
		margin-bottom: 5px;
	}

	form{
		margin-bottom: 30px;
	}

	.office-address{
		width:100%;
	}

	.office{
		width: 100%;
	}

}

@media(max-width: 800px){

	.home-service-intro .service-wrap, .welcome .row{
		justify-content:space-around;
	}

	.home-service-intro .service-wrap .service, .welcome .col{
		flex-basis: 45%;
	}

}

@media(max-width: 768px){
	header {
		height: 55px;
	}
	.menu-zaiora-menu-container{
		/* display: none; */
	}
	.menu-zaiora-menu-container.show{
		/* display: block; */
	}
	.banner {
		height: 40vh;
	}
	.breadcumb-wrap {
		top: 150px;
	}
	.breadcumb-wrap h2 {
		margin-bottom: 10px;
	}
	
	.about-page-intro .story-wrap,
	 .mission-and-vision .content-container, 
	 .service-page-intro .content-container,
	 .business-approach .write-up, .testimonial .testimony-wrap,
	 section.custom-page .flex-container, .service-list-wrap > div,
	 .why-choose-us .container {
		display: block;
		 padding: 0 15px;
	 }

	.about-page-intro .img-wrap .img{
		max-width: 70vw;
		height: 439px;
		margin: auto;
	 }
	
	 .why-choose-us .content h2{
		margin-top: 20px;
	 }
	 .service-page-intro .img-wrap{
		padding: 0;
		width: 350px;
   		margin: auto;
	 }

	 .img-wrap .experience-div {
		bottom: -30px;
		right: -10px;
	 }
	 .call-to-action.service{
		margin-top: 0;
	 }
	.recruitment .title-wrap p{
		margin-right:0;
		margin-left:0;
	}
	.our-approach .title-wrap h2{
		font-size: 25px;
	}
	
	.contact-us-page .row{
		flex-direction: column;
	}
}



@media(max-width: 600px){

	h3{
		font-size: 16px;
	}

	#logo-img{
		padding: 0;
	}
	
.welcome .row{
	display: flex;
	flex-direction: column;
	align-items:center;
	
}
.welcome .col{
 	width: 80%;
 }

 .welcome .icon{
 	display: flex;
 	align-items: center;
 	
 }

	.services{
		margin-top: 50px;
	}
	.services .content-container{
		padding-bottom: 30px;
		padding-top: 20px; 
	}
	.home-service-intro .service-wrap{
		display: block;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	/* Our services */
	.approach-wrap,
	.recruitment .recruitment-type {
		grid-template-columns: repeat(1, 1fr);
	}
	.call-to-action.service .content-container{
		display: block;
	}
	.call-to-action.service .content-container p{
		margin-top: 15px;
	}

	.f-quick-link, .f-services, .f-certificate, .f-contact{
		flex-basis:50%;
	}
	.copyright .c-row{
		text-align: center;
	}
	.copyright .c-row .f-col-1{
		display: flex;
		flex-wrap:wrap;
	}	

}


@media(min-width: 900px){

	header{
		/* background-color: rgba(0,0,0,.5); */
		background-color: rgba(255,255,255,.95);
	}
	header.add-dark-bg-color{
		background-color: rgba(255,255,255,1);
		transition: all 1s ease-in-out;
	}
	nav{
		font-size: 16px;
	}

	#slideout-menu{
		display: none;
	}

	.f-contact{
		padding-left: 5px;
	}

}




@media(max-width: 480px){
	
	.welcome .row, .home-service-intro .service-wrap{
		width: 100%;
	}


	.footer-info .row{
		display: block;
	}

	.copyright .c-row{
		flex-wrap:wrap;
		
	}
	.copyright .c-row .c-col{
		width: 100%;
		
	}
	.c-row .f-col-1{
		justify-content:center;
		flex-direction: column;
		width: 100%;
	}
	em{
		display: none;
	}	
	
	.about-page-intro .img-wrap .img{
		max-width: 95vw;
		height: 350px;
	 }
}

@media(max-width: 350px){
	/*About us page*/
	
	.content-container{
		min-width: 100%;
	}
	
	.f-quick-link, .f-services, .f-certificate, .f-contact{
		flex-basis:100%;
	}

}