/************************************************
[Master Stylesheet]

Table of Content
------------------------------------------------
01. Header Section
02. Menu Section
03. Hero Section
04. About Section
05. Skill Section
06. Portfolio Section
07. Service Section
08. Testimonial Section
09. Blog Section
10. Instagram Section
11. Contact Section
12. Footer Section
13. Blog Page
14. Blog Single Page

*************************************************/

/*----------01. header-----*/

.vertical-line{
    background: rgba(255,255,255,.04);
    width: 1px;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1;
}
.vertical-line.line1{
    left: calc(100% / 6);
}
.vertical-line.line2{
    left: calc(100% / 6 * 2);
}
.vertical-line.line3{
    left: calc(100% / 6 * 3);
}
.vertical-line.line4{
    left: calc(100% / 6 * 4);
}
.vertical-line.line5{
    left: calc(100% / 6 * 5);
}

.header{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 50px 40px 0;
    left: 0;
    top: 0px;
    transition: all 0.5s ease;
}
header.header.sticky {
    background: rgba(0,0,0,.9);
    padding: 15px 40px;
}
.header .humbarger {
    width: 35px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: none;
    right: 10px;
}
.header .humbarger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    transition: all 0.5s ease;
}
.header .humbarger span:nth-child(1) {
    top: 0;
    left: 0;
}
.header .humbarger span:nth-child(2) {
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
}
.header .humbarger:hover span:nth-child(2) {
    width: 100%;
}
.header .humbarger span:nth-child(3) {
    bottom: 0;
    left: 0;
}

.header.show-menu .humbarger span:nth-child(1) {
    transform-origin: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header.show-menu .humbarger span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.header.show-menu .humbarger span:nth-child(3) {
    transform-origin: center;
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/*---right side nav style---*/
#fp-nav.fp-right {
    right: 57px;
}
#fp-nav ul li {
    width: 18px;
    height: 18px;
    margin: 0 0 12px 0;
}
#fp-nav ul li:last-child {
    margin-bottom: 0;
}
#fp-nav ul li a{
    border: 1px solid transparent;
    border-radius: 100%;
}
#fp-nav ul li a:hover,
#fp-nav ul li a.active {
    border-color: #f5b300;
}
#fp-nav ul li a span {
    display: block;
    height: 6px;
    width: 6px;
    background: rgba(255,255,255,.2);
    margin: -3px 0 0 -3px;
    transition: all 0.3s ease;
}
#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
#fp-nav ul li:hover a span {
    height: 8px;
    width: 8px;
    margin: -4px 0 0 -4px;
    background: #f5b300;
}

#fp-nav ul li .fp-tooltip {
    top: -4px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}
#fp-nav ul li .fp-tooltip.fp-right {
    right: 30px;
    text-transform: capitalize;
}


