@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

@font-face {
    font-family: 'masonsans-regular';

    src: url('../fonts/masonsans-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/masonsans-regular.woff') format('woff'),
         url('../fonts/masonsans-regular.ttf') format('truetype'),
         url('../fonts/masonsans-regular.svg#masonsans-regular') format('svg');

    font-style: normal;
    font-weight: normal;
}

* {
    border: 0;

    margin: 0;
    padding: 0;

    resize: none;
    outline: none;

    background: transparent;
}

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

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

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

/** header ********************************************************************/

header {
    z-index: 10;

    width: 100%;
    height: 165px;

    position: relative;
}

header:after {
    z-index: 1;

    left: 50%;
    width: 200%;
    height: 745px;
    bottom: 0%;

    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);

    -webkit-box-shadow: 0 0 150px rgba(0,0,0,0.3);
            box-shadow: 0 0 150px rgba(0,0,0,0.3);

    content: '';
    display: block;
    position: absolute;

    background: white;
    border-radius: 50%;
}

header h1 {
    z-index: 2;

    top: 50%;
    left: 50%;

    width: 144px;
    height: 144px;

    font-size: 0;
    line-height: 0;

    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);

    background: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;

    position: absolute;
}

header nav {
    z-index: 2;

    top: 50%;
    left: 50%;
    width: 100%;

    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);

    font-size: 0;
    line-height: 0;

    text-align: center;
    text-transform: uppercase;

    position: absolute;
}

header nav div {
    width: 330px;
    display: inline-block;
}

header nav div a {
    color: #4d4d4d;
    margin: 0px 15px;

    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1px;
    font-family: 'masonsans-regular';

    text-decoration: none;
}

header nav div:nth-child(1) {
    margin-right: 225px;
}

header nav div:nth-child(3) {
    top: -58px;
    right: 0px;

    position: absolute;
}

header nav div:nth-child(3) a {
    display: inline-block;

    width: 180px;
    padding: 2px 12px 0px 40px;

    font-size: 14px;
    line-height: 28px;
    letter-spacing: 1px;

    text-align: left;
    text-transform: uppercase;

    color: #ffffff;
    background: #cc8346;

    background-image: url(../images/chat.png);
    background-size: 18px;
    background-position: 15px center;
    background-repeat: no-repeat;

    border-radius: 15px;
}

header nav div:nth-child(3) a.ig {
    width: 30px;
    margin: 0px;
    padding: 0px;
    display: inline-block;

    font-style: normal;
    font-family: 'FontAwesome';

    text-transform: none;
    text-decoration: none;

    text-align: center;
    background-image: none;
}

header nav div:nth-child(3) a.ig i {
    font-size: 20px;
    font-style: normal;
}

@media (min-width: 992px) {

    header nav a {
        position: relative;
    }

    header nav a:after {
        content: '';

        left: 50%;
        bottom: -3px;

        width: 0%;
        height: 1px;

        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);

        -webkit-transition: 0.2s ease;
                transition: 0.2s ease;

        display: block;
        position: absolute;

        background: #922d1c;
    }

    header nav a:hover {
        color: #922d1c;
    }

    header nav a:hover:after {
        width: 100%;
    }

    header nav div:nth-child(3) a {
        -webkit-transition: 0.2s ease;
                transition: 0.2s ease;
    }

    header nav div:nth-child(3) a:after {
        display: none;
    }

    header nav div:nth-child(3) a:hover {
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
    }

}

/** footer ********************************************************************/

footer {
    height: 255px;

    overflow: hidden;
    position: relative;

    background: #922d1c;
    border-bottom: #daa45a 6px solid;
}

footer p {
    color: #daa45a;

    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'Open Sans';
}

footer p i {
    width: 25px;
    display: inline-block;
    font-style: normal;
    font-family: 'FontAwesome';
}

footer p:last-child {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

footer p:first-child .fa-envelope {
    margin-left: 30px;
}

footer .container > img {
    float: left;
    margin: 40px 0px;
}

footer .container > div {
    z-index: 2;

    margin-top: 75px;
    margin-left: 205px;

    position: relative;
}

footer:after,
footer:before {
    content: '';
    border-radius: 50%;

    top: 50px;
    right: 120px;

    width: 1200px;
    height: 1110px;

    display: block;
    position: absolute;

    -webkit-transform: translateX(50%);
            transform: translateX(50%);

    border: 8px solid #993922;
}

footer:before {
    top: 100px;
    width: 1100px;
    height: 950px;
}

footer.uk {
    height: auto;
    padding-bottom: 40px;
}

footer.uk p.for-flag {
    margin: 4px 0 8px;
    line-height: 22px;
}

footer.uk p.for-flag img {
    width: 18px;
    height: auto;
    margin: -2px 2px 0 0;
}

footer.uk p.for-flag small {
    opacity: 0.9;
    font-size: 1em;
}

/** page title ****************************************************************/

section#page-title {
    z-index: 5;

    left: -20%;
    width: 140%;
    height: 300px;

    overflow: hidden;
    position: relative;

    -webkit-box-shadow: 0 0 150px rgba(0,0,0,0.3);
            box-shadow: 0 0 150px rgba(0,0,0,0.3);

    margin-top: -95px;
    border-radius: 50%;

    background: #922d1c;
}

