/*Common CSS*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
}

img{
    vertical-align: middle;
}

ul,li{
    list-style-type: none;
}

a:hover,
a{
    text-decoration: none;
}

h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 72px;
    color: #60be74;
    text-transform: uppercase;
}

h1 span{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: #60be74;
    text-transform: uppercase;
    display: block;
}

h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #333333;
    text-transform: uppercase;
}
h3{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #454545;
    text-transform: uppercase;
}

h4{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #454545;
    text-transform: uppercase;
}

h5{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

p{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #454545;
    line-height: 1.6;
}


a{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

h1,h2,h3,h4,h5,h6,a,p,ul,li,.navbar,.navbar-brand,.nav-item,.nav-link{
    padding: 0;
    margin: 0;
}

.section_padding{
    padding: 70px 0px;
}
.section_heading{
    text-align: center;
    margin-bottom: 70px;
}
.section_heading hr{
    height: 5px;
    width: 60px;
    background: #60be74;
    margin: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
    border: 0;
}
.section_heading hr::after {
	position: absolute;
	left: -10px;
	top: 0;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	background: #60be74;
	content: '';
}
.section_heading hr::before {
	position: absolute;
	right: -10px;
	top: 0;
	height: 5px;
	width: 5px;
	border-radius: 50%;
	background: #60be74;
	content: '';
}

.button{
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #60be74;
    background: #60be74;
    color: #fff;
    transition: 0.3s;
    text-transform: capitalize;
}

.button:hover{
    background: #fff;
    color: #000;
}
/*Common CSS*/
/*Fake Loader*/
#fakeloader-overlay {
    opacity: 1;
    top: 0px;
    left: 0px;
    position: fixed;
    background-color: rgba( 255,  255,  255, 1);
    height: 100%;
    width: 100%;
    z-index: 9998;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; 
  }
  
  #fakeloader-overlay.visible {
    opacity: 1; 
  }
  
  #fakeloader-overlay.hidden {
    opacity: 0;
    height: 0px;
    width: 0px;
    z-index: -10000; 
  }
  
  #fakeloader-overlay .loader-wrapper-outer {
    background-color: transparent;
    z-index: 9999;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: table;
    text-align: center;
    vertical-align: middle; 
  }
  #fakeloader-overlay .loader-wrapper-outer img{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
  }
  #fakeloader-overlay img {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate;
	transform: translate(-50%,-50%);
}
  #fakeloader-overlay .loader-wrapper-inner {
    display: table-cell;
    vertical-align: middle; 
  }
  
  #fakeloader-overlay .loader {
    margin: auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 8px solid rgba(255, 255, 255, 0.5);
    border-right: 8px solid rgba(255, 255, 255, 0.5);
    border-bottom: 8px solid rgba(255, 255, 255, 0.5);
    border-left: 8px solid #AAA;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: fakeloader 1.1s infinite linear;
    animation: fakeloader 1.1s infinite linear; 
  }
  
  #fakeloader-overlay .loader, #fakeloader-overlay .loader:after {
  
    border-radius: 50%;
    width: 50px;
    height: 50px; 
  }
  
  @-webkit-keyframes fakeloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); 
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); 
    } 
  }
  
  @keyframes fakeloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); 
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); 
    } 
  }
  
/*Fake Loader*/
/*Header Part Start*/
nav{
    min-height: 70px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
#check{
    display: none;
}
label{
    float: right;
}
label #btn,
label #close {
  font-size: 30px;
  color: #fff;
  line-height: 70px;
  cursor: pointer;
  display: none !important;
}

.navbar-logo{
    line-height: 70px;
}
.menu{
    float: right;
}

.menu .nav-item{
    display: inline-block;
    line-height: 70px;
    margin-right: 20px;
}

.menu .nav-item .nav-link{
    display: block;
    transition: 0.5s;
    position: relative;
}
.menu .nav-item .nav-link.active::after,
.menu .nav-item .nav-link::after{
    content: '';
    position: absolute;
    bottom: 20px;
    left:   0;
    background: #60be74;
    height: 2px;
    width: 100%;
    transform: translateX(-50%);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.5s;
}
.menu .nav-item .nav-link:hover::after{
    transform: scaleX(1);
}

