/*Google Fonts*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,700');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700');

body, html{
	height: 100%;
	width:100%;
}
body{
	font-size: 1rem;
	font-family: 'Source Sans Pro', sans-serif;
}

/* ========== Universal Stylings ========== */
h1,h2,h3,h4,h5{
	position: relative;
	font-family: 'Montserrat', sans-serif;
}
h6{
	position: relative;
}
.bg-primary{
	background-color: #00BD56!important;
}
.bg-dark{
	background-color: #0f0a05!important;
}
.bg-white{
	background-color: #fff;
}

.bg-light {
    background-color: #f8f9fa !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important;
}

.text-inverse{
	color: #074052;
}
.text-primary{
	color: #00BD56!important;
}
a.text-primary{
	color: #00BD56;
}
a.text-primary:hover{
	color: #00AA4D!important;
	text-decoration: none;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.btn{
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	
}
.btn-primary{
	background-color: #00BD56;
	border-color: #00BD56;
    font-size: 20px;
    padding: 10px 30px;
}
.btn-primary:hover,.btn-primary:focus{
	background-color: #00AA4D;
	border-color: #00AA4D;
}
.btn-capsul{
	border-radius: 50px;
}
i.box-circle-outline{
	border-color: inherit;
	border-width: 1px;
	border-style:solid;
	border-radius: 50%;
	height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}
i.box-circle-solid{
	background-color:#35CBDF;
	border-radius: 50%;
    color: #fff;
    font-size: 22px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    width: 55px;
}
.text-underline-white:before{
	content:"";
	position: absolute;
	width:100px;
	height: 4px;
	left:50%;
	margin-left:-50px;
	background:#fff;
	bottom: -15px;
	border-radius: 10px;
}
.text-underline-rb-white:before{
	content:"";
	position: absolute;
	width:100px;
	height: 4px;
	left:0;
	background:#fff;
	bottom: -15px;
	border-radius: 10px;
}
.text-underline-primary:before{
	content:"";
	position: absolute;
	width:50px;
	height: 4px;
	left:50%;
	margin-left:-25px;
	background:#35CBDF;
	bottom: -15px;
	border-radius: 10px;
}
.text-underline-rb-primary:before{
	content:"";
	position: absolute;
	width:100px;
	height: 4px;
	left:0;
	background:#35CBDF;
	bottom: -15px;
	border-radius: 10px;
}
.bg-overlay:before{
	content:"";
	background:rgba(0,0,0,0.3);
	position: absolute;
	height: 100%;
	width:100%;
	left:0;
	top:0;
	z-index: -1;
}
.bg-overlay-primary:before{
	content:"";
	background:rgba(49,31,10,0.5);
	position: absolute;
	height: 100%;
	width:100%;
	left:0;
	top:0;
	z-index: -1;
}
.sec-bg-01{
    background:url("../img/sec-bg-01.jpg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}
.sec-bg-02{
	background:url("../img/sec-bg-02.jpg");
	background-repeat: no-repeat;
	background-position: top left;	
	background-size: cover;
}
.sec-bg-03{
	background:url("../img/sec-bg-03.jpg");
	background-repeat: no-repeat;
	background-position: top left;	
	background-size: cover;
}
.sec-bg-04{
	background:url("../img/sec-bg-04.jpg");
	background-repeat: no-repeat;
	background-position: top left;	
	background-size: cover;
}
.parallax{
	background-attachment: fixed!important;
}

/* ========== Page Loading Style ========== */
.loaders {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
 }
 .loaders .loader {
      box-sizing: border-box;
      display: flex;
      flex: 0 1 auto;
      flex-direction: column;
      flex-grow: 1;
      flex-shrink: 0;
      flex-basis: 25%;
      max-width: 25%;
      height: 200px;
      align-items: center;
      justify-content: center;
  }
  .loader{display: table;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 1200;
  }

.loader-bg{
  background: #0F0A06;
}

.loader-inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/* ========== Top Navigation ========== */
.top-nav {
    height: 115px;
    transition: 0.2s ease-in;
	-webkit-transition: 0.2s ease-in;
	-moz-transition: 0.2s ease-in;
}
.top-nav .navbar-nav li .nav-link {
    color: #fff;
    font-size: 16px;
    padding:6px 20px;
    margin:6px 5px 0;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.2s ease-in;
	-webkit-transition: 0.2s ease-in;
	-moz-transition: 0.2s ease-in;
    text-shadow: black 0.1em 0.1em 0.2em;
}
.top-nav li a.nav-link:hover, .top-nav .nav-item.active a.nav-link{
    color: #fff;
    background-color: #00BD56;
	border-color: #00BD56;
	border-radius: 50px;
    transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}
.top-nav .navbar-brand{
	font-size: 28px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}
.top-nav .search-box li a.nav-link{
	border:1px solid #00BD56;
    background-color: #00BD56;
	padding: 8px 24px;
    font-size: 18px;
    border-radius: 50px;
}
.top-nav.light-header{
	height: 85px;
	background: rgba(0,0,0,0.6);
	box-shadow: 0 0 10px rgba(0,0,0,0.23);
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	z-index: 9999;
}
.top-nav.light-header .navbar-brand{
	color: #fff;
}

/* ========== Intro Header ========== */
.intro{
	width:100%;
	display: flex;
	align-items:center;
	height:100%;
	position: relative;
	z-index: 1;
}
.intro.intro-small{
	height: 60%;
}
.intro-bg{
	background:url("../img/intro-bg-02.jpg");
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;
}
.caption-container{
	width:50rem;
	margin:0 auto;
}
.caption-two-panel{
	display: flex;
	align-items:center;
}
.intro h1{
	font-weight: 800;
	font-size: 3.8rem;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.intro p{
    font-size: 1.9rem;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.intro-caption .btn i{
	float: left;
	margin-right:15px;
}

.intro .carousel-item{
	height: 100vh;
}

.intro .carousel-item::before{
	content:"";
	background:rgba(0,0,0,0.6);
	position: absolute;
	width:100%;
	height: 100vh;
}
.intro  .carousel-caption{
	top:25%;
}

/* ========== Serviços ========== */
.info-section {
	width:100%;
    padding: 150px 0;
	position: relative;
	z-index: 1;
}
.info-section h2{
	font-weight: 700;
	font-size: 3rem;
}
.info-section .price-count{
	font-size: 2.5rem;
}

.info-section .service-block-bg{
	background-color: rgba(180,127,65,0.4);
}
.info-section .service-block-bg:hover{
	background-color: rgba(180,127,65,1);
}

.info-section h3{
	font-size: 1.4rem;
}
.info-section p {
    font-size: 1rem;
    line-height: 1.3rem;
}
.info-section .box h2{
    font-size:24px;
    margin-bottom:20px;
    margin-top:0;
}

.info-section .box i{
    font-size:20px;
}
.info-section .box{
    display:flex;
}
.info-section .text-box{
    flex:1 1 0;
    text-align:left;
}
.info-section .icon-box{
    line-height: 1.2;
    width:70px;
}
.info-section .service-block-overlay{
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.info-section .service-block-overlay:hover{
	background: #fff none repeat scroll 0 0;
    border-radius: 5px;
    box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
    margin-top: -10px;
    position: relative;
    width: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.info-section .service-block i span{
	font-size: 90px;
}
.content-half{
    color:#fff;
}
.content-half ul{
    padding:0;
    list-style:none;
}
.content-half ul li{
    margin:15px 0;
    float:left;
    width:100%;
}
.content-half ul li i{
    float:left;
    font-size:30px;
    padding-top:10px;
    padding-bottom:10px;
}
.content-half ul li .list-content{
    float:left;
    margin-left:20px;
}
.content-half ul li strong{
    font-size:19px;
    font-weight:700;
}
.content-half .btn{
    margin-top:20px;
}
/*--- three Block Panel ---*/
.three-panel-block{
	display: block;
	width: 100%;
}
.three-panel-block i{
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.three-panel-block i.box-round{
	border-color: inherit;
	border-width: 1px;
	border-style:solid;
	padding:16px;
	border-radius: 50%;
}

/*--- Two Block Panel ---*/
.two-panel-block{
	display: block;
	width: 100%;
}
.two-panel-block p{
	font-size:16px;
}


/*--- Two Block Panel ---*/
.four-panel-block{
	display: block;
	width:100%;
}
/* ========== Copy Content Styles ========== */
.copy-content-sec{
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
}
.copy-container{
	display: flex;
	align-items: center;
}
.copy-content{
	width:100%;
}
.copy-content li i{
	float: left;
	width:30px;
	margin-top:5px;
	color: #5CB85C;
}

/* ========== Testimonial Section ========== */
.testimonial-section{
    width:100%;
    padding: 150px 0;
    position: relative;
    overflow: visible;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
}
.testimonial-section h2{
	font-size: 3rem;
}
.testimonial-section .single-testimonial .carousel-item {
    margin: 0 15%;
    width: 70%;
}
.testimonial-section .single-testimonial .carousel-item-next, .testimonial-section .single-testimonial .carousel-item-prev{
	top:3rem;
}
.testimonial-section .single-testimonial .carousel{
	text-align: center;
}
.testimonial-section .single-testimonial .navigator-box{
	display: inline-block;
	position: relative;
    top: 0px;
}
.testimonial-section .single-testimonial .carousel-control-next, .testimonial-section .single-testimonial .carousel-control-prev{
	 border: 1px solid #00BD56;
    border-radius: 50%;
    color: #00BD56;
    display: block;
    float: left;
    font-size: 37px;
    margin: 0 4px;
    opacity: 1;
    padding: 5px 23px;
    position: relative;
    width: 43%;
}
.testimonial-section .single-testimonial .carousel-control-next:hover, .testimonial-section .single-testimonial .carousel-control-prev:hover{
	background-color: #00BD56;
	color: #fff;
}

/* ========== Copy Content Styles ========== */
.copy-content-sec{
    width:100%;
    padding: 150px 0;
    position: relative;
    z-index: 1;
}
.copy-content-sec h2{
	font-size: 3rem;
}
.copy-container{
	display: flex;
	align-items: center;
}
.copy-content{
	width:100%;
}
.copy-content li i{
	float: left;
	width:30px;
	margin-top:5px;
	color: #5CB85C;
}
.faq-box .card{
	border-color: #35CBDF;
	margin-top: 10px;
}
.faq-box .card-header{
	background-color: #35CBDF;
	color: #fff;
}


/* ========== Price Table Styles ========== */
.price-section{
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
}
.price-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.price-section .price-block{

}
.price-section .currency{
	font-size: 25px;
    vertical-align: super;
}
.price-section .price-count{
	font-size: 60px;
	line-height: 60px;
}
.price-section .price-block small{
	display: block;
	font-size: 15px;
}

/* Contact */
.contact-wrap {
    width:100%;
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.contact-wrap h2 {
    font-weight: 700;
    font-size: 3rem;
}
}

.form-control {
    border-radius:0;
    border:1px solid #EDEDED;
}

.form-control:focus {
    border:1px solid #00BD56;
}

.textarea-contact {
    resize:none;
}

.second-portion {
    margin-top:50px;
}

.box {
    margin-bottom: 30px;
}

.box > .icon {
    text-align: center; position: relative;
}

.box > .icon > .image {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 88px;
    height: 88px;
    border: 8px solid white;
    line-height: 88px;
    border-radius: 50%;
    background: #00BD56;
    vertical-align: middle;
}

.box > .icon:hover > .image {
    background: #333;
}

.box > .icon > .image > i {
    font-size: 36px !important;
    color: #fff !important;
}

.box > .icon:hover > .image > i {
    color: white !important;
}

.box > .icon > .info {
    margin-top: -24px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid #e0e0e0;
    padding: 15px 0 10px 0;
    min-height:150px;
}

.box > .icon:hover > .info {
    background: rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
    color: white;
}

.box > .icon > .info > h3.title {
    font-size: 17px;
    color: #222;
    font-weight: 700;
    margin-top: 20px;
}

.box > .icon > .info > p > a {
    font-size: 15px; color: #666;
    line-height: 1.5em;
    margin: 20px;
}

.box > .icon > .info > p a i {
    margin-right: 5px;
}

/* Conatct end */

/*---------------------
  Footer
-----------------------*/

.footer-section {
    background: #343a40;
    padding-top: 90px;
}

.fs-about {
    margin-bottom: 30px;
}

.fs-about .fa-logo {
    margin-bottom: 30px;
}

.fs-about .fa-logo a {
    display: inline-block;
}

.fs-about p {
    line-height: 26px;
    color: #c4c4c4;
    text-align: justify;
    font-size: 16px;
}

.fs-widget {
    margin-bottom: 30px;
}

.fs-widget h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
}

.fs-widget ul {
    padding: 0;
}

.fs-widget ul li {
    padding: 0;
    list-style: none;
    margin-bottom: 5px;
}

.fs-widget ul li a {
    font-size: 16px;
    color: #c4c4c4;

}

.fs-widget ul li a:hover {
    color: #00BD56;
}

.fs-widget ul li i {
    margin-right: 10px;
}

.copyright-text {
    padding-bottom: 40px;
}

.copyright-text p {
    padding-top: 6px;
    float: left;
    color: #ffffff;
    margin-right: 25px;
    display: inline-block;
    font-size: 14px;
}

.copyright-text p a {
    font-size: 14px;
    color: #ffffff;
}
.copyright-text p a:hover {
    color: #00BD56;
}

.copyright-text .footer-social {
    float: right;
}

.copyright-text .footer-social a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    width: 40px;
    height: 40px;
    background: #282828;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 4px;
}
.copyright-text .footer-social a:first-child {
    margin-left: 0;
}
.copyright-text .footer-social a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#00AA4D), to(#00BD56));
    background: -o-linear-gradient(left, #00AA4D, #00BD56);
    background: linear-gradient(to right, #00AA4D, #00BD56);
}

/* Ícone Flutuante WhatsApp */
#whatsapp-button {
    display: flex;
    position: fixed;
    background: #25d366;
    bottom: 25px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 2px 2px 12px rgba(22, 124, 60, 0.2);
    transition: 0.4s;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    z-index: 2;
}
#whatsapp-button > .rwb-tooltip {
    position: absolute;
    bottom: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 15px;
    color: #2d2d2d;
    font-size: 16px;
    white-space: nowrap;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    background-color: #ffffff;
}
#whatsapp-button > .rwb-tooltip:after {
    display: block;
    content: "";
    position: absolute;
    top: 85%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
    transition: 0.4s;
}
#whatsapp-button.left {
    left: 25px;
}
#whatsapp-button.left > .rwb-tooltip {
    left: 0;
    transform: translateX(-10%);
}
#whatsapp-button.left > .rwb-tooltip:after {
    left: 23px;
}
#whatsapp-button:not(.left) {
    right: 25px;
}
#whatsapp-button:not(.left) > .rwb-tooltip {
    right: 0;
    transform: translateX(10%);
}
#whatsapp-button:not(.left) > .rwb-tooltip:after {
    right: 23px;
}
#whatsapp-button:hover {
    background: #21bd5c;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, 0.4);
}
#whatsapp-button:hover > .rwb-tooltip {
    opacity: 1;
    transform: translateX(0);
}
#whatsapp-button:hover > .rwb-tooltip:after {
    top: 100%;
    transition-delay: 0.4s;
}