section#page-title h2 {
    color: #ffffff;
    margin: 90px 0px 0px;

    font-size: 70px;
    line-height: 80px;
    letter-spacing: 4px;
    font-family: 'masonsans-regular';

    position: relative;
    text-transform: uppercase;
}

section#page-title h2.center {
    text-align: center;
}

section#page-title h2 span {
    z-index: 2;
    position: relative;
}

section#page-title h2:after {
    z-index: 1;
    content: '';

    top: 50%;
    left: -350px;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);

    background: -moz-radial-gradient(center, ellipse cover,  rgba(216,160,88,1) 0%, rgba(243,225,202,0) 68%, rgba(255,255,255,0) 100%);
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(216,160,88,1) 0%,rgba(243,225,202,0) 68%,rgba(255,255,255,0) 100%);
    background: radial-gradient(ellipse at center,  rgba(216,160,88,1) 0%,rgba(243,225,202,0) 68%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8a058', endColorstr='#00ffffff',GradientType=1 );

    display: block;
    position: absolute;
}

section#page-title .circle {
    border-radius: 50%;

    top: 50%;
    left: 0%;

    width: 420px;
    height: 420px;
    margin: 45px 0px 0px;

    display: block;
    position: absolute;

    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);

    border: 3px solid rgba(255,255,255,0.3);
}

section#page-title .circle.small {
    width: 360px;
    height: 360px;
}

section#page-title .container {
    z-index: 2;

    top: 50%;
    left: 50%;

    -webkit-transform: translate3d(-50%,-50%,0);
            transform: translate3d(-50%,-50%,0);

    position: absolute;
}