.menu .nav-item .nav-link.active,
.menu .nav-item .nav-link:hover {
	color: #60be74;
}
/*Sticky Nav*/
.sticky{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    background: #000;
}

.sticky label #btn,
.sticky label #close{
    display: none !important;
}
/*Sticky Nav*/
/*Header Part End*/

/*Home Part Start*/
.home{
    background: url('../images/home-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 300px 50px 300px 0px;
}

.home_item .home_content{
    text-align: right;
}

.home_slide .carousel-indicators {
	position: absolute;
    top: 10%;
    left: 85%;
	margin-right: 15%;
    margin-left: 15%;
    display: block;
}
.home_slide .carousel-indicators li {
	width: 20px;
	height: 20px;
	margin: 5px 0px;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    border: 10px solid transparent;
    position: relative;
    transition: 0.3s;
}

.home_slide .carousel-indicators li.active::after,
.home_slide .carousel-indicators li:hover::after{
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #60be74;
}
/*Home Part End*/

/*About Part Start*/
.about_info h3{
    margin-bottom: 50px;
}
.about_info p:nth-child(4) {
    margin: 30px 0px !important;
}
.about_info .button{
    margin-right: 30px;
}
.about_skill h3{
    margin-bottom: 50px;
}

.skillbar .skill_item{
    overflow: hidden;
    margin-bottom: 30px;
}

.skill_title{
    margin-bottom: 30px;
}

.skillbar-bar{
    position: relative;
    width: 80%;
    background: #e7e7e7;
    height: 10px;
    float: left;
}
.skillbar_progressbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background: #60be74;
}
.skillbar_progressbar2{
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: #60be74;
}
.skillbar_progressbar3{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: #60be74;
}
.skillbar_progressbar4{
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #60be74;
}
.skillbar_progressbar::after{
    position: absolute;
    top: -5px;
    right: -5px;
    height: 20px;
    width: 20px;
    background: #60be74;
    border-radius: 50%;
    content: '';
}
.skillbar_progressbar2::after{
    position: absolute;
    top: -5px;
    right: -5px;
    height: 20px;
    width: 20px;
    background: #60be74;
    border-radius: 50%;
    content: '';
}
.skillbar_progressbar3::after{
    position: absolute;
    top: -5px;
    right: -5px;
    height: 20px;
    width: 20px;
    background: #60be74;
    border-radius: 50%;
    content: '';
}
.skillbar_progressbar4::after{
    position: absolute;
    top: -5px;
    right: -5px;
    height: 20px;
    width: 20px;
    background: #60be74;
    border-radius: 50%;
    content: '';
}
.skillbar_percentage{
    float: right;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #60be74;
    text-align: center;
    margin-top: -20px;
}
.skillbar_percentage h4{
    line-height: 50px;
}
/*About Part End*/

/*Services Part End*/
.service{
    background: #fafafa;
}
.service_item{
    padding: 60px 0px;
    box-shadow: 0 0 5px #000;
    text-align: center;
    margin-top: 20px;
    position: relative;
}
.ser_item_icon{
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border: 1px solid #d7d7d7;
    line-height: 90px;
    margin: 0 auto;
    transition: 0.5s;
}
.service_item:hover .ser_item_icon{
    background: #60be74;
    box-shadow: 0 2px 3px #333333;
}

.service_item::after{
    position: absolute;
    content: '';
    left: 25%;
    bottom: 0;
    height: 3px;
    width: 170px;
    background: #60be74;
    transform: scaleX(0);
    transition: 0.5s;
}
.service_item:hover::after{
    transform: scaleX(1);
}
.ser_item_icon{
    margin-bottom: 30px;
}

.ser_item_content h4{
    margin-bottom: 20px;
}
.ser_item_content p{
    margin: 0px 30px;
    text-align: left;
}
/*Services Part End*/

/*Portfolio Part Start*/
.portfolio{}

.portfolio_item{
    position: relative;
    margin-bottom: 25px;
}