/* ========== Responsive Stylings ========== */
@media (max-width: 991px){
	.container{
		width: 100%;
	}
	.intro .intro-box{
		padding-left: 0;
		margin-bottom: 0;
	}
	.intro .intro-box span{
		margin-right: 10px;
	}
	.intro .intro-box .list-item{
		width: 85%;
	}
	.content-half ul li i{
		font-size: 20px;
	}
	.content-half ul li .list-content{
		width:77%;
	}
	.content-half ul li strong{
		line-height: 0;
	}
	.testimonial-section .single-testimonial .carousel-item{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.widget h2 {
    	font-size: 1.5rem;
	}
	.widget .counter{
		line-height: 0;
		font-size: 1.7rem;
	}
	.widget .fa-3x{
		font-size: 2rem;
	}
	.widget .stat-content h4{
		font-size: 1.2rem;
	}
}

@media (max-width: 767px){
	.container{
		width:100%;
	}
	.intro .intro-form-small input[type="text"], .intro .intro-form-small input[type="password"]{
		width: 36%;
	}
	.intro .carousel-caption{
		top:10%;
	}
	.widget.widget-counter .container{
		width: 100%;
	}

	#navbarSupportedContent{
	background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0!important;
	padding: 30px 0
	}
	#navbarSupportedContent li{
		text-align: center;
	}
	#about .copy-container {
	    background-color:rgba(255,255,255,0.9);
	    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	    padding: 30px;
	}

}