/*******************************************************************************
 ** HOME **********************************************************************/

    /** banner ****************************************************************/

    section#banner {
        z-index: 5;

        left: -50%;
        width: 200%;
        height: 680px;

        overflow: hidden;
        position: relative;

        -webkit-box-shadow: 0 0 150px rgba(0,0,0,0.3);
                box-shadow: 0 0 150px rgba(0,0,0,0.3);

        margin-top: -95px;
        border-radius: 50%;
    }

    section#banner:after {
        z-index: 2;
        content: '';

        left: 50%;
        bottom: 0px;

        width: 100px;
        height: 100px;

        display: block;
        position: absolute;

        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);

        background: url(../images/scroll.gif);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center center;
    }

    section#banner .circles {
        z-index: 2;

        top: 45px;
        height: 635px;

        -webkit-pointer-events: none;
                pointer-events: none;

        position: relative;
    }

    section#banner .circles .circle {
        border-radius: 50%;

        width: 420px;
        height: 420px;

        display: block;
        position: absolute;

        -webkit-transition: 1.5s ease;
                transition: 1.5s ease;

        -webkit-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1);
        -webkit-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);
           -moz-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);
             -o-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);
                transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);

        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);

        border: 3px solid rgba(255,255,255,0.3);
    }

    section#banner .circles .circle.small {
        width: 360px;
        height: 360px;

        -webkit-transition: 1s ease;
                transition: 1s ease;

        -webkit-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1);
        -webkit-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);
           -moz-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);
             -o-transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);
                transition-timing-function: cubic-bezier(0.035, 0.010, 0.000, 1.590);

        margin-left: -27px;
    }

    section#banner .owl-carousel {
        z-index: 1;

        top: 40px;
        bottom: 0px;

        left: 25%;
        width: 50%;

        position: absolute;
    }

    section#banner .owl-carousel p {
        color: #ffffff;

        font-size: 36px;
        line-height: 40px;
        font-family: 'masonsans-regular';

        letter-spacing: 2px;
    }

    section#banner .owl-carousel img {
        z-index: 1;

        top: 50%;
        left: 50%;

        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);

        position: absolute;
    }

    section#banner .owl-carousel .container {
        z-index: 2;

        top: 50%;
        left: 50%;

        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);

        position: absolute;
    }

    section#banner.inactive .circles .circle {
        top: 50% !important;
        left: 0px !important;

        -webkit-transform: translate3d(0,-50%,0);
                transform: translate3d(0,-50%,0);

        -webkit-transition-timing-function: ease;
        -webkit-transition-timing-function: ease;
           -moz-transition-timing-function: ease;
             -o-transition-timing-function: ease;
                transition-timing-function: ease;

        margin-left: 0px !important;
    }

    section#banner .owl-carousel .owl-item,
    section#banner .owl-carousel .owl-stage,
    section#banner .owl-carousel .owl-stage-outer {
        height: 100%;
        overflow: hidden;
    }

    section#banner .owl-carousel .owl-dots {
        top: 50%;
        left: 50%;

        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);

        position: absolute;
    }

    section#banner .owl-carousel .owl-dots button {
        float: right;
        clear: right;
        display: block;

        width: 20px;
        height: 20px;
        margin: 5px 0px;

        font-size: 0;
        line-height: 0;

        border: 2px solid white;
        border-radius: 50%;
    }

    section#banner .owl-carousel .owl-dots button.active:after {
        content: '';
        display: block;

        width: 10px;
        height: 10px;
        margin: 3px;

        border-radius: 50%;
        background-color: #ffffff;
    }

    /** intro *****************************************************************/

    section#intro {
        display: block;
        position: relative;

        width: 100%;
        height: 680px;
        margin-top: -45px;

        background: #ffffff;
    }

    section#intro p {
        color: #4d4d4d;

        font-size: 18px;
        line-height: 23px;
        font-weight: 400;
        font-family: 'Open Sans';

        margin-top: 25px;
    }

    section#intro a {
        color: #cc8346;

        display: inline-block;
        position: relative;

        margin: 55px 0px 0px;
        padding: 10px 50px 10px 20px;

        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: 'Open Sans';

        border: #cc8346 2px solid;
        border-radius: 25px;
    }

    section#intro a i {
        top: 50%;
        right: 20px;

        font-size: 20px;
        line-height: 18px;
        font-style: normal;
        font-weight: bolder;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    section#intro h2 {
        color: #922d1c;

        font-size: 90px;
        line-height: 80px;
        font-family: 'masonsans-regular';

        text-transform: uppercase;
    }

    section#intro > img {
        top: 0%;
        left: 50%;
        height: 100%;

        position: absolute;
    }

    section#intro .container {
        top: 50%;
        left: 50%;

        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);

        position: absolute;
    }

    /** page home empresa *****************************************************/

    section#page-home-empresa {
        overflow: hidden;
        position: relative;

        padding: 75px 0px 100px;
    }

    section#page-home-empresa h2 {
        color: #ffffff;

        padding: 0px 125px;
        margin-bottom: 70px;

        font-size: 90px;
        line-height: 80px;
        font-family: 'masonsans-regular';

        text-align: center;
        text-transform: uppercase;
    }

    section#page-home-empresa h2 small {
        display: block;
        margin-bottom: 15px;

        font-size: 30px;
        line-height: 30px;
        font-weight: 400;
        font-family: 'open sans';

        text-transform: none;
    }

    section#page-home-empresa .item {
        color: #ffffff;

        z-index: 2;
        padding: 0px 30px;
        margin-bottom: 70px;

        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        font-family: 'Open Sans';

        text-align: center;
    }

    section#page-home-empresa .item img {
        margin: auto;
        display: block;
        margin-bottom: 20px;
    }

    section#page-home-empresa .item strong {
        display: block;

        font-size: 24px;
        font-weight: 600;

        margin-bottom: 20px;
    }

    section#page-home-empresa a {
        color: #ffffff;

        display: block;
        position: relative;

        width: 255px;
        margin: 20px auto 0px;
        padding: 10px 50px 10px 20px;

        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: 'Open Sans';

        border: #ffffff 2px solid;
        border-radius: 25px;
    }

    section#page-home-empresa a i {
        top: 50%;
        right: 20px;

        font-size: 20px;
        line-height: 18px;
        font-style: normal;
        font-weight: bolder;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    section#page-home-empresa > img {
        top: 50%;
        left: 50%;
        height: 100%;

        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);

        position: absolute;
    }

    section#page-home-empresa .container {
        z-index: 1;
        position: relative;
    }

    /** hovers ****************************************************************/

    @media (min-width: 992px) {

        section#intro a,
        section#page-home-empresa a {
            -webkit-transition: 0.2s ease;
                    transition: 0.2s ease;
        }

        section#intro a:hover,
        section#page-home-empresa a:hover {
            padding-left: 30px;
            padding-right: 70px;
        }

        section#page-home-empresa a:hover {
            width: 275px;
        }

    }