/*-------02. menu wrapper-----*/
.menu-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.95);
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0.5s;
}
.menu-wrapper.show-menu{
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.menu-wrapper ul.main-menu {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    max-width: 1280px;
}
.menu-wrapper ul.main-menu li{
    margin-bottom: 22px;
}
.menu-wrapper ul.main-menu li:last-child{
    margin-bottom: 0;
}
.menu-wrapper ul.main-menu li a {
    font-size: 70px;
    font-family: cabrito-normal, sans-serif;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.8s ease;
    opacity: 0;
    visibility: hidden;
}
.menu-wrapper ul.main-menu li:nth-child(1) a {
    transition-delay: 0s;
}
.menu-wrapper ul.main-menu li:nth-child(2) a {
    transition-delay: 0.1s;
}
.menu-wrapper ul.main-menu li:nth-child(3) a {
    transition-delay: 0.2s;
}
.menu-wrapper ul.main-menu li:nth-child(4) a {
    transition-delay: 0.3s;
}
.menu-wrapper ul.main-menu li:nth-child(5) a {
    transition-delay: 0.4s;
}
.menu-wrapper ul.main-menu li:nth-child(6) a {
    transition-delay: 0.5s;
}
.menu-wrapper ul.main-menu li:nth-child(7) a {
    transition-delay: 0.6s;
}

.menu-wrapper.show-menu ul.main-menu li a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-wrapper ul.main-menu li a:before {
    content: attr(data-text);
    color: #f5b300;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}
.menu-wrapper ul.main-menu li a:hover:before {
    width: 100%;
}

.menu-wrapper .quick-link {
    max-width: 1280px;
    width: 100%;
    position: absolute;
    right: 50%;
    bottom: 40px;
    transform: translateX(50%);
    display: flex;
    flex-flow: row;
    align-items: center;
    z-index: 1;
    justify-content: flex-end;
    text-align: right;
}
.menu-wrapper .quick-link .follow-me span,
.menu-wrapper .quick-link .email span {
    display: block;
    line-height: normal;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 12px;
}
.menu-wrapper .quick-link .email a {
    display: inline-block;
    line-height: normal;
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #f5b300;
}
.menu-wrapper .quick-link .email a:hover{
    text-decoration: underline;
}
.menu-wrapper .quick-link .follow-me {
    margin-left: 50px;
}
.menu-wrapper .quick-link ul.social-icon {
    display: flex;
    flex-flow: row;
}
.menu-wrapper .quick-link ul.social-icon li{
    margin-right: 5px;
}
.menu-wrapper .quick-link ul.social-icon li:last-child{
    margin-right: 0;
}
.menu-wrapper .quick-link ul.social-icon a {
    color: #acacac;
}
.menu-wrapper .quick-link ul.social-icon a:hover {
    color: #fff;
}

.menu-wrapper .quick-link .follow-me,
.menu-wrapper .quick-link .email {
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}
.menu-wrapper .quick-link .email{
    transition-delay: 0.4s;
}
.menu-wrapper .quick-link .follow-me{
    transition-delay: 0.5s;
}
.menu-wrapper.show-menu .quick-link .follow-me,
.menu-wrapper.show-menu .quick-link .email {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-wrapper .horizontal-img {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2;
}

/*---------03. hero section---------*/
.hero-section {
    background: #16171b url('../../images/home2-hero-bg.jpg') no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.hero-section .hero-image-wrapper{
    width: 100%;
    max-width: 1280px;
    position: absolute;
    right: 50%;
    top: 0;
    height: 100%;
    z-index: 1;
    transform: translateX(50%);
}
.hero-section .hero-image{
    width: 100%;
    max-width: 440px;
    position: absolute;
    right: 6px;
    height: 100%;
    display: block;
    z-index: 2;
    background: url(../../images/hero-img-bg.jpg) no-repeat center right/cover;
}
.hero-section .hero-image:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/fire-australia1.jpg) no-repeat center right/cover;
    transition: all 2.5s ease;
}
.hero-section .hero-image img{
    height: 100%;
    display: block;
    max-width: 100%;
}
.hero-section .vertical-logo{
    position: absolute;
    left: calc(100% / 6);
    top: 50%;
    transform: translateY(-50%);
}
.hero-section .vertical-logo img{
    display: block;
    max-width: 100%;
}
.hero-section .social-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2;
}
.hero-section .scroll-down {
    position: absolute;
    bottom: 110px;
    left: -10px;
    font-size: 14px;
    color: #acacac;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transform-origin: top;
    transform: rotate(-90deg) translateX(50px);
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease 1s;
}
.hero-section .scroll-down img {
    position: absolute;
    width: 14px;
    transform: rotate(90deg);
    transform-origin: center;
    left: -30px;
    top: 1px;
    animation: scroll-down-move 1s ease infinite;
}
.hero-section .content-wrapper{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
}
.hero-section .hero-image-wrapper .dot-texture {
    position: absolute;
    right: -107px;
    bottom: 20px;
}
.hero-section .hero-content{
    position: relative;
    z-index: 2;
}
.hero-section .hero-content h1{
    font-size: 100px;
    line-height: 0.8;
    color: #fff;
    font-family: cabrito-normal, sans-serif;
	font-weight: 600;
	font-style: normal;
    display: inline-block;
    margin-left: -10px;
    transition: all 1.2s ease 0.4s;
}
.hero-section .hero-content h2{
    color: #f5b300;
    font-family: cabrito-normal, sans-serif;
	font-weight: 500;
	font-style: normal;
    margin-top: 16px;
    transition: all 1.2s ease 0.7s;
}
.hero-section .hero-content .hire-me{
    transition: all 1.2s ease 0.9s;
}

.hero-section .hero-content .hire-me,
.hero-section .hero-content h1,
.hero-section .hero-content h2{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}


@-webkit-keyframes scroll-down-move {
    0% {left: -30px;}
    50% {left: -40px;}
    100% {left: -30px;}
}
@keyframes scroll-down-move {
    0% {left: -30px;}
    50% {left: -40px;}
    100% {left: -30px;}
}



/*-------04. about section------*/
.about-section{
    overflow: hidden;
    background: url("../../images/about-bg.jpg") no-repeat center top/ cover;
}
.about-section .container{
    position: relative;
    display: flex;
    flex-flow: row;
}
.about-section .overlay{
    background: rgba(22, 23, 27, 0.9);
    z-index: 0;
}
.about-section .about-shape {
    position: absolute;
    right: 0;
    z-index: 3;
    bottom: 30px;
    max-width: 630px;
    transform-origin: top right;
    animation: about-shape-move 8s ease infinite;
}
.about-section .about-shape span {
    position: absolute;
    border-radius: 100%;
    background: #fff;
}

.about-section .about-shape .circle1 {
    width: 128px;
    height: 128px;
    bottom: 40px;
    left: 100px;
    background: #f5b300;
    animation: circle1-move 5s linear infinite;
}

.about-section .about-content{
    z-index: 4;
    position: relative;
    max-width: 640px;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
    padding: 60px 6px 60px 60px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.about-section .dot-pattern {
    position: absolute;
    left: -107px;
    bottom: 20px;
}
.about-section .about-img1 {
    position: relative;
    z-index: 2;
    left: 4px;
    width: 320px;
    display: block;
    background: url(../../images/about-img1.jpg) no-repeat top left/cover;
}
.about-section .about-img2 {
    position: relative;
    z-index: 2;
    right: 5px;
    width: 320px;
    display: block;
    background: url(../../images/about-img2.jpg) no-repeat left top / cover;
}
.about-section .about-img1:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #141518;
    transition: all 1s ease;
}
.about-section .about-content h2{
    text-align: justify;
    margin-bottom: 52px;
    transition: all 1.2s ease 0.6s;
}
.about-section .about-content h5{
    text-align: justify;
    font-size: 22px;
    line-height: 43px;
    font-family: 'Montserrat';
    font-weight: 400;
    max-width: 315px;
    margin-left: auto;
    transition: all 1.2s ease 0.8s;
}
.about-section .about-content h2,
.about-section .about-content h5{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}