.portfolio_item:hover .portfolio_item_overlay{
    transform: scale(1);
}

.portfolio_item_overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(96, 190, 116, 0.5);
    transform: scale(0);
    transform-origin: center;
    transition: 0.5s;
}

.portfolio_item_overlay .overlay_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.portfolio_item_overlay .overlay_content a{
    display: inline-block;
    margin-right: 20px;
    height: 60px;
    width: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;;
}
.portfolio_item_overlay .overlay_content a:hover{
    background: #fff;
}
.portfolio_item_overlay .overlay_content a i{
    font-size: 25px;
    color: #fff;
    line-height: 60px;
    transition: 0.3s;
}
.portfolio_item_overlay .overlay_content a:hover i{
    color: #60be74;
}
/*Portfolio Part End*/

/*Hire Part Start*/
.hire{
    background: #333333;
}
.hire_content h2{
    color: #fff;
}

.hire_content .button{
    float: right;
    padding: 10px 25px;
}
/*Hire Part End*/

/*Testimonial Part End*/
.testimonial{
    background: #fafafa;
}

.testimonial_item {
    padding: 20px 0px;
    position: relative;
}

.testimonial_item .fa-comments{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 130px;
    color: rgba(96, 190, 116, 0.5);
}

.testimonial_item .reviwer{
    text-align: center;
}

.testimonial_item .reviwer img{
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px #000;
}

.testimonial_item .reviwer h4{
    margin-top: 25px;
}

.testimonial_item .reviwer span i{
    color: #ffcc00;
    font-size: 15px;
}

.testimonial_item  .review_details i{
    font-size: 45px;
    color: #b3b3b3;
}
.testimonial_item .review_company{
    margin-top: 150px;
    text-align: center;
}

.testimonial_item  .review_details p{
    margin: 30px 0px;
    font-size: 14px;
    font-weight: 300;
}

.carousel-control-next{
    right: 49%;
    top: 30%;
	opacity: 1;
} 
.carousel-control-prev {
    left: 49%;
    top: 30%;
	opacity: 1;
}

.carousel-control-next i,
.carousel-control-prev i {
    color: #60be74;
    font-size: 25px;
}
/*Testimonial Part End*/

/*News Part End*/
.news{}

.news_item{
    box-shadow: 0 0 5px #000;
}

.news_item .img_overlay{
    background: #60be74;
}

.news_item .img_overlay h5{
    font-size: 14px;
    font-weight: 300;
    padding: 10px;
    position: relative;
}


.news_item .img_overlay{
    display: flex;
}

.news_item .img_overlay h5::after{
    position: absolute;
    content: '';
    top: 0;
    left: 100px;
    height: 100%;
    width: 1px;
    background: #b0dfba;
}
.news_item .img_overlay p{
    font-size: 12px;
    color: #fff;
    padding: 9px 10px;
}
.news_item .img_overlay p:nth-child(2){
    padding: 9px 10px 9px 25px;
}

.news_item .news_details{
    padding: 30px 15px 15px;
    transition: 0.5s;
}
.news_item .news_details h4{
    padding-bottom: 15px;
    border-bottom: 1px solid #60be74;
}

.news_item .news_details p{
    margin: 15px 0px 30px;
}

.news_item .news_details a{
    display: inline-block;
    color: #333333;
    padding-bottom: 10px;
    border-bottom: 1px solid transparent;
    transition: 0.5s;
}

.news_item:hover .news_details a{
    border-bottom: 1px solid #60be74;
}


/*News Part End*/

/*Team Part Start*/
.team{}