/*******************************************************************************
 ** CONTATO *******************************************************************/

    /** content ***************************************************************/

    section#page-contato {
        display: block;
        position: relative;

        width: 100%;
        height: 740px;
        margin-top: -45px;

        background: #ffffff;
    }

    section#page-contato p {
        color: #4d4d4d;

        font-size: 18px;
        line-height: 24px;
        letter-spacing: 1px;
        font-weight: 400;
        font-family: 'Open Sans';

        margin-top: 20px;
    }

    section#page-contato h3 {
        color: #922d1c;

        font-size: 80px;
        line-height: 60px;
        font-family: 'masonsans-regular';

        margin-top: 160px;
    }

    section#page-contato > img {
        top: 0%;
        left: 50%;
        height: 100%;
        margin-left: 20px;

        position: absolute;
    }

    section#page-contato form {
        margin-top: 20px;
        margin-right: 30px;
    }

    section#work-with-us input,
    section#page-contato input,
    section#page-contato textarea {
        width: 100%;
        border-radius: 21px;

        margin: 0px 0px 15px;
        padding: 12px 20px 10px;

        border: 1px solid #636363;
    }

    section#page-contato textarea {
        height: 95px;
    }

    section#work-with-us .error,
    section#page-contato .error {
        border-color: #990000;
    }

    section#work-with-us .error-message,
    section#page-contato .error-message {
        color: #990000;

        top: -14px;
        padding: 4px 21px 0px;

        font-size: 12px;
        line-height: 12px;
        letter-spacing: 1px;

        font-weight: 400;
        font-family: 'Open Sans';

        position: relative;
    }

    section#work-with-us button,
    section#page-contato button {
        color: #cc8346;

        float: right;
        display: inline-block;
        position: relative;

        padding: 10px 50px 10px 20px;

        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: 'Open Sans';

        border: #cc8346 2px solid;
        border-radius: 25px;
    }

    section#work-with-us button i,
    section#page-contato button i {
        top: 50%;
        right: 20px;

        font-size: 20px;
        line-height: 18px;
        font-style: normal;
        font-weight: bolder;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }
    
    /** work with us **********************************************************/

    section#work-with-us {
        padding: 100px 0px;
        background: #ffe8c9;
    }
    
    section#work-with-us p {
        color: #4d4d4d;

        font-size: 16px;
        line-height: 20px;
        letter-spacing: 1px;
        font-weight: 400;
        font-family: 'Open Sans';

        margin-bottom: 20px;
    }
    
    section#work-with-us h3 {
        color: #922d1c;

        font-size: 60px;
        line-height: 45px;
        font-family: 'masonsans-regular';
        
        text-align: center;
        margin-bottom: 40px;
    }
    
    section#work-with-us .attachment-label {
        top: 0;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        
        padding: 12px 20px 10px;
        border: 1px solid #636363;
        border-radius: 21px;
        
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        
        -webkit-pointer-events: none;
                pointer-events: none;
        
        position: absolute;
        background: #ffe8c9;
    }

    section#work-with-us .attachment-icon {
        top: 0;
        right: 10px;

        width: 44px;
        height: 44px;
        
        font-size: 20px;
        text-align: center;
        line-height: 44px;

        color: #ffffff;
        background: #636363;
        border-radius: 21px;
        
        -webkit-pointer-events: none;
                pointer-events: none;
        
        position: absolute;
    }

    section#work-with-us input[type="file"] {
        opacity: 0;
    }

    /** map *******************************************************************/

    section#page-contato-map,
    section#page-contato-map iframe {
        width: 100%;
        height: 510px;
    }

    /** hovers ****************************************************************/

    @media (min-width: 992px) {

        section#work-with-us button,
        section#page-contato button {
            -webkit-transition: 0.2s ease;
                    transition: 0.2s ease;
        }

        section#work-with-us button:hover,
        section#page-contato button:hover {
            padding-left: 30px;
            padding-right: 70px;
        }

    }

/*******************************************************************************
 ** EMPRESA *******************************************************************/

    /** content ***************************************************************/

    section#page-empresa {
        padding: 100px 0px;
        background: #ffffff;
    }

    section#page-empresa p {
        color: #4c4c4c;

        font-size: 18px;
        line-height: 24px;
        font-family: 'Open Sans';

        top: 50%;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    section#page-empresa h3 {
        color: #922d1c;

        font-size: 75px;
        line-height: 60px;
        font-family: 'masonsans-regular';

        text-align: right;
    }

    section#page-empresa-diferencial {
        padding: 55px 0px;
        background: #daa45a;
        position: relative;
    }

    section#page-empresa-diferencial div {
        z-index: 2;
        position: relative;
    }

    section#page-empresa-diferencial div.bg {
        z-index: 1;

        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.2;

        position: absolute;
    }

    section#page-empresa-diferencial p {
        color: #ffffff;

        font-size: 18px;
        line-height: 24px;
        font-family: 'Open Sans';

        top: 50%;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;

        padding-left: 30px;
    }

    section#page-empresa-diferencial h3 {
        color: #ffffff;

        font-size: 75px;
        line-height: 60px;
        font-family: 'masonsans-regular';

        text-align: right;
        padding-right: 30px;
    }

    section#page-empresa-conscientizar {
        padding: 90px 0px;
    }

    section#page-empresa-conscientizar a {
        color: #cc8346;

        display: inline-block;
        position: relative;

        padding: 10px 50px 10px 20px;

        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: 'Open Sans';

        border: #cc8346 2px solid;
        border-radius: 25px;
    }

    section#page-empresa-conscientizar a i {
        top: 50%;
        right: 20px;

        font-size: 20px;
        line-height: 18px;
        font-style: normal;
        font-weight: bolder;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    section#page-empresa-conscientizar a {
        margin-top: 40px;
    }

    section#page-empresa-conscientizar p {
        color: #4c4c4c;

        font-size: 18px;
        line-height: 24px;
        font-family: 'Open Sans';
    }

    section#page-empresa-conscientizar h3 {
        color: #922d1c;

        font-size: 75px;
        line-height: 60px;
        font-family: 'masonsans-regular';
    }

    /** hovers ****************************************************************/

    @media (min-width: 992px) {

        section#page-empresa-conscientizar a {
            -webkit-transition: 0.2s ease;
                    transition: 0.2s ease;
        }

        section#page-empresa-conscientizar a:hover {
            padding-left: 30px;
            padding-right: 70px;
        }

    }