@keyframes about-shape-move {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes circle1-move {
    0% {
        bottom: 40px;
    }
    50% {
        bottom: 70px;
    }
    100% {
        bottom: 40px;
    }
    
}

.skill-section .section-title,
.blog-section .section-title,
.portfolio-section .section-title,
.service-section .section-title{
    font-size: 110px;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    color: rgba(78, 78, 78, 0.2);
}
.blog-section .section-title,
.portfolio-section .section-title,
.service-section .section-title{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #333;
}

.resultado .section-title {
    -webkit-text-stroke-color: #3e614f;
}


/*----------05. skill section----------*/
.skill-section{
    overflow: hidden;
    position: relative;
    background: url(../../images/service-bg.jpg) no-repeat center center/cover;
}
.skill-section .section-title{
    /* position: relative; */
    transform: translateY(-50px);
    top: 0;
    text-align: center;
    margin-bottom: -30px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #797979;
}
.skill-section .skill-wrapper {
    /* position: relative; */
    max-width: 1170px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
	transform: scale(0.85);
}
.skill-section .skill-wrapper .vertical-line {
    display: block;
    height: calc(100% + 80px);
    width: 2px;
    background: linear-gradient(180deg, rgba(245,179,0,1) 0%, rgba(245,179,0,0) 90%);
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: -3px;
}
/* .skill-section .skill-wrapper .vertical-line:before,
.skill-section .skill-wrapper .vertical-line:after{
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #acacac;
    left: -7px;
} */
.skill-section .skill-wrapper .vertical-line:before{
    top: 0;
}
.skill-section .skill-wrapper .vertical-line:after{
    bottom: 0;
}
.skill-section .single-skill {
    width: 50%;
    max-width: 535px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px 10px;
    position: relative;
    z-index: 1;
    /* align-self: stretch; */
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s ease;
}

.skill-section .single-skill:nth-child(odd) {
    transform: translate(-30px, 20px);
}


.skill-section .single-skill .description {
    line-height: 1.6;
    margin-top: 12px;
    position: absolute;
    background: #16171b;
    border: 1px solid #26272d;
    z-index: 9;
    width: 100%;
    left: 0;
    bottom: calc(100% + 30px);
    padding: 10px 20px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.skill-section .single-skill:hover .description {
    bottom: calc(100% + 10px);
    opacity: 1;
    visibility: visible;
}
.skill-section .single-skill h3{
    position: relative;
}

.skill-section .single-skill span.rectengle {
    position: absolute;
    top: 30px;
    right: -50px;
    height: 14px;
    width: 70px;
    background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
	border-radius: 20px;


}

.skill-section .single-skill:nth-child(odd) span.rectengle{
    right: inherit;
    left: -50px;
    background: rgb(255,255,255);
	background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
	border-radius: 20px;

}

.skill-section .single-skill h3 {
	/* font-size: 90%; */
}

.descricao {
	font-size: 16px;
    line-height: 122%;
    margin-top: 10px;
}



/*-----------06.portfolio section--------*/
.portfolio-content.md-trigger {
    cursor: pointer;
}

.portfolio-section{
    background: url("../../images/project-bg1.jpg") no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

#debate {
	background: url("../../images/debate-bg1.jpg") no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

.portfolio-section .overlay{
    /* background: rgba(20, 21, 25, 0.85); */
}
.portfolio-section .shape {
    position: absolute;
    bottom: 100px;
    left: -120px;
    opacity: 0.8;
}


.portfolio-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    transform: translateY(-10px);
}
.portfolio-section .container{
    position: relative;
    z-index: 2;
    max-width: 1585px;
    margin-left: 0;
}

.portfolio-section .portfolio-wrapper  {
    display: flex;
    flex-flow: row;
    
}
.portfolio-section .portfolio-content-wrapper{
    width: 40%;
    padding-left: 60px;
}
.portfolio-section .portfolio-img{
    width: 60%;
    background: #1e1f23;
    position: relative;
}
.portfolio-section .portfolio-img img:focus{
    box-shadow: none;
    outline: inherit;
}
.portfolio-section .portfolio-img:before{
    content: url("../../images/dot-texture-horizontal.png");
    position: absolute;
    bottom: -110px;
    left: 20px;
}
.portfolio-section .portfolio-content{
    padding-bottom: 50px;
}
.portfolio-section .portfolio-content:focus{
    box-shadow: none;
    outline: inherit;
}
.portfolio-section .portfolio-content .portfolio-type{
    font-size: 11px;
    text-transform: uppercase;
    color: #f5b300;
    font-weight: 700;
    font-family: 'Montserrat';
    letter-spacing: 1px;
}
.portfolio-section .portfolio-content h2{
    color: #fffefe;
    font-family: cabrito-normal, sans-serif;
    font-weight: 500;
    margin-bottom: 18px;
	font-size: 32px !important;
	line-height: 32px !important;
}
.portfolio-section .portfolio-content p{
    color: #ababab;
    font-size: 16px;
    line-height: 1.6;
    /*max-width: 430px;*/
}

.portfolio-section .portfolio-content-wrapper .slick-arrow {
    background: transparent;
    border: 1px solid #fff;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 60px;
    opacity: 0.2;
    padding: 0;
	z-index: 9;
}
.portfolio-section .portfolio-content-wrapper .slick-arrow:hover {
    background: #f5b300;
    border-color: #f5b300;
    opacity: 1;
}
.portfolio-section .portfolio-content-wrapper .slick-next{
    left: 125px;
}
.portfolio-section .portfolio-content-wrapper .slick-prev img{
    transform: rotate(-180deg);
    transform-origin: center center;
    
}
.portfolio-section .portfolio-paging-status {
    position: absolute;
    right: 405px;
    bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #f5b300;
}

.portfolio-content-wrapper img.md-trigger {
    display: none;
}


/*----------07. service-section--------*/
.service-section{
    background: url("../../images/service-bg.jpg") no-repeat left center/cover;
    overflow: hidden;
}

.service-section .container{
    margin-left: 0;
    position: relative;
}
.service-section .section-title {
    position: absolute;
    right: 150px;
    top: 160px;
    z-index: 0;
}
.service2-paging-status{
    position: absolute;
    right: 160px;
    bottom: 46px;
    font-size: 20px;
    font-weight: 700;
    color: #f5b300;
}
.service-section .service-wrapper{
    margin-left: -50px;
}
.service-section .service-wrapper .slick-track {
    padding: 40px 0;
}
.service-section .single-service{
    margin-left: 40px;
}
.service-section .single-service img.service-img {
    box-shadow: 0 0 27px 10px rgba(0, 0, 0, 0.5);
    max-width: 930px;
    width: 100%;
}
.service-section .single-service .service-text {
    position: absolute;
    bottom: 70px;
    width: 450px;
    right: 0;
	left: 700px;
}
.service-section .service-wrapper .slick-arrow {
    background: transparent;
    border: 1px solid #fff;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    position: absolute;
    bottom: 40px;
    right: 280px;
    opacity: 0.2;
    z-index: 2;
    padding: 0;
}
.service-section .service-wrapper .slick-next {
    right: 220px;
}
.service-section .service-wrapper .slick-prev img {
    transform: rotate(-180deg);
    transform-origin: center center;
}
.service-section .service-wrapper .slick-arrow:hover {
    background: #f5b300;
    border-color: #f5b300;
    opacity: 1;
}

.service-section .service-wrapper .single-service h2 {
    color: #fff;
    margin-bottom: 20px;
}
.service-section .service-wrapper .single-service p{
    font-size: 24px;
    color: #b9b9b9;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}
.service-section .service-wrapper .single-service h2{
    animation: fadeOutUp 1.3s ease both;
}
.service-section .service-wrapper .single-service p{
    animation: fadeOutUp 1.3s ease both 0.2s;
}

.service-section .service-wrapper .single-service.slick-current h2{
    animation: fadeInUp 1.3s ease both 0.5s;
}
.service-section .service-wrapper .single-service.slick-current p{
    animation: fadeInUp 1.3s ease both 0.7s;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 70%, 0);
        transform: translate3d(0, 70%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 70%, 0);
        transform: translate3d(0, 70%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -70%, 0);
        transform: translate3d(0, -70%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -70%, 0);
        transform: translate3d(0, -70%, 0);
    }
}


/*---------08. testimonial-section------------*/
.testimonial-section{
    position: relative;
    overflow: hidden;
    background: url("../../images/testimonial-bg.jpg") no-repeat center center / cover;
}
.testimonial-section .overlay{
    background: rgba(20, 21, 25, 0.9);
}
.testimonial-section .shape {
    position: absolute;
    right: 0;
    top: 120px;
}
.testimonial-section .testimonial-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}
.testimonial-section .single-testimonial {
    text-align: center;
    position: relative;
    z-index: 2;
}
.testimonial-section .single-testimonial .slick-slide {
    position: relative;
    padding-top: 140px;
}
.testimonial-section .single-testimonial img.quote {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
}
.testimonial-section .single-testimonial h2 {
    font-style: italic;
    color: #fff;
}
.testimonial-section .single-testimonial .author a {
    font-size: 22px;
    font-weight: 700;
    color: #f5b300;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    display: block;
    margin-top: 26px;
}
.testimonial-section .single-testimonial .author .desgination {
    display: block;
    font-size: 14px;
    text-transform: none;
    color: #f5b300;
}
.testimonial-section .slick-dots{
    margin-top: 10px;
}
.testimonial-section .slick-dots li{
    display: inline-block;
    margin: 0 5px;
}
.testimonial-section .slick-dots li button {
    border: none;
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #333;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 0;
}
.testimonial-section .slick-dots li.slick-active button {
    background: #acacac;
}