.team_item{
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.team_item:hover .team_item_overlay{
    bottom: 0;
}

.team_item_overlay{
    position: absolute;
    left: 0;
    bottom: -98px;
    width: 100%;
    padding: 10px 25px;
    background: rgba(96, 190, 116, 0.9);
    transition: 0.3s;;
}

.team_item_overlay .title{
    float: left;
}

.team_item_overlay h5{
    padding: 12px 0px 25px;  
    position: relative; 
}


.team_item_overlay h5::after {
	position: absolute;
	content: '';
	top: 50px;
	left: 0;
	width: 75px;
	height: 1px;
	background: #fff;
}

.team_item_overlay .social_icon{
    float: right;
    position: relative;
}

.team_item_overlay .social_icon::after{
    position: absolute;
    content: '';
    left: 40px;
    top: 39px;
    height: 1px;
    width: 35px;
    background: #fff;
}
.team_item_overlay .social_icon::before{
    position: absolute;
    content: '';
    left: 57px;
    top: 22px;
    height: 35px;
    width: 1px;
    background: #fff;
}
.team_item_overlay .social_icon a{
    display: inline-block;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 25px;
    margin: 7px 15px;
}


.team_item_overlay .social_icon a i{
    color: #60be74;
    font-size: 15px; 
}
/*Team Part End*/

/*COntact Part Start*/
.contact{

}

.contact_address{
    background: #333333;
    padding: 70px 30px 100px;
}

.contact_address h2{
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.contact_address hr{
    position: absolute;
    top: 115px;
    left: 55px;
    height: 5px;
    width: 35px;
    background: #fff;
    border: 0;
    margin: 0;
}

.contact_address hr::after{
    position: absolute;
    content: '';
    left: -10px;
    top: 0;
    height: 100%;
    width: 5px;
    border-radius: 50%;
    background: #fff;
}
.contact_address hr::before{
    position: absolute;
    content: '';
    right: -10px;
    top: 0;
    height: 100%;
    width: 5px;
    border-radius: 50%;
    background: #fff;
}

.contact_address_details{
    padding-left:  20px;
    position: relative;
}

.contact_address_details::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
}

.contact_address_details i{
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

.contact_address_details p{
    color: #fff;
    margin: 15px 0px 30px;
}

.contact_address_details a i{
    background: transparent;
    color: #fff;
    transition: 0.3s;
    height: 0;
    width: 0;
    margin-right: 30px;
}

.contact_address_details a:hover i{
    color: #60be74;
}

.contact_form{
    box-shadow: 0 0 5px #000;
    padding: 60px 25px;
    position: relative;
}

.contact_form h2{
    margin-bottom: 30px;
}

.contact_form hr{
    position: absolute;
    left: 40px;
    top: 95px;
    height: 5px;
    width: 30px;
    background: #60be74;
}

.contact_form hr::after{
    position: absolute;
    content: '';
    left: -10px;
    top: 0;
    height: 100%;
    width: 5px;
    border-radius: 50%;
    background: #60be74;
}
.contact_form hr::before{
    position: absolute;
    content: '';
    right: -10px;
    top: 0;
    height: 100%;
    width: 5px;
    border-radius: 50%;
    background: #60be74;
}

.form-control {
	color: #495057;
	background-color: transparent;
	border: 1px solid #ccc;
    border-radius: 0;
    margin-top: 20px;
    height: 45px;
}
textarea.form-control {
    height: 110px;
    resize: none;
}
.form-control::placeholder {
	color: #ccc;
}

.contact_form .button{
    margin-top: 60px;
}

/*COntact Part End*/

/*Footer Part Start*/

footer{
    background: #333;
    padding: 70px 0px 0px;
}

.footer_icon{
    text-align: center;
    margin-bottom: 70px;
}
.footer_icon_logo{
    margin-bottom: 30px;
}

.footer_icon a i{
    margin: 0px 20px;
    color: #999999;
    transition: 0.3s;
}

.footer_icon a i:hover{
    color: #60be74;
}

footer hr{
    background: #60be74;
    border: 0;
    margin: 0;
    height: 1px;
}

.footer_copyright{
    padding: 15px 0px;
    text-align: right;
}

.footer_copyright p{
    font-size: 12px;
}
/*Footer Part End*/

/*Top Button*/
.topbtn{
    position: fixed;
    right: 10px;
    bottom: 50px;
    border: 0;
    height: 50px;
    width: 50px;
    background: #60be74;
    display: none;
}

.topbtn i{
    font-size: 20px;
    color: #fff;
}
/*Top Button*/