/*******************************************************************************
 ** SERVICOS ******************************************************************/

    /** content ***************************************************************/

    section#page-servicos {
        display: block;
        position: relative;

        width: 100%;
        margin: -45px 0px 0px;
        padding: 165px 0px 80px;

        background: #ffffff;
    }

    section#page-servicos .item {
        color: #ffffff;

        z-index: 2;
        padding: 0px 40px;
        margin-bottom: 70px;

        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        font-family: 'Open Sans';

        text-align: center;
    }

    section#page-servicos .item img {
        margin: auto;
        display: block;
        margin-bottom: 20px;
    }

    section#page-servicos .item strong {
        font-size: 20px;
        font-weight: 600;

        display: block;
    }

    section#page-servicos > img {
        z-index: 1;

        top: 0%;
        left: 50%;
        height: 100%;

        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);

        position: absolute;
    }

    section#page-servicos-how-it-works h3 {
        color: #922d1c;

        font-size: 80px;
        line-height: 60px;
        font-family: 'masonsans-regular';

        margin-top: 130px;
    }

    section#page-servicos-how-it-works ol {
        margin-top: 110px;
        margin-bottom: 60px;
    }

    section#page-servicos-how-it-works ol li {
        color: #4d4d4d;

        display: block;
        position: relative;

        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        font-family: 'Open Sans';

        padding: 20px 0px 20px 102px;
        border-bottom: 1px solid #d3d3d3;
    }

    section#page-servicos-how-it-works ol li:last-child {
        border-bottom: 0px;
    }

    section#page-servicos-how-it-works ol li span {
        color: #cc8346;

        top: 50%;
        left: 0%;

        font-size: 58px;
        font-family: 'masonsans-regular';

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    section#page-servicos-how-it-works p {
        color: #4d4d4d;

        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        font-family: 'Open Sans';

        margin-bottom: 26px;
    }

    section#page-servicos-how-it-works a {
        color: #cc8346;

        display: inline-block;
        position: relative;

        margin: 30px 0px 135px;
        padding: 10px 50px 10px 20px;

        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: 'Open Sans';

        border: #cc8346 2px solid;
        border-radius: 25px;
    }

    section#page-servicos-how-it-works a i {
        top: 50%;
        right: 20px;

        font-size: 20px;
        line-height: 18px;
        font-style: normal;
        font-weight: bolder;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    /** hovers ****************************************************************/

    @media (min-width: 992px) {

        section#page-servicos-how-it-works a {
            -webkit-transition: 0.2s ease;
                    transition: 0.2s ease;
        }

        section#page-servicos-how-it-works a:hover {
            padding-left: 30px;
            padding-right: 70px;
        }

    }

/*******************************************************************************
 ** 404 ***********************************************************************/

    section#page-404 {
        margin-top: 50px;
    }

    section#page-404 p {
        color: #4d4d4d;

        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        font-family: 'Open Sans';

        text-align: center;
        margin-bottom: 26px;
    }

    section#page-404 a {
        color: #cc8346;

        display: block;
        position: relative;

        width: 200px;
        margin: 20px auto 40px;
        padding: 10px 50px 10px 20px;

        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        font-family: 'Open Sans';

        border: #cc8346 2px solid;
        border-radius: 25px;
    }

    section#page-404 a i {
        top: 50%;
        right: 20px;

        font-size: 20px;
        line-height: 18px;
        font-style: normal;
        font-weight: bolder;

        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);

        position: absolute;
    }

    /** hovers ****************************************************************/

    @media (min-width: 992px) {

        section#page-404 a {
            -webkit-transition: 0.2s ease;
                    transition: 0.2s ease;
        }

        section#page-404 a:hover {
            width: 220px;
            padding-left: 30px;
            padding-right: 70px;
        }

    }

