/*----------------------------------------*/
/* Estilo Orion
/* Onfoccus
/*----------------------------------------*/

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

h1 span {
    background: #27ef43;
    padding: 0 10px;
    color: #222222;
    display: inline-block;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

h4 {
    font-size: 15px;
}

p {
    font-size: 17px;
    color: #727272;
    line-height: 1.4;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

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

ul,
ol {
    padding: 0;
    margin: 0;
}

/*------------------------
  Helper css
--------------------------*/
.sp-title {
    font-size: 60px;
    margin-bottom: 40px;
}

.sp-title span {
    background: #27ef43;
    padding: 0 10px;
    color: #222222;
    display: inline-block;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.mb100 {
    margin-bottom: 100px;
}

.spad {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h1,
.section-title h2 {
    display: inline-block;
    background: #27ef43;
    padding: 0 20px;
    margin-bottom: 0;
    font-size: 60px;
}

.set-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*------------------------
  Common element css
--------------------------*/
/*=== Preloder ===*/
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    border-left-color: transparent;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.site-btn {
    display: inline-block;
    font-weight: 700;
    border: 4px solid;
    min-width: 200px;
    text-align: center;
    padding: 19px 0;
    position: relative;
    background-color: transparent;
    margin-right: 15px;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.site-btn:after,
.site-btn:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 4px;
    right: -15px;
}

.site-btn:after {
    bottom: 8px;
}

.site-btn:before {
    bottom: 18px;
}

.site-btn.sb-light {
    color: #fff;
}

.site-btn.sb-light:after,
.site-btn.sb-light:before {
    background: #fff;
}

.site-btn.sb-dark {
    color: #222222;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
    background: #222222;
}

.site-btn.sb-dark:hover {
    background: #27ef43;
}

.site-btn.sb-solid-color {
    background: #27ef43;
    border-color: #27ef43;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
    background: #222222;
}

.site-btn.sb-solid-dark {
    background: #222;
    border-color: #222;
    color: #27ef43;
}

.site-btn.sb-solid-dark:after,
.site-btn.sb-solid-dark:before {
    background: #27ef43;
}

.element {
    margin-bottom: 100px;
}

/*===  Loader ===*/
.circle-progress {
    text-align: center;
    padding-top: 30px;
    display: inline-block;
}

.circle-progress .prog-circle {
    position: relative;
    margin-bottom: -155px;
}

.circle-progress .prog-circle:after {
    position: absolute;
    content: "";
    width: 177px;
    height: 177px;
    left: 9px;
    top: 9px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}

.circle-progress canvas {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.circle-progress .progress-info {
    width: 100%;
    border-radius: 150px;
    margin: 0 auto;
    padding-top: 22px;
}

.circle-progress .progress-info h2 {
    font-size: 48px;
}

.circle-progress .prog-title {
    text-align: center;
    margin-top: 100px;
}

.circle-progress .prog-title h3 {
    font-size: 18px;
    color: #727272;
}

/* Back 2 top */
#back2Top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    border: none;
    outline: none;
    background-color: #27ef43;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

#back2Top:hover {
    background-color: #27ef43;
    color: #000;
}

/*----------------------------------------*/
/*  Header CSS
/*----------------------------------------*/
.header-area {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 50;
}

.logo-area {
    float: left;
    display: inline-block;
    background: #121212;
    padding: 10px 50px 20px;
}

.phone-number {
    float: right;
    display: none;
    padding: 5px 10px;
    background: #27ef43;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-right: 50px;
}

.nav-switch {
    display: none;
}

.nav-menu {
    display: inline-block;
    float: right;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    display: inline;
}

.nav-menu ul li a {
    display: inline-block;
    padding: 40px 10px 5px;
    text-transform: uppercase;
    margin-right: 20px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-menu ul li a:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 0;
    left: 50%;
    margin-left: 1px;
    top: 0;
    background: #27ef43;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.nav-menu ul li a:hover:after {
    height: 25px;
}

.nav-menu ul li.active>a:after {
    height: 25px;
}

/*---------------------------------------*/
/*  Hero Section CSS
/*----------------------------------------*/
.hero-section {
    height: 960px;
    background: #ededed;
    position: relative;
}

.left-bar {
    position: absolute;
    width: 100px;
    height: 100%;
    background: #121212;
    z-index: 20;
}

.left-bar .left-bar-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    margin-bottom: 90px;
}

.social-links a {
    display: block;
    color: #838383;
    margin-bottom: 20px;
    font-size: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.social-links a:hover {
    color: #27ef43;
}

.hero-right-text {
    position: absolute;
    right: 140px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    bottom: 60%;
    z-index: 30;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 20px;
}

.hero-slider .hero-slide-item {
    width: 100%;
    height: 960px;
    display: table;
}

.hero-slider .hero-slide-item .slide-inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.hero-slider .owl-nav {
    position: absolute;
    display: inline-block;
    left: 350px;
    bottom: 70px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover {
    color: #27ef43;
}

.hero-slider .owl-nav .owl-prev i {
    margin-right: 5px;
}

.hero-slider .owl-nav .owl-next {
    margin-right: 0px;
}

.hero-slider .owl-nav .owl-next i {
    margin-left: 5px;
}

.slide-num-holder {
    width: 153px;
    height: 250px;
    position: absolute;
    right: 60px;
    background: rgba(18, 18, 18, 0.95);
    bottom: -40px;
    z-index: 111;
    text-align: right;
    padding-right: 20px;
    padding-top: 60px;
    color: #fff;
    font-weight: 700;
}

.slide-num-holder span {
    font-size: 48px;
    color: #27ef43;
    position: relative;
    top: -10px;
    right: -10px;
}

.slide-content {
    margin-left: 350px;
    margin-bottom: 50px;
    padding-left: 190px;
    padding-top: 170px;
    padding-bottom: 70px;
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.slide-content:after {
    position: absolute;
    content: "";
    height: calc(100% + 50px);
    width: 330px;
    border-top: 150px solid #27ef43;
    border-left: 150px solid #27ef43;
    border-bottom: 90px solid #27ef43;
    top: 0;
    left: 0;
    opacity: 0.73;
}

.slide-content h2 {
    color: #fff;
    font-size: 80px;
    line-height: 80px;
}

.owl-item.active .slide-content {
    opacity: 1;
}

/*----------------------------------------*/
/*  Projects Section CSS
/*----------------------------------------*/
.projects-filter-nav {
    list-style: none;
    text-align: right;
    margin-top: 20px;
}

.projects-filter-nav li {
    display: inline-block;
    margin-left: 25px;
    color: #747474;
    font-size: 18px;
    font-weight: 500;
    padding: 0 5px;
    cursor: pointer;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.projects-filter-nav li.btn-active {
    background: #27ef43;
    color: #222222;
}

.projects-slider {
    padding: 0 40px;
    margin-top: 60px;
}

.projects-slider .single-project {
    height: 550px;
    width: 100%;
    background: #333;
    -o-transition: .8s;
    transition: .8s;
    -webkit-transition: .8s;
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1;
}

.projects-slider .single-project .project-content {
    padding: 30px;
    height: 100%;
    background: rgba(13, 13, 13, 0.5);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    opacity: 0;
}

.projects-slider .single-project .project-content h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    position: relative;
    top: 20px;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.projects-slider .single-project .project-content p {
    color: #4ef866;
    font-weight: 500;
    position: relative;
    top: 40px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.projects-slider .single-project .seemore {
    position: absolute;
    right: 50px;
    bottom: 30px;
    background: #27ef43;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    padding: 2px 8px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.projects-slider .single-project:hover .project-content {
    opacity: 1;
}

.projects-slider .single-project:hover .project-content h2,
.projects-slider .single-project:hover .project-content p {
    top: 0;
}

.projects-slider .single-project:hover .seemore {
    bottom: 50px;
}

.projects-slider .single-project.__loading {
    opacity: 0;
    -ms-transform: translateX(40px);
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
}

.projects-slider .owl-nav {
    text-align: right;
    max-width: 1170px;
    margin: 40px auto 0;
}

.projects-slider .owl-nav .owl-prev,
.projects-slider .owl-nav .owl-next {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 0 5px;
}

.projects-slider .owl-nav .owl-prev:hover,
.projects-slider .owl-nav .owl-next:hover {
    background: #27ef43;
}

.projects-slider .owl-nav .owl-prev i {
    margin-right: 5px;
}

.projects-slider .owl-nav .owl-next {
    margin-right: 0px;
}

.projects-slider .owl-nav .owl-next i {
    margin-left: 5px;
}

/*----------------------------------------*/
/*  CTA Section CSS
/*----------------------------------------*/
.cta-section {
    position: relative;
    margin-bottom: 100px;
}

.cta-section:after {
    content: "";
    position: absolute;
    width: 67%;
    height: 100%;
    right: 0;
    top: 0;
    background: #222222;
    z-index: 2;
}

.cta-section .cta-image-box {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    background-image: url("../images/torre-vapor.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section .container {
    position: relative;
    z-index: 9;
}

.cta-section .cta-content h2 {
    color: #fff;
}

.cta-section .cta-content p {
    color: #fff;
    margin-bottom: 30px;
}

/*----------------------------------------*/
/*  MKT Section CSS
/*----------------------------------------*/
.mkt-section {
    position: relative;
    margin-bottom: 100px;
    background: #222222;
}

.mkt-section .mkt-content h2 {
    color: #fff;
}

.mkt-section .mkt-content p {
    color: #fff;
    margin-bottom: 30px;
}


/*----------------------------------------*/
/*  Footer Section CSS
/*----------------------------------------*/
.footer-section {
    padding-top: 110px;
    padding-bottom: 110px;
    border-top: 1px solid #c8c8c8;
    position: relative;
    margin-top: 70px;
    background-color: #e2e2e2;
}

.footer-section .copyright {
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 60px;
    color: #737373;
}

.footer-section .footer-social {
    width: 75px;
    text-align: center;
    position: absolute;
    right: 60px;
    top: -55px;
    padding-top: 20px;
    background: #222;
}

.footer-item ul {
    list-style: none;
}

.footer-item ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-item ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    padding: 0 5px;
}

.footer-item ul li a:hover {
    background: #27ef43;
}

/*----------------------------------------*/
/*  Page Header CSS
/*----------------------------------------*/
.page-header-section {
    height: 445px;
    padding-top: 200px;
}

.page-header-section .header-title {
    font-size: 82px;
    color: #fff;
}

.page-header-section .header-title span {
    background: none;
    color: #27ef43;
}

/*----------------------------------------*/
/*  Empresa page CSS
/*----------------------------------------*/
.testimonials-section {
    position: relative;
    margin: 60px 0;
}

.testimonials-section h1 {
    color: #fff;
}

.testimonials-section:after {
    content: "";
    position: absolute;
    width: 67%;
    height: 100%;
    right: 0;
    top: 0;
    background: #222222;
    z-index: 2;
}

.testimonials-section .testimonials-image-box {
    position: absolute;
    width: 50%;
    height: calc(100% + 120px);
    left: 0;
    top: -60px;
    background-image: url("../images/torre-vapor.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-section .container {
    position: relative;
    z-index: 9;
}

.testimonials-section .qut {
    color: #27ef43;
    font-size: 26px;
    margin-bottom: 20px;
}

.ts-item p {
    color: #fff;
    font-style: italic;
    margin-bottom: 50px;
}

.ts-item h4 {
    font-size: 15px;
    font-weight: 400;
    color: #27ef43;
    margin-bottom: 0;
}

.ts-item span {
    font-size: 12px;
    color: #fff;
}

.promo-section {
    padding-top: 90px;
    padding-bottom: 150px;
}

.promo-text h2 {
    margin-bottom: 20px;
    color: #27ef43;
    text-shadow: 3px 3px 3px #555;
}

.promo-text p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 0;
}

.promo-text2 h2 {
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 3px #555;
}

.promo-text2 p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.slide-num-holder.test-slider {
    right: auto;
    left: 100%;
    bottom: -160px;
    width: 160px;
    height: 230px;
    padding-right: 30px;
    padding-top: 80px;
}

.emp-direita {
    position: absolute;
    left: 0;
    bottom: 0;
}

.emp-esquerda {
    position: absolute;
    right: 0;
    bottom: 0;
}

.emp-vertical {
    display: none;
}

.ico-emp {
    font-size: 25px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    color: #fff;
    margin-right: 15px;
    background-color: rgba(39, 239, 67, 0.6);
    text-align: center;
    display: block;
    border-radius: 50%;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    -o-transition: 500ms;
    transition: 500ms;
    float: left;
    border: solid 2px #21c939;
}

.card:hover .ico-emp {
    color: #fff;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.8);
}

.card-title-emp {
    display: block;
    vertical-align: middle;
}

h3.card-title-emp {
    margin-bottom: 10px;
    height: 70px;
    padding-top: 10px;
}

.card-text-emp {
    margin-bottom: 5px;
    text-indent: 60px;
    line-height: 1.4;
}

.lista {
    padding-left: 55px;
    color: #727272;
}


/*----------------------------------------*/
/*  Produto page CSS
/*----------------------------------------*/
.grupo-produto {
    margin: 30px 0;
}

.grupo-produto h2 {
    color: #197108;
    text-shadow: 2px 2px 3px #777;
}

.card {
    margin-bottom: 20px;
    box-shadow: 5px 5px 5px #ddd;
    -webkit-box-shadow: 5px 5px 5px #ddd;
    -moz-box-shadow: 5px 5px 5px #ddd;
}

.card-img {
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.card:hover .card-img-top {
    transform: scale(1.15, 1.15);
    -webkit-transform: scale(1.15, 1.15);
    -moz-transform: scale(1.15, 1.15);
}

.card-title a {
    color: #222222;
    display: block;
    text-align: center;
}

.card-title a:hover {
    color: #27ef43;
}

.card-text {
    margin-bottom: 10px;
    min-height: 120px;
}

.produto-slider {
    position: relative;
}

.produto-slider .owl-controls {
    position: absolute;
    height: 100%;
    width: 14px;
    left: 0;
    top: 0;
    display: -ms-grid;
    display: grid;
}

.produto-slider .owl-dots {
    display: table-cell;
    vertical-align: middle;
}

.produto-slider .owl-dots .owl-dot {
    width: 14px;
    height: 13px;
    margin-bottom: 10px;
    background: #e8e8e8;
}

.produto-slider .owl-dots .owl-dot.active {
    background: #27ef43;
}

.produto-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.produto-text p {
    margin-bottom: 20px;
}

.produto-text h3 {
    margin-bottom: 15px;
}

.ico-down {
    font-size: 15px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #fff;
    margin-right: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    display: block;
    border-radius: 50%;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    -o-transition: 500ms;
    transition: 500ms;
    float: left;
}

.download:hover .ico-down {
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.8);
}

.download a {
    font-size: 15px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-weight: 700;
    color: #727272;
    padding: 7px;
}

.download a:hover {
    color: #222222;
    background: #27ef43;
}

.solid-produto-box {
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.solid-produto-box h2 {
    font-size: 48px;
    color: #727272;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-produto-box h3 {
    margin-bottom: 20px;
}

.solid-produto-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.solid-produto-box .readmore {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    opacity: 0;
    visibility: hidden;
    position: relative;
    bottom: -20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-produto-box:hover {
    background: #27ef43;
}

.solid-produto-box:hover h2 {
    color: #222;
}

.solid-produto-box:hover .readmore {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.promo-box {
    width: 1383px;
    margin: 0 auto;
    padding: 40px 0;
}

.promo-box .promo-text h1,
.promo-box .promo-text p {
    color: #fff;
}

/*----------------------------------------*/
/*  Serviços page CSS
/*----------------------------------------*/
.grupo-servico {
    margin: 40px 0;
}

.grupo-servico h2 {
    color: #197108;
    text-shadow: 2px 2px 3px #777;
}

.servico-item p {
    line-height: 1rem;
}

.servico-item ul {
    padding-left: 20px;
}

.servico-item ul li {
    font-size: 15px;
    color: #727272;
    line-height: 1rem;
}

/*----------------------------------------*/
/*  Blog page CSS
/*----------------------------------------*/
.blog-post {
    margin-bottom: 120px;
}

.blog-post .thumb {
    padding: 25px;
    position: relative;
}

.blog-post .thumb:after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 100px);
    top: 0;
    left: 0;
    background: #f0f0f0;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.blog-post .post-date {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    background: #27ef43;
    padding: 4px 15px;
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 30px;
}

.blog-post h2 a {
    color: #222;
}

.blog-post p {
    margin-bottom: 0;
}

.blog-post .post-meta {
    margin-bottom: 40px;
}

.blog-post:hover .thumb:after {
    background: #27ef43;
}

.pagination {
    display: inline-block;
    padding: 20px 30px;
    background: #222;
    border-radius: 0;
}

.pagination a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pagination a.active {
    font-size: 48px;
    color: #27ef43;
}

.widget-area {
    margin-bottom: 80px;
}

.widget-area .widget-title {
    font-size: 22px;
    margin-bottom: 40px;
}

.widget-area ul {
    list-style: none;
}

.widget-area ul li a {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #727272;
    padding: 3px 10px;
    padding-left: 25px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area ul li a:after {
    position: absolute;
    content: "+";
    color: #838383;
    left: 5px;
    top: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area ul li a:hover {
    background: #27ef43;
    color: #222;
}

.widget-area ul li a:hover:after {
    color: #222;
}

.widget-area ul li:last-child a {
    margin-bottom: 0;
}

.widget-area .rp-widget .rp-widget-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-area .rp-widget .rp-widget-item:last-child {
    margin-bottom: 0;
}

.widget-area .rp-widget h4 {
    line-height: 1.5;
    margin-bottom: 0;
}

.widget-area .rp-widget p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

/*----------------------------------------*/
/*  Contato page CSS
/*----------------------------------------*/
.cf-social {
    margin-top: 50px;
}

.cf-social a {
    color: #222;
    margin-right: 25px;
}

.contact-form {
    padding-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 13px;
    border: none;
    background: #f0f0f0;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.contact-form textarea {
    height: 200px;
    margin-bottom: 30px;
}

.contact-form ::-webkit-input-placeholder {
    font-style: italic;
}

.contact-form :-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::placeholder {
    font-style: italic;
}

.map-area {
    height: 685px;
    width: 100%;
    display: block;
    background: #f0f0f0;
    margin-bottom: 2px;
}

/*----------------------------------------*/
/*  Representante Page
/*----------------------------------------*/
.repre {
    margin-bottom: 35px;
}

.repre p {
    padding: 0;
    margin: 0;
}


/* ===========================
  Responsive
==============================*/
@media only screen and (max-width: 1477px) {
    .slide-num-holder.test-slider {
        left: auto;
        right: 0;
    }

    .phone-number {
        display: inline-block;
    }

    h3.card-title-emp {
        height: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1260px) {
    .promo-box {
        width: 100%;
    }

    .phone-number {
        display: none;
    }

    h3.card-title-emp {
        height: 50px;
    }
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .phone-number {
        display: none;
    }

    .nav-menu ul li a {
        margin-right: 10px;
    }

    .slide-content {
        margin-left: 220px;
    }

    .milestone p {
        margin-left: 10px;
        font-size: 17px;
    }

    .milestone h2 {
        font-size: 55px;
    }

    .milestone:after {
        width: 90px;
        height: 90px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        right: 100px;
    }

    h3.card-title-emp {
        height: 50px;
    }
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo-area {
        padding: 20px 30px 30px;
    }

    .slide-content {
        margin-left: 170px;
        margin-bottom: -35px;
        padding-left: 120px;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .slide-content:after {
        border-top: 100px solid #27ef43;
        border-left: 100px solid #27ef43;
        border-bottom: 60px solid #27ef43;
    }

    .hero-slider .owl-nav {
        left: 170px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        bottom: 70%;
        right: 100px;
    }

    .nav-menu ul li a {
        margin-right: 3px;
        font-size: 13px;
        padding: 37px 5px 3px;
    }

    .phone-number {
        display: none;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .solid-produto-box {
        margin-bottom: 30px;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .hero-section,
    .hero-slider .hero-slide-item {
        height: 850px;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .footer-section .footer-social {
        width: auto;
        top: -25px;
        right: 50%;
        padding: 10px;
        margin-right: -133px;
    }

    .footer-section .social-links a {
        display: inline-block;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .projects-filter-nav li {
        margin-left: 0;
        margin-right: 15px;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
    }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {

    h1,
    .sp-title {
        font-size: 45px;
    }

    .page-header-section {
        height: 345px;
    }

    .page-header-section .header-title {
        font-size: 50px;
    }

    .left-bar {
        width: 70px;
    }

    .slide-content:after,
    .hero-right-text,
    .phone-number {
        display: none;
    }

    .nav-switch {
        position: absolute;
        right: 20px;
        font-size: 30px;
        color: #fff;
        top: 20px;
        display: block;
    }

    .nav-menu {
        position: absolute;
        width: calc(100% - 90px);
        left: 80px;
        background: #121212;
        top: 100%;
        margin-top: 11px;
        display: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 16px 21px;
        border-bottom: 1px solid #202020;
        margin-right: 0;
    }

    .nav-menu ul li a:after {
        left: 20px;
    }

    .nav-menu ul li.active>a:after,
    .nav-menu ul li a:hover:after {
        height: 10px;
    }

    .section-title h1,
    .section-title h2 {
        font-size: 50px;
    }

    .hero-section {
        height: auto;
    }

    .left-bar .left-bar-content {
        margin-bottom: 40px;
    }

    .hero-slider .hero-slide-item {
        padding: 150px 0;
        height: auto;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-slider .owl-nav {
        padding-left: 70px;
        width: 100%;
        text-align: center;
        left: 0;
    }

    .slide-content {
        margin-left: 70px;
        padding: 0;
        text-align: center;
    }

    .slide-num-holder,
    .slide-num-holder.test-slider {
        right: 0;
        height: 75px;
        width: 136px;
        padding-top: 18px;
    }

    .slide-num-holder span,
    .slide-num-holder.test-slider span {
        font-size: 40px;
    }

    .slide-num-holder.test-slider {
        bottom: -135px;
    }

    .projects-slider .single-project .project-content h2 {
        font-size: 20px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .footer-section .footer-social {
        width: auto;
        top: -25px;
        right: 50%;
        padding: 10px;
        margin-right: -133px;
    }

    .footer-section .social-links a {
        display: inline-block;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
        text-align: center;
    }

    .footer-item {
        margin-bottom: 40px;
    }
}

/* small mobile :320px. */
@media only screen and (max-width: 560px) {

    h1,
    .sp-title {
        font-size: 35px;
    }

    .logo-area {
        padding: 20px 30px 30px;
    }

    .header-area {
        background: #121212;
        padding-right: 66px;
    }

    .nav-menu {
        width: 100%;
        left: 0;
        margin-top: 0;
        border-top: 2px solid;
    }

    .left-bar {
        display: none;
    }

    .hero-slider .owl-nav {
        padding-left: 0;
    }

    .slide-content {
        margin-left: 0;
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 35px;
        line-height: 1.5;
    }

    .page-header-section {
        height: 250px;
    }

    .page-header-section .header-title {
        font-size: 30px;
    }

    .portfolio-warp .grid-item {
        width: 100%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 100%;
    }

    .portfolio-warp .grid-sizer {
        width: 100%;
    }

    .projects-slider {
        padding: 0 15px;
    }

    .grupo-produto h2 {
        font-size: 30px;
    }

    .grupo-servico h2 {
        font-size: 30px;
    }

    .emp-direita {
        display: none;
    }

    .emp-esquerda {
        display: none;
    }

    .emp-vertical {
        display: block;
        position: relative;
        left: 50%;
        bottom: 0;
    }
}