/* Equipe */
.staff {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.staff .img-wrap {
    height: 300px;
}

.staff .img {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    background-position: top center;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.staff .text {
    position: relative;
    background: #fff;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.staff .text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000000;
    margin-bottom: 5px;
}

.staff .text .position {
    color: #00bd56;
    display: block;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}

.staff .text .faded {
    opacity: 1;
}

.staff .ftco-social {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    padding: 15px 10px;
    background: transparent;
    opacity: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.staff .ftco-social li {
    width: 30px;
    height: 30px;
    position: relative;
}

.staff .ftco-social li a {
    color: #fff;
    width: 30px;
    height: 30px;
    background: #00bd56;
    background: #207dff;
    background: -moz-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #207dff), color-stop(100%, #00bd55));
    background: -webkit-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
    background: -o-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
    background: -ms-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
    background: linear-gradient(45deg, #207dff 0%, #00bd55 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#207dff', endColorstr='#00bd55', GradientType=1 );
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.staff:hover, .staff:focus {
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
}

.staff:hover .ftco-social, .staff:focus .ftco-social {
    opacity: 1;
    top: -60px;
}

.staff:hover .img, .staff:focus .img {
    margin-top: -10px;
}

.staff:hover .text, .staff:focus .text {
    background: #00bd56;
    color: rgba(255, 255, 255, 0.8);
}

.staff:hover .text h3, .staff:focus .text h3 {
    color: #fff;
}

.staff:hover .text .position, .staff:focus .text .position {
    color: #000;
}

.ftco-social {
    padding: 0;
}

.ftco-social li {
    list-style: none;
    margin-right: 10px;
    display: inline-block;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
}

/* CTA */
.cta-section {
    width:100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cta-section .img {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cta-section .img-video {
    background-position: center center;
}

@media (max-width: 767.98px) {
    .cta-section .img-video {
        height: 400px;
    }
}

.cta-section .services-2 {
    width: 100%;
    margin-bottom: 20px;
}
.cta-section .services-2 .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #00bd56;
    -webkit-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
}

.cta-section .services-2 .icon span {
    font-size: 40px;
    color: #fff;
}

.cta-section .services-2 .text {
    width: calc(100% - 60px);
}

.cta-section .services-2 .text h4 {
    font-size: 20px;
    font-weight: 700;
}

.cta-section .services-2 .text p {
    text-align: justify;
}

/* Serviços integrado ao banner */
.ftco-section {
    padding: 7em 0;
    position: relative;
    z-index: 2;
}
@media (max-width: 767.98px) {
    .ftco-section {
        padding: 6em 0;
    }
}

.ftco-intro .services {
    padding: 30px;
    background: #fff;
    border-radius: 4px;
}
@media (min-width: 992px) {
    .ftco-intro .services {
        margin-top: -50px;
    }
}

.ftco-no-pt {
    padding-top: 0 !important;
}

.services {
    display: block;
    width: 100%;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0px 8px 21px -10px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 8px 21px -10px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 8px 21px -10px rgba(0, 0, 0, 0.08);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.services .icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    line-height: 1.3;
    border-radius: 50%;
    background: #f0f0f0;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: -50px;
}
.services .icon span {
    font-size: 40px;
    color: #00bd56;
}
.services .media-body {
    margin-top: 40px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.services .media-body h3 {
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.services .media-body .btn-custom {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00bd56;
    -webkit-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.15);
}
.services .media-body .btn-custom span {
    color: #fff;
}
.services:hover, .services.active {
    background: #00bd56; }
.services:hover .icon, .services.active .icon {
    background: #fff; }
.services:hover .media-body, .services.active .media-body {
    color: rgba(255, 255, 255, 0.9); }
.services:hover .media-body h3, .services.active .media-body h3 {
    color: #fff; }
.services:hover .btn-custom, .services.active .btn-custom {
    background: #fff;
    right: -20px; }
.services:hover .btn-custom span, .services.active .btn-custom span {
    color: #00bd56; }
@media (max-width: 991.98px) {
    .services {
        margin-bottom: 30px; } }