/*----author image area-------*/
.testimonial-section .author-img-wrapper {
    margin: 20px 0 0 300px;
    position: relative;
    max-width: 210px;
}

.testimonial-section .author-img-wrapper:before{
    content: url("../../images/curve.png");
    position: absolute;
    bottom: -30px;
    left: 126px;
    overflow: hidden;
    width: 0;
    transition: all 1.5s ease 0.3s;
}

.testimonial-section .author-img-wrapper .author-img {
    border-radius: 100%;
    height: 160px;
    width: 160px;
    border: 2px dashed #696a69;
    padding: 10px;
}
.testimonial-section .author-img-wrapper:focus{
    box-shadow: none;
    border: none;
}


/*-------------09. blog-section----------*/
.blog-section{
    position: relative;
    overflow: hidden;
    background: #141519 url("../../images/project-bg.jpg") no-repeat center center/cover;
}
.blog-section .ellipse {
    position: absolute;
    top: 180px;
    left: 90px;
    max-width: 590px;
    z-index: 1;
    opacity: 0.5;
    animation: ellipse-animate 2s linear infinite;
}

@-webkit-keyframes ellipse-animate {
    0% {transform: rotate(40deg)}
    100% {transform: rotate(350deg)}
}

@keyframes ellipse-animate {
    0% {transform: rotate(40deg)}
    100% {transform: rotate(350deg)}
}

