/*============================================================
* Template Name    : Henny - Consultancy One Page Html Template
* Author           : Vishal Lad
* Version          : 1.0
* Created          : 12/July/2020;
* File Description : Main CSS file of the template
===========================================================*/

/*====================== TABLE 
    1.BASIC
    2.COMMON
	3.PRELOADER
    4.NAVIGATION
    5.BANNER
    6.ABOUT 
    7.SERVICES
	8.PROJECT
    9.TESTIMONIAL
	10.TEAM
	11.CONTACT
    12.FOOTER
	13.SCROLL-TOP
    14.RESPONSIVE
 ========================*/

/*====================== 1. BASIC ========================*/ 
body {
    font-family: "Montserrat", Sans-serif;
	color: #222;
    line-height: 1.3;
    font-weight: 400;
    font-size: 15px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}
p{
    font-size: 15px;
    font-weight: 400;
    color: #999;
    line-height: 1.8;
    margin: 0;
}
a, a:hover, a:focus, button, button:focus {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}
ul{
    padding: 0;
	list-style: none;
	margin: 0;
}
img{
	width: 100%;
}
/*========================== END BASIC ============================*/

/*========================== 2. START COMMON ============================*/      
.section {
    padding: 100px 0;
    position: relative;
}
h4 {
    position: relative;
    margin-bottom: 24px;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
	padding-bottom: 15px;
}
h4::after {
    border: 2px solid #faaf55;
    content: '';
    position: absolute;
    width: 30px;
    margin: auto;
    bottom: 0;
    height: 2px;
    left: 0;
	right: 0;
}
.bg{
	background-color: #f9f9f9;
}
.common-desc {
    text-align: justify;
    margin: auto;
    font-size: 15px;
    font-weight: 400;
    color: #999;
    line-height: 1.8;
}
.transition{
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.btn {
	font-family: 'Oswald', sans-serif;
    padding: 14px 35px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: none;
    outline: none;
    font-weight: 500;
    border-radius: 0px;
    margin-top: 30px;
    letter-spacing: 0.1em;
    line-height: 1.3;
}
.custom-btn {
    background-color: #faaf55;
	border: 2px solid #faaf55;
}
.custom-btn:hover{
	background-color: #fff;
	border: 2px solid #fff;
	color: #faaf55;
}
.common-color {
    color: #6bc6ec;
}
.common-back-color {
    background-color: #faaf55;
}
/*========================== END COMMON ============================*/

/*========================== 3. START PRELOADER ============================*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #faaf55;
}
#preloader .loader {
    animation: 1.6s infinite linear preloader;
    border-color: #ffbc6c #fff;
    border-radius: 50%;
    border-style: solid;
    border-width: 24px;
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}
@keyframes preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes preloader {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}

@-webkit-keyframes preloader {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes preloader {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}
/*========================== END PRELOADER ============================*/

/*==========================  4. START NAVIGATION ============================*/     
.custom-navbar {
    background-color: transparent;
    z-index: 99;
    padding: 17px 0;
}
.custom-navbar .navbar-nav li a {
   line-height: 22px;
    font-family: 'Oswald', sans-serif;
    margin: 0 7px;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    color: #eee;
}
.custom-navbar .navbar-nav li a.active,
.custom-navbar .navbar-nav li a:hover {
    color: #faaf55;
}
.custom-navbar .navbar-nav li a:hover::before,
.custom-navbar .navbar-nav li a.active::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #faaf55;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin: auto;
}
.bar-toggler {
	display: none;
	cursor: pointer;
}
.custom-navbar.sticky{
	background-color: rgba(0, 0, 0, .8);
}
.navbar img {
    width: 60px;
}
.menu-bar {
    position: fixed;
    top: 70px;
    right: -40px;
    width: 0px;
	height: 100%;
	padding: 15px 15px 80px 15px;
	z-index: 99;
	display: none;
	background-color: rgba(0, 0, 0, .8);
    border-radius: 0px;
	overflow: auto;
	border-top: 2px solid #111;
}
.menu-bar.active{
	width: 290px;
	right: 0;
}
.menu-bar ul li a {
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
	text-align: center;
	position: relative;
	color: #eee;
}
.menu-bar ul li a.active,
.menu-bar ul li a:hover {
	color: #faaf55;
}
.menu-bar ul li a:hover::before,
.menu-bar ul li a.active::before{
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #faaf55;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin: auto;
}
.menu-bar ul li.menu-logo {
    text-align: center;
    margin-bottom: 15px;
}
.menu-bar .menu-logo img {
    width: 40px;
}
.bar1, .bar2, .bar3 {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
  transform: rotate(-45deg) translate(-5px, 5px);
}
.change .bar2 {opacity: 0;}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
/*==========================  END NAVIGATION ============================*/