/*******************************************************************************
 ** RESPONSIVE ****************************************************************/

 @media (max-width: 1199px) {

    header h1 {
        width: 124px;
        height: 124px;
    }

    header nav div a {
        margin: 0px 12px;
        font-size: 16px;
        line-height: 16px;
    }

    header nav div:nth-child(1) {
        margin-right: 165px;
    }

    footer {
        height: 215px;
    }

    footer p {
        font-size: 16px;
        line-height: 25px;
    }

    footer p:last-child {
        font-size: 12px;
    }

    footer .container > img {
        width: 140px;
        margin: 35px 0px;
    }

    footer .container > div {
        margin-top: 60px;
        margin-left: 165px;
    }

    section#banner {
        height: 550px;
    }

    section#banner .circles {
        height: 515px;
    }

    section#page-title .circle,
    section#banner .circles .circle {
        width: 380px;
        height: 380px;
    }

    section#page-title .circle.small,
    section#banner .circles .circle.small {
        width: 300px;
        height: 300px;
    }

    section#banner .owl-carousel p {
        font-size: 32px;
        line-height: 34px;
        letter-spacing: 1px;
    }

    section#intro h2 {
        font-size: 70px;
        line-height: 65px;
    }

    section#intro p {
        font-size: 16px;
        line-height: 21px;
    }

    section#intro a {
        margin: 40px 0px 0px;
        padding: 6px 40px 6px 15px;
        font-size: 16px;
    }

    section#page-404 a,
    section#work-with-us button,
    section#page-contato button,
    section#page-home-empresa a,
    section#page-empresa a,
    section#page-servicos-how-it-works a {
        padding: 6px 40px 6px 15px;
        font-size: 16px;
    }

    section#intro a i,
    section#page-404 a i,
    section#page-home-empresa a i,
    section#page-empresa a i,
    section#work-with-us button i,
    section#page-contato button i,
    section#page-servicos-how-it-works a i {
        right: 12px;
    }

    section#page-contato {
        height: 640px;
    }

    section#page-title h2 {
        font-size: 60px;
        line-height: 60px;
        letter-spacing: 3px;
    }

    section#work-with-us h3,
    section#page-contato h3 {
        font-size: 62px;
        line-height: 50px;
        margin-top: 100px;
    }
    
    section#work-with-us h3 {
        margin-top: 0;
    }

    section#work-with-us p,
    section#page-contato p {
        font-size: 16px;
        line-height: 20px;
    }

    section#page-contato input,
    section#page-contato textarea {
        margin: 0px 0px 10px;
    }

    section#page-servicos {
        height: auto;
        padding: 125px 0px 70px;
    }

    section#page-servicos .item {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 40px;
    }

    section#page-servicos .item img {
        width: 150px;
    }

    section#page-servicos .item strong {
        font-size: 18px;
    }

    section#page-servicos-how-it-works h3 {
        font-size: 65px;
        line-height: 50px;
        margin-top: 100px;
    }

    section#page-servicos-how-it-works ol {
        margin-top: 85px;
        margin-bottom: 50px;
    }

    section#page-servicos-how-it-works ol li {
        font-size: 16px;
        line-height: 20px;
        padding: 15px 0px 15px 90px;
    }

    section#page-servicos-how-it-works ol li span {
        font-size: 45px;
    }

    section#page-404 p,
    section#page-servicos-how-it-works p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 22px;
    }

    section#page-home-empresa h2 {
        padding: 0px 115px;

        font-size: 70px;
        line-height: 62px;

        margin-bottom: 52px;
    }

    section#page-home-empresa h2 small {
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 10px;
    }

    section#page-home-empresa .item {
        padding: 0px 20px;

        font-size: 16px;
        line-height: 20px;

        margin-bottom: 50px;
    }

    section#page-home-empresa .item strong {
        font-size: 22px;
    }

    section#page-home-empresa .item img {
        width: 122px;
    }

    section#page-empresa p,
    section#page-empresa-diferencial p,
    section#page-empresa-conscientizar p {
        font-size: 16px;
        line-height: 22px;
    }

    section#page-empresa h3,
    section#page-empresa-diferencial h3,
    section#page-empresa-conscientizar h3 {
        font-size: 60px;
        line-height: 52px;
    }

}