.blog-section .section-title{
    position: relative;
    text-align: right;
    margin-bottom: 50px;
    transform: translateY(-15px);
}
.blog-section .blog-wrapper{
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: row;
    margin-left: -20px;
}
.blog-section .single-blog{
    width: calc(100% / 4 - 20px);
    margin-left: 20px;
    background: rgba(0, 0, 0, .4);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.blog-section .single-blog:not(.title) {
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
}
.blog-section .single-blog:not(.title):nth-child(2) {
    transition: all 1.2s ease;
}
.blog-section .single-blog:not(.title):nth-child(3) {
    transition: all 1.2s ease 0.3s;
}
.blog-section .single-blog:not(.title):nth-child(4) {
    transition: all 1.2s ease 0.6s;
}
.blog-section .single-blog .featured-img img {
    width: 100%;
    /*opacity: 0.6;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%); */
    transition: all 0.5s ease;
}
.blog-section .single-blog:hover .featured-img img {
    opacity: 1;
    /* -webkit-filter: grayscale(0);
    filter: grayscale(0); */
}
.blog-section .single-blog.title{
    background: transparent;
    padding-top: 40px;
    padding-left: 7px;
    display: block;
}
.blog-section .single-blog.title h2{
    font-size: 43px;
    color: #fff;
    transition: all 1s ease 0.1s;
}
.blog-section .single-blog.title .view-more{
    transition: all 1s ease 0.3s;
}

.blog-section .single-blog.title h2,
.blog-section .single-blog.title .view-more{
    transform: translateX(-30px);
    opacity: 0;
    visibility: hidden;
}
.blog-section .single-blog .post-title {
    padding: 24px 30px 50px;
    text-align: center;
}
.blog-section .single-blog .post-title h3{
    font-size: 20px;
    line-height: 1.3;
}

.blog-section .single-blog .post-title h3 a{
    color: #fff;
}
.blog-section .single-blog .post-title h3 a:hover{
    color: #f5b300;
}
.blog-section .single-blog .like-comment{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid #35373d;
    position: relative;
    
}
.blog-section .single-blog .like-comment .read-more {
    width: 50px;
    height: 50px;
    border: 1px solid #35373d;
    display: flex;
    border-radius: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #26272a;
}
.blog-section .single-blog .like-comment .read-more:hover {
    background: #f5b300;
    border-color: #f5b300;
}
.blog-section .single-blog .like-comment span {
    color: #8b8a8a;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.blog-section .single-blog .like-comment span svg{
    height: 18px;
    margin-right: 8px;
}



/*---------10. instagram-section------*/
.instagram-section {
    background: #141519;
    position: relative;
    overflow: hidden;
}

.instagram-section .insta-shape {
    position: absolute;
    right: -80px;
    top: 120px;
    z-index: 1;
}
.contact-section .section-title,
.instagram-section .section-title{
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}
.contact-section .section-title svg,
.instagram-section .section-title svg{
    width: 45px;
    color: #f5b300;
}
.contact-section .section-title h2,
.instagram-section .section-title h2{
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
	text-align: center;
}
.instagram-section .instagram-img-wrapper{
    display: flex;
    flex-flow: row;
    position: relative;
    z-index: 2;
    padding-left: 6px;
}
.instagram-section .single-col.sm {
    width: 20%;
}
.instagram-section .single-col.md {
    width: calc(30% - 20px);
    margin-left: 20px;
}
.instagram-section .single-col.lg {
    width: calc(50% - 20px);
    margin-left: 20px;
    padding-top: 70px;
}
.instagram-section .single-col img{
    margin-bottom: 20px;
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.instagram-section .single-col img:hover{
    filter: grayscale(0);
}
.instagram-section .single-col a:last-child img{
    margin-bottom: 0;
}


/*-----------11. contact-section---------*/
.footer-area{
    background: #141519 url("../../images/floresta-rodape.jpg") no-repeat center center / cover;
    position: relative;
}
.footer-area .contact-section{
    padding: 110px 0;
}
.contact-section .content-wrapper{
    z-index: 2;
    position: relative;
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    justify-content: space-between;
}
.contact-section .address-area{
    width: 50%;
    padding-right: 20px;
}
.contact-section .contact-form{
    width: 90%;
    padding-left: 20px;
	margin: 0 auto;
}
.contact-section .contact-form label{
    text-transform: capitalize;
    font-size: 16px;
    color: #555;
    font-family: 'Roboto', sans-serif;
}
.contact-section .contact-form textarea,
.contact-section .contact-form input{
    border: none;
    border-bottom: 1px solid #ffffff52;
    padding-left: 0;
    padding-right: 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}
.contact-section .contact-form textarea {
    padding-top: 12px;
}
.contact-section .contact-form textarea::-webkit-input-placeholder,
.contact-section .contact-form input::-webkit-input-placeholder { 
  color: rgba(255,255,255,.3);
}
.contact-section .contact-form textarea::-moz-placeholder, 
.contact-section .contact-form input::-moz-placeholder { 
  color: rgba(255,255,255,.3);
}
.contact-section .contact-form textarea:-ms-input-placeholder,
.contact-section .contact-form input:-ms-input-placeholder {
  color: rgba(255,255,255,.3);
}
.contact-section .contact-form textarea:-moz-placeholder, 
.contact-section .contact-form input:-moz-placeholder { 
  color: rgba(255,255,255,.3);
}
.contact-section .contact-form button[type="submit"]{

}
.contact-section .contact-form .input-group.name{
    transition: all 1.2s ease 0.5s;
}
.contact-section .contact-form .input-group.email{
    transition: all 1.2s ease 0.7s;
}
.contact-section .contact-form .input-group.msg{
    transition: all 1.2s ease 0.9s;
}
.contact-section .contact-form .input-group.submit{
    transition: all 1.2s ease 1s;
}
.contact-section .contact-form .input-group{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
	text-align: center;
}

.contact-section .address-area address {
    margin-bottom: 0;
}
.contact-section .address-area address .label {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    font-family: roboto;
    letter-spacing: 1px;
    display: block;
}
.contact-section .address-area address p.address {
    color: #fff;
    font-size: 20px;
    max-width: 300px;
    margin-top: 12px;
    transition: all 1.2s ease 0.3s;
}
.contact-section .address-area address .address-label{
    transition: all 1.2s ease;
}
.contact-section .address-area address .email-label{
    margin-top: 40px;
    transition: all 1.2s ease 0.6s;
}

.contact-section .address-area address .email{
    color: #f5b300;
    transition: all 1.2s ease 0.8s;
}
.contact-section .address-area address .email:hover{
    text-decoration: underline;
}

.contact-section .address-area address .address-label,
.contact-section .address-area address .email-label,
.contact-section .address-area address .address,
.contact-section .address-area address .email{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}



/*-------12. footer-section-------*/
.footer-section{
    position: relative;
    z-index: 2;
    padding: 20px 0;
}
.footer-section .footer-content {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 8px;
    padding-left: 20px;
}
.footer-section .footer-content .copyright-text p{
    font-size: 17px;
    color: #fff;
}
.footer-section .footer-content .copyright-text p a{
    color: #f5b300;
    font-weight: 700;
}
.footer-section .footer-content .copyright-text p a:hover{
    text-decoration: underline;
}
.footer-section .footer-content .social-icon {
    display: flex;
    align-items: center;
}
.footer-section .footer-content .social-icon li{
    margin-left: 5px;
}



/*-------------*/
@media (min-width: 1200px){
    .hero-section.fp-completely .hero-image:before {
        width: 0;
    }
    .hero-section.fp-completely .scroll-down {
        transform: rotate(-90deg) translateX(0px);
        opacity: 1;
        visibility: visible;
    }
    .hero-section.fp-completely .hero-content .hire-me,
    .hero-section.fp-completely .hero-content h1,
    .hero-section.fp-completely .hero-content h2{
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }
    .about-section.fp-completely .about-img1:before {
        width: 0;
    }
    .about-section.fp-completely .about-content h2,
    .about-section.fp-completely .about-content h5{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .skill-section.fp-completely .single-skill {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .skill-section.fp-completely .single-skill:nth-child(odd) {
        transform: translate(0, 20px);
    }
    .skill-section.fp-completely .single-skill:nth-child(3){
        transition-delay: 0.2s;
    }
    .skill-section.fp-completely .single-skill:nth-child(4){
        transition-delay: 0.3s;
    }
    .skill-section.fp-completely .single-skill:nth-child(5){
        transition-delay: 0.4s;
    }
    .skill-section.fp-completely .single-skill:nth-child(6){
        transition-delay: 0.5s;
    }
    .skill-section.fp-completely .single-skill:nth-child(7){
        transition-delay: 0.6s;
    }
    .skill-section.fp-completely .single-skill:nth-child(8){
        transition-delay: 0.7s;
    }
    .skill-section.fp-completely .single-skill:nth-child(9){
        transition-delay: 0.8s;
    }
    .skill-section.fp-completely .single-skill:nth-child(10){
        transition-delay: 0.9s;
    }
    .skill-section.fp-completely .single-skill:nth-child(11){
        transition-delay: 0.9s;
    }
    .testimonial-section.fp-completely .author-img-wrapper:before{
        width: 1100px;
    }
    .blog-section.fp-completely .single-blog:not(.title) {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .blog-section.fp-completely .single-blog.title h2,
    .blog-section.fp-completely .single-blog.title .view-more{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .fp-completely .contact-section .contact-form .input-group{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .fp-completely .contact-section .address-area address .address-label,
    .fp-completely .contact-section .address-area address .email-label,
    .fp-completely .contact-section .address-area address .address,
    .fp-completely .contact-section .address-area address .email{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    
}

/*-------------*/
@media (max-width: 1199px){
    .hero-section .hero-image.animated:before {
        width: 0;
    }
    .hero-section .scroll-down.animated {
        transform: rotate(-90deg) translateX(0px);
        opacity: 1;
        visibility: visible;
    }
    .hero-section .hero-content .hire-me.animated,
    .hero-section .hero-content h1.animated,
    .hero-section .hero-content h2.animated{
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }
    .about-section .about-img1.animated:before {
        width: 0;
    }
    .about-section .about-content h2.animated,
    .about-section .about-content h5.animated{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .skill-section .single-skill.animated {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .skill-section .single-skill.animated:nth-child(odd) {
        transform: translate(0, 20px);
    }
    .skill-section .single-skill.animated:nth-child(3){
        transition-delay: 0.2s;
    }
    .skill-section .single-skill.animated:nth-child(4){
        transition-delay: 0.3s;
    }
    .skill-section .single-skill.animated:nth-child(5){
        transition-delay: 0.4s;
    }
    .skill-section .single-skill.animated:nth-child(6){
        transition-delay: 0.5s;
    }
    .skill-section .single-skill.animated:nth-child(7){
        transition-delay: 0.6s;
    }
    .skill-section .single-skill.animated:nth-child(8){
        transition-delay: 0.7s;
    }
    .skill-section .single-skill.animated:nth-child(9){
        transition-delay: 0.8s;
    }
    .skill-section .single-skill.animated:nth-child(10){
        transition-delay: 0.9s;
    }
    .skill-section .single-skill.animated:nth-child(11){
        transition-delay: 0.9s;
    }
    .testimonial-section .author-img-wrapper.animated:before{
        width: 1100px;
    }
    .blog-section .single-blog.animated:not(.title) {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .blog-section .single-blog.title h2.animated,
    .blog-section .single-blog.title .view-more.animated{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .contact-section .contact-form .input-group.animated{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .contact-section .address-area address .address-label.animated,
    .contact-section .address-area address .email-label.animated,
    .contact-section .address-area address .address.animated,
    .contact-section .address-area address .email.animated{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
}





/*------------------
*******13. Blog page******
-------------------*/
.blog-page{
    background: #141519;
}
.blog-page .section-title{
    text-align: center;
}
.blog-page .blog-wrapper {
    flex-flow: row wrap;
    justify-content: space-between;
}
.blog-page .single-blog {
    width: calc(100% / 2 - 20px);
    max-width: 570px;
    margin-bottom: 100px;
}
.blog-page .single-blog .post-title {
    text-align: left;
}
.blog-page .single-blog .post-title h3 {
    font-size: 30px;
}
/* .blog-section .single-blog .post-title h3:first-letter {
    color: #f5b300;
    font-weight: bold;
} */
.blog-page .single-blog {
    transition: all 1.2s ease!important;
}
.blog-page .single-blog:nth-child(even){
    transition-delay: 0.3s!important;
    transform: translateY(130px);
}
.blog-page .single-blog.animated:nth-child(even){
    transform: translateY(100px);
}
.blog-page .single-blog .date {
    background: #f5b300;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 15px 25px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
.blog-page .single-blog .date small {
    display: block;
    line-height: normal;
    font-size: 12px;
    letter-spacing: 1px;
}


/*---pagination---*/
.blog-page .pagination {
    border-top: 1px solid #fff;
    padding: 19px 0 0 0;
    text-align: center;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}
.blog-page .pagination ul li{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}
.blog-page .pagination li a{
    color: #fff;
    display: inline-block;
    font-size: 16px;
    background: #26272a;
    padding: 10px 15px;
    margin: 0 4px;
}
.blog-page .pagination li a svg {
    width: 18px;
    position: relative;
    top: 5px;
}
.blog-page .pagination li a.prev svg {
    margin-right: 8px;
}
.blog-page .pagination li a.next svg {
    margin-left: 8px;
}
.blog-page .pagination li a.active,
.blog-page .pagination li a:hover{
    background: #f5b300;
}



/*----------------------
*******14. blog-single******
-----------------------*/
.blog-single {
    background: #141519;
    padding-bottom: 120px;
}

.blog-single .blog-single-banner{
    background: url('images/blog-single-feature-img.jpg') no-repeat center center/cover;
    height: 650px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.blog-single .blog-single-banner .overlay{
    background: rgba(20, 21, 25, 0.8);
}
.blog-single .blog-single-banner .banner-content{
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
}
.blog-single .blog-single-banner .banner-content h1{
    color: #fff;
    line-height: 1.2;
}
.blog-single .blog-single-banner .banner-content p a,
.blog-single .blog-single-banner .banner-content p {
    color: #f5b300;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    margin-top: 24px;
}
.blog-single .blog-single-banner .banner-content p a:hover{
    text-decoration: underline;
}

.blog-single .single-content{
    padding: 110px 0 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
    position: relative;
    z-index: 2;
}
.blog-single .single-content p{
    margin-bottom: 25px;
}
.blog-single .single-content img{
    width: 100%;
    margin-bottom: 25px;
}

.blog-single .single-content blockquote {
    background: #18191d;
    padding: 25px 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 14px 6px #111113;
    border-left: 2px solid #acacac;
}
.blog-single .single-content blockquote h3 {
    font-style: italic;
}
.blog-single .single-content blockquote .author {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 23px;
    display: block;
    text-align: right;
    color: #f5b300;
    font-weight: 700;
}
.blog-single .single-content blockquote .line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: red;
    position: relative;
    top: -5px;
    margin-right: 13px;
}

.blog-single .single-post-pagination{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    padding: 15px 0;
}
.blog-single .single-post-pagination a{
    width: 45%;
    color: #acacac;
    line-height: normal;
    position: relative;
    font-size: 20px;
}
.blog-single .single-post-pagination a:hover{
    color: #f5b300;
}
.blog-single .single-post-pagination a.prev{
    padding-left: 40px;
}

.blog-single .single-post-pagination a.next{
    text-align: right;
    padding-right: 40px;
}
.blog-single .single-post-pagination svg{
    width: 18px;
    position: absolute;
    top: 3px;
}
.blog-single .single-post-pagination a.prev svg{
    left: 0;
}
.blog-single .single-post-pagination a.next svg{
    right: 0;
}


/*------blog comment--------*/
.blog-single .comments-area {
    max-width: 880px;
    margin: 90px auto 0;
    position: relative;
    z-index: 2;
    padding: 50px;
    background: #18191d;
    box-shadow: 0 0 14px 6px #111113;
}
.blog-single .comments-area .comment-title{
    margin-bottom: 30px;
    border-bottom: 1px solid #0a0b0e;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.blog-single .comment-list .comment {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    border-bottom: 1px solid #0a0b0e;
    padding: 20px 0;
}
.blog-single .comment-list .comment:first-child {
    padding-top: 0;
}
.blog-single .comment-list .comment:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.blog-single .comment-list .comment .comment-author,
.blog-single .comment-list .comment .comment-author img {
    width: 80px;
    height: 80px;
    margin-top: 6px;
    border-radius: 100%;
}
.blog-single .comment-list .comment-metadata {
    width: calc(100% - 80px);
    padding-left: 25px;
}
.blog-single .comment-list  .comment-metadata b.fn {
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 500;
    margin-right: 15px;
}

.blog-single .comment-list .date-time {
    color: #acacac;
    font-size: 15px;
}
.blog-single .comment-list .date-time:hover {
    color: #f5b300;
}
.blog-single .comment-list .comment-content {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 7px;
}
.blog-single .comment-list .reply {
    font-size: 18px;
    color: #f5b300;
    text-transform: capitalize;
    font-weight: 600;
}
.blog-single .comment-list .reply:hover {
    text-decoration: underline;
}

/*------*/
.blog-single ul.children {
    padding-left: 100px;
    margin-top: 30px;
}
.blog-single ul.children .comment:first-child {
    border-top: 1px solid #0a0b0e;
    padding-top: 20px;
}


/*-------comment form------------*/
.blog-single .comment-respond{
    max-width: 880px;
    margin: 90px auto 0;
    position: relative;
    z-index: 2;
    padding: 50px;
    background: #18191d;
    box-shadow: 0 0 14px 6px #111113;
}
.blog-single .comment-respond .comment-form {
    display: flex;
    flex-flow: row wrap;
}
.blog-single .comment-respond .comment-form-author {
    width: 50%;
    padding-right: 15px;
}
.blog-single .comment-respond .comment-form-email {
    width: 50%;
    padding-left: 15px;
}
.blog-single .comment-respond .comment-form-comment{
    width: 100%;
}

.integra {
	text-transform: uppercase;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 12px;
    margin: 19px auto;
    padding: 11px;
    background: #000;
    width: 225px;
    text-align: center;
    border-radius: 4px;
}

.integra a {
	color: #fff;
}

.conteudo-modal {
	width: 100%; margin: 0 auto; max-height:420px; overflow-y: auto;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #666; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f5b300; 
}

.md-submit {
	transform: scale(1) !important;
    width: 100%;
    margin: 40px 0 17px;
}

.conteudo-modal input, textarea, select {
	color: #01542a;
    border-color: #01542a;
    font-weight: 800;
}

.shell {
  position: relative;
  line-height: 1; }
  .shell span {
    position: absolute;
    left: 3px;
    top: 1px;
    color: #ccc;
    pointer-events: none;
    z-index: -1; }
    .shell span i {
      font-style: normal;
      /* any of these 3 will work */
      color: transparent;
      opacity: 0;
      visibility: hidden; }

input.masked,
.shell span { font-size: 16px; font-family: monospace; padding-right: 10px; background-color: transparent;  text-transform: uppercase; }
  
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.h3-subtitulo {
    text-align: center;
    color: #ffb400;
    margin-top: 26px;
    font-size: 135%;
    font-weight: 800;
}

.h2-solucao {font-size:80px; margin-top:-67px; opacity:.4; color:#fff;}
.ui-widget-content { z-index: 20000000 !important; }
.carregando img {  display: inline; }
.ui-widget-content {min-height: auto !important; }
.ui-dialog .ui-dialog-titlebar {     display: none !important;}

div.email input, div.email select, div.email button  {
    width: 98%;
}



.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(24, 27, 24) 0%, rgba(0,0,0,1) 100%);
    z-index: 100000;
    opacity:0.9;
    display:none
}

    .loader > .waiter {
        width: 66px;
        text-align: center;
        height: 66px;
        margin-top: -33px;
        top: 50%;
        position: absolute;
        left: 50%;
        margin-left: -33px;
    }

        .loader > .waiter > img {
            width: 100%;
        }