/*==========================  5. START BANNER ============================*/
.banner {
    background-image: url("http://epsilonitservice.com/moster/consultancy/images/banner/banner.jpg");
	position: relative;
	background-position: center center;
    background-size: cover; 
}
.banner::before {
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    right: 0;
	left:0;
	bottom:0;
	content:'';
}
.banner-height {
    height: 100vh;
}
.banner .banner-data {
    position:relative;
    height: 100%;
}
.banner .banner-inner {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    height: max-content;
    width: 100%;
    right: 0;
}
.banner .banner-title {
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 2px;
	margin: 0 0 10px;
}
.banner .banner-desc {
    max-width: 645px;
    font-size: 16px;
    font-weight: 300;
    word-spacing: 2px;
}
.banner-detail h3 {
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-size: 22px;
}
.banner .icon_animate {
    position: absolute;
    bottom: 6%;
    width: 100%;
    text-align: center;
    color: #fff;
}
.banner .icon_animate i {
    position: relative;
	color: #fff;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;  
    line-height: 48px;
	display: inline-block;
    border-radius: 20px;
	height: 40px;
    width: 24px;
    border: 2px solid #ffffff;  
}
.banner .icon_animate i:after {
    content: "";
    position: absolute;
    left: 0;
	right: 0;
	bottom: 6px;
    margin: auto;
    border-radius: 3px;
    z-index: -1;
    height: 8px;
    width: 2px;
    background-color: #fff;
}
.wow {
    visibility: hidden;
}
/*==========================  END BANNER ============================*/

/*==========================  6. START ABOUT ============================*/
.about .about-title h4::after {
    border: 2px solid #faaf55;
    content: '';
    position: absolute;
    width: 30px;
    margin: auto;
    bottom: 0;
    height: 2px;
    left: 0;
	right: unset;
}
.about-pic img{
	width: 100%;
}
.about p {
	font-size: 15px;
    font-weight: 400;
    color: #999;
    line-height: 1.8;
	margin-bottom: 24px;
}
.about-progress h6 {
    font-size: 18px;
}
.about-progress{
    margin-top: 15px;
}
.about-progress .progress {
    background: #eee;
    border-radius: 0px;
    padding: 2px;
    height: 1.2rem;
}
.about-progress .progress-bar {
    background: #faaf55;
}
/*==========================  END ABOUT ============================*/

/*==========================  7. START SERVICES ============================*/
.service .service-data {
	padding: 36px;
	position: relative;
	border: 1px solid #4b4b4b;
}
.service .service-data .service-icon i {
    font-size: 54px;
    color: #faaf55;
    position: relative;
    height: 90px;
    width: 90px;
    line-height: 92px;
}
.service-icon i::after {
    background: #4b4b4b;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.service .service-desc {
    text-align: center;
}
.service .service-icon {
    text-align: center;
    margin-bottom: 20px;
}
.service-desc h5 {
    font-size: 22px;
    color: #fff;
	margin-bottom: 20px;
}
.service {
    background-color: #333333;
}
.service h4 {
    color: #fff;
}
/*==========================  END SERVICES ============================*/