@media (max-width: 991px) {

    header:after {
        width: 230%;
    }
	
	header nav div {
    	width: 300px;
	}

    header nav div:nth-child(3) {
        right: -20px;
    }

    footer {
        height: 195px;
    }

    footer p {
        font-size: 14px;
    }

    footer p:last-child {
        font-size: 11px;
        margin-top: 5px;
    }

    footer .container > img {
        width: 120px;
    }

    footer .container > div {
        margin-left: 155px;
    }

    section#intro {
        height: 480px;
    }

    section#intro h2 {
        font-size: 65px;
        line-height: 60px;
    }

    section#intro > img {
        left: 60%;
    }

    section#page-title h2 {
        font-size: 50px;
        line-height: 50px;
        margin-top: 75px;
    }

    section#page-contato h3 {
        font-size: 50px;
        line-height: 42px;
        margin-top: 90px;
    }

    section#page-contato p {
        font-size: 14px;
        line-height: 18px;
    }

    section#page-contato input,
    section#page-contato textarea {
        padding: 9px 18px 7px;
        border-radius: 16px;
    }

    section#page-contato textarea {
        height: 85px;
    }

    section#page-contato-map,
    section#page-contato-map iframe {
        height: 400px;
    }

    section#page-servicos .item img {
        width: 130px;
        margin-bottom: 15px;
    }

    section#page-servicos-how-it-works h3 {
        font-size: 60px;
        line-height: 45px;
        margin-top: 80px;
        text-align: center;
    }

    section#page-servicos-how-it-works ol {
        margin: 45px 90px 40px;
    }

    section#page-404 p,
    section#page-servicos-how-it-works p {
        margin-left: 90px;
        margin-right: 90px;
        text-align: center;
    }

    section#page-servicos-how-it-works a {
        width: 300px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 75px;
    }

    section#page-home-empresa h2 {
        padding: 0px 32px;

        font-size: 65px;
        line-height: 58px;

        margin-bottom: 48px;
    }

    section#page-home-empresa h2 small {
        font-size: 23px;
        line-height: 23px;
    }

    section#page-home-empresa .item {
        margin-bottom: 30px;
    }

    section#page-home-empresa .item strong {
        font-size: 20px;
        margin-bottom: 15px;
    }

    section#page-home-empresa .item img {
        width: 110px;
    }

    section#page-empresa {
        padding: 60px 0px;
    }

    section#page-empresa h3,
    section#page-empresa-diferencial h3,
    section#page-empresa-conscientizar h3 {
        font-size: 45px;
        line-height: 45px;
    }

    section#page-empresa p,
    section#page-empresa-diferencial p,
    section#page-empresa-conscientizar p {
        font-size: 14px;
        line-height: 18px;
    }

    section#page-empresa-conscientizar a {
        font-size: 14px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    header {
        height: 135px;
    }

    header:after {
        height: 235px;
    }

    header h1 {
        width: 104px;
        height: 104px;
    }

    header nav {
        z-index: 1;
        position: fixed;

        width: auto;
        height: auto;

        top: 110px;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 80px 0 0;

        -webkit-transition: 0.4s ease;
                transition: 0.4s ease;

        -webkit-transform: translateX(100%);
                transform: translateX(100%);

        background: #ffffff;
    }

    header nav div,
    header nav div:nth-child(3) {
        margin: 0 !important;
        width: 100% !important;

        position: static;
    }

    header nav div a {
        margin: 5px 0px;

        font-size: 18px;
        line-height: 35px;

        display: block;
    }

    header nav div:nth-child(3) a {
        color: #4d4d4d;

        width: auto;
        padding: 0px;

        font-size: 18px;
        line-height: 35px;

        text-align: center;
        background: transparent;

        border-radius: 0px;
    }

    header nav div:nth-child(3) a.ig {
        display: none;
    }

    .menu-toggle {
        z-index: 3;

        top: 31px;
        right: 15px;
        width: 30px;
        height: 4px;

        -webkit-transition: 0.2s ease;
                transition: 0.2s ease;

        position: absolute;
        background-color: #922d1c;
    }

    .menu-toggle:after,
    .menu-toggle:before {
        content: '';

        width: 100%;
        height: 4px;

        display: block;
        position: absolute;

        -webkit-transition: 0.2s ease;
                transition: 0.2s ease;

        background-color: #922d1c;
    }

    .menu-toggle:after { top: -6px; }
    .menu-toggle:before { bottom: -6px; }

    .menu-visible {
        overflow: hidden;
    }

    .menu-visible header nav {
        -webkit-transform: translateX(0%);
                transform: translateX(0%);
    }

    .menu-visible .menu-toggle {
        background: transparent;
    }

    .menu-visible .menu-toggle:after {
        -webkit-transform: translateY(6px) rotate(-45deg);
                transform: translateY(6px) rotate(-45deg);
    }

    .menu-visible .menu-toggle:before {
        -webkit-transform: translateY(-6px) rotate(45deg);
                transform: translateY(-6px) rotate(45deg);
    }

    footer {
        height: auto;
        padding: 30px 0px;
    }

    footer p {
        text-align: center;
        margin-bottom: 10px;
    }

    footer p i {
        margin-left: 0px !important;
    }

    footer p span.hidden {
        display: block !important;
    }

    footer .container > img {
        width: 120px;
        float: none;
        margin: auto;
        display: block;
    }

    footer .container > div {
        margin: 30px 10px 110px;
    }

    footer:after,
    footer:before {
        top: 335px;
        right: -30px;
        width: 800px;
        height: 930px;
    }

    footer:before {
        top: 370px;
        width: 720px;
    }

    section#banner {
        height: 350px;
        margin-top: -40px;
    }

    section#banner:after {
        display: none;
    }

    section#banner .circles {
        height: 265px;
    }

    section#page-title .circle,
    section#banner .circles .circle {
        width: 240px;
        height: 240px;
    }

    section#page-title .circle.small,
    section#banner .circles .circle.small {
        width: 180px;
        height: 180px;
    }

    section#banner.inactive .circles .circle {
        left: 130px !important;
    }

    section#banner .owl-carousel {
        top: 0px;
    }

    section#banner .owl-carousel p {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

    section#banner .owl-carousel .owl-dots {
        top: auto;
        bottom: 0px;
    }

    section#banner .owl-carousel .owl-dots button {
        clear: none;
        float: none;

        width: 12px;
        height: 12px;
        margin: 0px 2px;

        display: inline-block;
    }

    section#banner .owl-carousel .owl-dots button.active:after {
        width: 6px;
        height: 6px;
        margin: 1px;
    }

    section#intro {
        text-align: center;
    }

    section#intro > img,
    section#page-contato > img {
        display: none;
    }

    section#intro .container {
        width: 100%;
    }

    section#intro h2 {
        font-size: 45px;
        line-height: 40px;
        text-align: center;
    }

    section#intro p {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    section#intro a {
        margin: 40px auto 0px;
    }

    section#page-title {
        left: -50%;
        width: 200%;
        height: 220px;
    }

    section#page-title h2 {
        margin-top: 90px;

        font-size: 30px;
        line-height: 30px;

        letter-spacing: 2px;
    }

    section#page-contato h3 {
        margin-top: 85px;

        font-size: 42px;
        line-height: 36px;

        text-align: center;
    }

    section#page-contato p {
        text-align: center;
    }

    section#page-contato form {
        margin-right: 0px;
    }

    section#page-servicos {
        padding: 95px 0px 50px;
    }

    section#page-servicos .item {
        padding: 0px 30px;
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 30px;
    }

    section#page-servicos .item img {
        width: 100px;
    }

    section#page-servicos .item strong {
        font-size: 16px;
    }

    section#page-servicos-how-it-works h3 {
        font-size: 40px;
        line-height: 35px;
        margin-top: 60px;
    }

    section#page-servicos-how-it-works ol {
        margin: 35px 10px 40px;
    }

    section#page-servicos-how-it-works ol li {
        font-size: 14px;
        line-height: 16px;
        padding: 15px 0px 15px 70px;
    }

    section#page-404 p,
    section#page-servicos-how-it-works p {
        margin-left: 5px;
        margin-right: 5px;

        font-size: 14px;
        line-height: 18px;

        margin-bottom: 20px;
    }

    section#page-servicos-how-it-works a {
        margin-bottom: 55px;
    }

    section#page-home-empresa {
        padding: 55px 0px 70px;
    }

    section#page-home-empresa h2 {
        padding: 0px;

        font-size: 38px;
        line-height: 38px;
    }

    section#page-home-empresa h2 small {
        font-size: 18px;
        line-height: 18px;
    }

    section#page-home-empresa .item {
        font-size: 14px;
        margin-bottom: 30px;
    }

    section#page-home-empresa .item strong {
        font-size: 18px;
        margin-bottom: 10px;
    }

    section#page-home-empresa .item img {
        width: 100px;
    }

    section#page-empresa {
        padding: 30px 0px;
    }

    .fix-height {
        height: auto !important;
    }

    section#page-empresa p,
    section#page-empresa-diferencial p,
    section#page-empresa-conscientizar p {
        padding: 0px;
        text-align: center;

        -webkit-transform: none;
                transform: none;

        position: static;
    }

    section#page-empresa h3,
    section#page-empresa-diferencial h3,
    section#page-empresa-conscientizar h3 {
        padding: 0px;
        font-size: 40px;
        line-height: 35px;

        -webkit-transform: none;
                transform: none;

        position: static;
        text-align: center;
    }

    section#page-empresa h3 {
        margin-top: 30px;
    }

    section#page-empresa-diferencial h3,
    section#page-empresa-conscientizar h3 {
        margin-bottom: 30px;
    }

    section#page-empresa-conscientizar a {
        width: 305px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 424px) {

    section#banner .owl-carousel img {
        width: auto;
        height: 100%;
    }

}