/*==========================  8. START PROJECT ============================*/
.project .project-image{
	position:relative;
	overflow: hidden;
	margin-top: 30px;
}
.project .project-image img{
	width: 100%;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.project .project-image:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
    transform: scale(1.1);	
}
.project .pro-view {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    margin: auto;
	z-index: 1;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	opacity: 1;
}
.project .project-image:hover .pro-view{
	background-color: rgba(255,255,255,0.8);
}
.project .project-image .pro-view .pro-view-data a {
    color: #faaf55;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
	opacity: 0;
	position: relative;
}
.project .project-image .pro-view .pro-view-data a::before{
	position: absolute;
	content: '';
	bottom: -4px;
	left: 0;
	width: 20px;
	border-bottom: 2px solid #faaf55;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
}
.project .project-image .pro-view .pro-view-data a:hover::before{
	width: 100%;
}
.project .project-image:hover .pro-view .pro-view-data a,
.project .project-image:hover .pro-view .pro-view-data h6{
	opacity: 1;
}
.pro-view-data i {
    font-size: 24px;
    line-height: 49px;
}
.pro-view-data {
    position: absolute;
    width: 100%;
    top: 70%;
	transform: translateY(-50%);
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.pro-view-data h6 {
    font-size: 20px;
	text-transform: uppercase;
	opacity: 0;
}
.project .project-image:hover .pro-view .pro-view-data{
	top: 50%;
}
/*==========================  END PROJECT ============================*/

/*==========================  9. START TESTIMONIAL ============================*/
.testimonial{
	background-color: #333333;
}
.testimonial .inner-testimonial .testimonial-data {
    /*max-width: 700px;*/
    width: 48%;
    float: left;
    margin-left: 2%;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-img {
	display: flex;
}
.testimonial h4 {
    color: #fff;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-img img {
    width: 98px;
	background-color: #4b4b4b;
    padding: 6px;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-detail {
    text-align: left;
	border: 1px solid #4b4b4b;	
    padding: 26px;
    margin-right: 10px;
}
.testimonial .inner-testimonial .testimonial-data {
    margin-top: 30px;
	position: relative;
}
.testimonial .inner-testimonial .testimonial-data .testimonial-inner-data {
    display: inline-block;
}

.testimonial .inner-testimonial .testimonial-data h6.client-name {
    font-size: 18px;
    color: #fff;
	white-space: nowrap;
}
.testimonial .client-data {
    padding: 28px 0 28px 26px;
}
.testimonial .owl-carousel .owl-nav button {
    height: 30px;
    width: 30px;
    background-color: #fff !important;
    margin-top: 60px;
    border-radius: 50%;
}
.client-data p {
    font-size: 12px;
    font-weight: 400;
    color: #b4b4b4;
}
.testimonial .owl-carousel .owl-nav button:hover {
    background-color: #faaf55 !important;
}
.testimonial blockquote {
    margin: 0;
}
.testimonial .owl-nav {
    text-align: center;
}
.testimonial .owl-carousel .owl-nav button.owl-prev {
    margin-right: 4px;
}
.testimonial .owl-carousel .owl-nav button span {
    font-size: 30px;
    line-height: 20px;
}
/*==========================  END TESTIMONIAL ============================*/

/*==========================  10. START TEAM ============================*/
.team-image {
    position: relative;
    overflow: hidden;
}
.team-data .team-image img {
	max-width: 100%;
	width: 100%;
}
.team-inner {
    padding: 10px;
    position: absolute;
    bottom: 15px;
	top: 15px;
    left: 15px;
    right: 15px;
    margin: auto;
	z-index: 1;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	background-color: rgba(255, 255, 255, 0.9);
	opacity: 0;
}
.team-data:hover .team-inner{
	opacity: 1;
}
.team-image .team-inner .team-info ul {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 0;
    z-index: 1;
    margin: 10px 0;
}
.team-image .team-inner .team-info ul li {
    display: inline-block;
    margin: 0px 2px;
}
.team-image .team-inner .team-info ul li a {
    display: block;
    height: 34px;
    line-height: 34px;
    text-align: center;
    width: 34px;
    color: #faaf55;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border: 1px solid #faaf55;
    font-size: 15px;
	border-radius: 50%;
}
.team-image .team-inner .team-info ul li a:hover {
    color: #fff;
    background-color: #faaf55;
}
.team-data {
    overflow: hidden;
}
.team-inner .team-info {
    text-align: center;
    position: relative;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}
.team-info span {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}
.team-info h6 {
    font-size: 20px;
    margin-bottom: 5px;
}
/*==========================  END TEAM ============================*/

/*==========================  11.START CONTACT ============================*/

.contact-map iframe {
    width: 100%;
    height: 100%;
}
.contact-data {
    display: flex;
}
.contact-det {
    margin-left: 30px;
}
.contact .icon i {
    font-size: 40px;
    line-height: 40px;
    color: #faaf55;
}
.contact .contact-det p a,
.contact .contact-det p {
    color: #999;
}
.contact-det h6 {
    font-size: 20px;
}
.contact .contact-det p a:hover {
    color: #faaf55;
}
.contact-map {
    position: relative;
    height: 100%;
}
.contact h2 {
    color: #fff;
}
.contact h2::after {
    border: 2px solid #fff;
}
.contact .contact-form textarea.form-control {
    height: auto;
	min-height:207px;
}
.contact .contact-form .form-control {
    border: 1px solid #eee;
    box-shadow: none !important;
    height: 50px;
    background-color: #fff;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
}
.contact .contact-form .form-control:focus {
    border: 1px solid #faaf55;
}
.contact .contact-form .form-control::placeholder {
    color: #e0d5d5;
}
.custom-btn.ct:hover{
	background-color: #faaf55;
	border: 2px solid #faaf55;
	color: #fff;
}
.custom-btn.ct{
	margin-top: 0;
}
/*==========================  END CONTACT ============================*/

/*==========================  12. START FOOTER ============================*/
.footer {
    background-color: #232323;
}
.social {
    text-align: center;
}
.footer ul{
	display: inline-flex;
}
.footer ul li a {
    width: 40px;
    height: 40px;
    display: block;
    line-height: 42px;
    text-align: center;
    position: relative;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}
.footer ul li a:hover {
	color: #fff;
	background-color: #faaf55;
}
.footer-logo img {
    width: 40px;
	margin-bottom: 15px;
}
.footer ul li{
	margin-right: 8px;
}
.footer ul li:last-child {
    margin-right: 0;
}
.footer .copy-right {
	text-align: center;
	padding: 12px 0;
}
/*==========================  END FOOTER ============================*/

/*==========================  13. START SCROLL-TOP ============================*/
.scroll-top .scrollToTop {
    bottom: 15px;
    display: none;
    height: 50px;
    position: fixed;
    right: 15px;
    text-align: center;
    text-decoration: none;
    width: 50px;
    z-index: 99;
	border-radius: 50%;
	color: #fff;
}
.scroll-top .scrollToTop i:focus {
    color: #fff;
}
.scroll-top .scrollToTop:hover i {
    color: #fff;
}
.scroll-top .fa-angle-up {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
	font-size: 30px;
    line-height: 48px;
}
/*==========================  END SCROLL-TOP ============================*/

/*===========================  14. RESPONSIVE ============================*/
@media (max-width: 1199px) {
	
}
@media (max-width: 991px) {
	.custom-navbar, .custom-navbar.sticky {
	    padding: 15px 0;
	}
	.bar-toggler {
		display: block;
	}
	.banner .banner-inner{
		width: 100%;
	}
	.section {
		padding: 90px 0;
	}
	.custom-navbar .navbar-nav li a {
		margin: 0;
		padding-left: 18px;
	}
	.navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
	.menu-bar {
		display: block;
	}
	.contact .contact-map iframe {
		height: 350px;
	}
	.banner .banner-title {
		font-size: 40px;
		line-height: 1.4;
	}
	.about-pic img {
		margin-bottom: 30px;
	}
	h4 {
		font-size: 28px;
	}
	.contact-map {
		margin-bottom: 30px;
	}
	.banner {
		background-position: 70% 0;
	}
}
@media (max-width: 767px) {
	.section {
		padding: 80px 0;
	}
	.contact-data {
		margin-bottom: 15px;
	}
	.contact-det {
		margin-left: 15px;
	}
	.contact-data .icon {
		width: 44px;
	}
}
@media (max-width: 575px) {	
	.banner .banner-title {
		font-size: 22px;
		line-height: 1.4;
	}
	h4 {
		font-size: 24px;
	}
	.scroll-top .scrollToTop{
		height: 40px;
		width: 40px;
	}
	.scroll-top .fa-angle-up{
		line-height: 38px;
	}
	.btn {
		padding: 10px 16px;
	}
	.section {
		padding: 70px 0;
	}
}
/*===========================  END RESPONSIVE ============================*/
.testimonial-title.text-center.common-title{
    margin-top: 20px;
    color: #fff;
}
.career-guidance{
    margin-top: 20px;
}
.text-justify{
    text-align: center;
}
.courses-bullet img{
    max-width: 20px;
}
.courses-table th, .courses-table td{
    padding: 20px;
}

#accreditation img{
    max-width: 100px;
}
.w3-third.w3-center.table-cell {
    float: left;
    width: 32%;
}