/*

-
align-self-center


|
justify-content-center

*/
    
body {
    background-color: #f7f7f7;
    color: #666666;
    font-family: 'Open Sans', sans-serif;
}

a {
    color: #ac2a31;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #dabb54;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #dabb54;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    border-radius: 50%;
    left: 15px;
    bottom: 15px;
    transition: background 0.5s;
        -webkit-transition: background 0.5s;
        -moz-transition: background 0.5s;
        -o-transition: background 0.5s;
        -ms-transition: background 0.5s;
    padding-top: 10px;
    z-index: 11;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #dabb54;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
        -webkit-animation: animate-preloader 1s linear infinite;
        -moz-animation: animate-preloader 1s linear infinite;
        -o-animation: animate-preloader 1s linear infinite;
        -ms-animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
    }

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
    }

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

/*Barra de contato*/

#direct-bar {
    height: 35px;
    width: 100%;
    position: absolute;
    top: 20;
    left: 0;
    position: fixed;
    background-color: #000000;
    text-align: le;
    border-bottom: 1px solid #79682f;
    z-index: 999;
    padding-top: 4px;
}

#direct-bar i {
    margin: 0 5px 0 5px;
    font-size: 16px;
    
}

#direct-bar span {
    font-weight: 700;
}

#direct-bar a {
    color: #dabb54;
    font-size: 15px;  
}

#direct-bar p {
    color: #dabb54;
    font-size: 15px;
    padding-top: 4px;
}

#direct-bar a:hover {
    color: #ba9414;
}

/*-- #Menu --*/
/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

.nav-menu .social-menu {
    font-size: 20px;
}

/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}

@media (min-width: 1024px) {
    #nav-menu-container {
        padding-right: 0px;
    }
}

.nav-menu-hr {
    margin: 5px 15px;
    border-color: rgba(255,255,255,0.5)
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 18px 8px 18px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #dabb54;
    border-bottom: 3px solid #dabb54;
    padding-bottom: 25px;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -ms-transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -ms-transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover > a {
    color: #dabb54;
}

.nav-menu ul ul {
    margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 45px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -o-transition: all 0.4s;
        -ms-transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

#mobile-nav-toggle i {
    color: #b9b9b9;
}

#mobile-nav i {
    margin-right: 10px;
    padding: auto;
    min-width: 14px;
}

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: #000000;
    left: -275px;
    width: 275px;
    overflow-y: auto;
    transition: 0.4s;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -o-transition: 0.4s;
        -ms-transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 8px 0 8px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
}

#mobile-nav ul li a:hover {
    color: #d15359;
}

#mobile-nav ul .submenu {
    padding-left: 20px;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #dabb54;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #dabb54;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

#header .dropdown a {
    display: block;
}

#header .dropdown-item {
    padding: 10px;
}

#header .dropdown-item:hover {
    color: #fff;
    background-color: #656c71;
}

/* Nav Menu Arrows */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 22px 0;
    height: 100px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    position: fixed;
    left: 0;
    top: 35px;
    right: 0;
    transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
    z-index: 997;
}

@media (max-width: 768px) {
    #header {
        top: 15px;
    }
}

#header.header-scrolled {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.2);
    padding: 12px 0 0 0;
    height: 80px;
    transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -ms-transition: all 0.5s;
}

@media (max-width: 768px) {
    #header.header-scrolled {
        padding: 22px 0 10px 0;
        height: 100px;
    }
}

#header #logo {
    float: left;
}

#header .logo {
    position: absolute;
    height: 55px;
}

@media (max-width: 768px) {
    #header .logo {
        position: absolute;
        top: 14px;
        left: calc(50% - 72px);
    }
}

.logo-menu {
    height: 70px;
    padding: 10px 0 15px 15px;
/*    margin-bottom: 15px;*/
}

#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #header #logo img {
        margin-top: 16px;
    }

    #header #logo h1 {
        font-size: 28px;
    }
}

/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/*-- # Institucional --*/

#intro {
    display: table;
    width: 100%;
    height: 100vh;
    max-height: 650px;
    background: #fff;
}

    @media (max-width: 786px) {
        #intro {
            height: 90%;
        }
    }

#intro .carousel-indicators .active {
    display: none;
}

#intro .carousel-item {
    width: 100%;
    height: 100vh;
    max-height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 576px) {
    #intro {
        max-height: 550px;
    }

    #intro .carousel-item {
        max-height: 550px;
    }
}

#intro .carousel-item::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .carousel-background img {
    max-width: 100%;
}

#intro .carousel-content {
    width: 100%;
    padding: 25px 15%;
    bottom: 0;
    position: absolute;
}

@media (max-width: 576px) {
    #intro .carousel-content {
        width: 100%;
        padding: 25px;
    }
}

#intro h2 {
    /*    text-transform: uppercase;*/
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media (max-width: 576px) {
    #intro h2 {
        font-size: 31px;
    }
}

@media (min-width: 577px) {
    #intro h2 {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    #intro h2 {
        font-size: 50px;
    }
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #intro p {
        width: 60%;
    }
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
        -webkit-transition-property: opacity;
        -moz-transition-property: opacity;
        -o-transition-property: opacity;
        -ms-transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -o-transition: 0.5s;
        -ms-transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    width: 10% !important;
}

@media (min-width: 1024px) {

    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -o-transition: 0.5s;
        -ms-transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #dabb54;
}

#intro .btn-get-started:hover {
    background: #fff;
    color: #dabb54;
}

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 52px;
    color: #dabb54;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 45px;
    letter-spacing: -2px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 40%;
    height: 1px;
    background: none;
    bottom: 10px;
    left: calc(50% - 20%);
    border-bottom: 3px dotted #e0e0e0;
}

/*
.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 22px;
    height: 22px;
    background: #dabb54;
    bottom: -8px;
    left: calc(50% - 11px);
    border-radius: 15px 15px 0 15px;
}
*/

#about .section-header p {
    text-align: justify;
    color: #333;
    text-indent: 50px;
}

/* Section with background */

.section-bg {
    background: #f7f7f7;
}

.modal p {
    text-align: justify;
    margin-bottom: 0;
}

.modal h3 {
    color: #dabb54;
    font-weight: 700;
}

.modal h4 {
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}

.modal span {
    color: #adadad;
    font-weight: 700;
}


/* spotlight
--------------------------------*/

#spotlight {
    background: url(../img/spotlight.jpg) fixed center center;
    background-size: cover;
    border-top: 10px double #000;
    padding: 18vh 0;
    height: 80vh;
    position: relative;
    overflow: hidden;
    transform: skew(0deg, 2deg) translateY(-40px);
        -webkit-transform: skew(0deg, 2deg) translateY(-40px);
        -moz-transform: skew(0deg, 2deg) translateY(-40px);
        -o-transform: skew(0deg, 2deg) translateY(-40px);
        -ms-transform: skew(0deg, 2deg) translateY(-40px);
    transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
}



#spotlight span {
    font-weight: 700;
    color: #000;
}

@media (max-width: 768px) {
    #spotlight h3 {
        padding-right: 0px!important;
        padding: 1vh 0;
    }
}

@media (max-width: 767px) {
    #spotlight {
        background-size: 100% !important;
        background: url(../img/spotlight_v.jpg) no-repeat center center; 
    }
}

#spotlight h3 {
    color: #4e3c00;
    font-size: 52px;
    letter-spacing: -3px;
    font-weight: 100;
    padding-right: 100px;
    text-align: right;
    transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -ms-transition: all .3s;
}

#spotlight h3:hover {
    transform: scale(1.04);
        -webkit-transform: scale(1.04);
        -moz-transform: scale(1.04);
        -o-transform: scale(1.04);
        -ms-transform: scale(1.04);
}

@media (max-width: 768px) {
    #spotlight h3 {
        font-size: 42px;
        letter-spacing: -2px;
    }
}

@media (max-width: 576px) {
    #spotlight h3 {
        font-size: 30px;
        letter-spacing: -2px;
        padding: 30px 0;
    }
}

#spotlight img {
    margin-top: 60px;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.5));
}

    @media (max-width: 768px) {
        #spotlight img {
            margin-top: 60px;
        }
    }

    @media (max-width: 576px) {
        #spotlight img {
            margin-top: 80px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
        }
    }

#spotlight p {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}

#spotlight ul {
    color: #fff;
    text-align: left;
    font-size: 16px;
    margin-bottom: 0;
}

#spotlight .cta-btn {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#spotlight .cta-btn:hover {
    background: #dabb54;
    border: 2px solid #dabb54;
}

/* about --*/

#about {
    padding: 70px 0 40px 0;
/*    background: #f7f7f7;*/
    background: #000;
    transform: skew(0deg, 2deg) translateY(-40px);
        -webkit-transform: skew(0deg, 2deg) translateY(-40px);
        -moz-transform: skew(0deg, 2deg) translateY(-40px);
        -o-transform: skew(0deg, 2deg) translateY(-40px);
        -ms-transform: skew(0deg, 2deg) translateY(-40px);
    transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
}

@media (max-width: 576px) {
    #about {
        padding: 50px 0 30px 0;
    }
    
    #about .row h1 {
        text-align: center;
        font-size: 46px;
    }
    
    #about .row .h22 {
        text-align: left!important;
    }
    
    #about p {
        margin-bottom: 0;
        text-align: justify
    }
}

#about .container {
    position: relative;
    z-index: 10;
}

#about .row {
    text-align: left;
    margin: 30px 0 50px 0;
}

#about .row h2 {
    font-size: 44px;
    letter-spacing: -2px;
    margin-bottom: 15px;
    color: #dabb54;
}

#about .row .h22 {
    text-align: right;
}

#about img {
    border-radius: 50%;
    border: 3px solid #dabb54;
    padding: 4px;
    transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -ms-transition: all .3s;
}

#about img:hover {
    transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
}

@media (max-width: 768px) {
    #about img {
        margin-bottom: 25px;
    }
}

#about h1 {
    text-align: left;
    color: #dabb54;
    letter-spacing: -3px;
    font-weight: 100;
    font-size: 54px;
    margin: 0 0 26px 0;
    padding: 10px 0 30px 0;
    border-bottom: 3px dotted #bbb;
}

#about span {
    font-weight: 700;
}

#about .cinza {
    color: #656c71;  
}

#about p {
    font-size: 16px;
    line-height: 24px;
    color: #898989;
}

#about .h2, .p2 {
    text-align: right;
}

#about hr {
    border-top: 1px solid #656c71;
    padding-bottom: 30px;
}

.gps a {
    color: #fff;
}

/*services*/

#services {
    background: #fff;
    padding: 150px 0 40px 0;
    text-align: center;
    transform: skew(0deg, 2deg) translateY(-40px);
        -webkit-transform: skew(0deg, 2deg) translateY(-40px);
        -moz-transform: skew(0deg, 2deg) translateY(-40px);
        -o-transform: skew(0deg, 2deg) translateY(-40px);
        -ms-transform: skew(0deg, 2deg) translateY(-40px);
}

@media (max-width: 768px) {
    #services {
        
    }
}

@media (max-width: 576px) {
    #services {
        padding-bottom: 0;
    }
    
    #services img {
        margin: 0 0 20px 0!important;
    }
}

#services .container {
    transform: skew(0deg, -2deg) translateY(-60px);
        -webkit-transform: skew(0deg, -2deg) translateY(-60px);
        -moz-transform: skew(0deg, -2deg) translateY(-60px);
        -o-transform: skew(0deg, -2deg) translateY(-60px);
        -ms-transform: skew(0deg, -2deg) translateY(-60px);
}

#services img {
    border-radius: 5px;
    border: 1px solid #000;
    padding: 4px;
    transition: all .3s;
}

#services img:hover {
    transform: scale(1.07);
}

#services p {
    text-align: justify
}

#services h2 {
    font-size: 24px;
    color: #656c71;
    font-weight: 700;
    margin-top: 16px;
    text-align: left;
}

/*CONTACT*/

#contact {
    padding: 0 0 60px 0;
    margin-top: 60px;
}

#contact .contact-info {
    text-align: center;
}

#contact .contact-info p {
    line-height: 150%;
    padding-bottom: 10px;
}

#contact p {
    text-align: center;
    font-size: 15px;
}

#contact .contact-info i {
    font-size: 52px;
    display: inline-block;
    color: #dabb54;
    margin-bottom: 15px;
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

#contact h4 {
    font-size: 22px;
    margin-bottom: 35px;
    color: #656565 !important;
    text-align: center;
}

#contact .contact-info i {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

#contact .contact-info i:hover {
    transform: scale(1.04);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
}

#contact .contact-info a:hover {
    color: #dabb54;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}

@media (min-width: 768px) {

    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 0 0 10px 0;
    }
}

#contact .form #sendmessage {
    color: #dabb54;
    border: 1px solid #dabb54;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    padding: 8px 14px;
    border-radius: 5px;
    box-shadow: none;
    font-size: 16px;
    border-top: 1px;
    border-left: 1px;
    border-right: 1px;
}

#contact .form button[type="submit"] {
    
    border: 1px solid #dedede;
    border-radius: 50px;
    padding: 10px 30px;
    color: #000;
    transition: 0.4s;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}

#contact .form button[type="submit"]:hover {
    background: #dabb54;
    color: #fff;
    border: 1px solid #dabb54;
}

.btn-contato {
    border-radius: 50px !important;
}

@media (min-width: 768px) {

    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 0 0 10px 0;
    }
}

/*LOCATION*/

#location {
    margin: 0;
    padding: 0;
}

#location .container-fluid {
    padding: 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 2px solid #b7b7b7;
}

/*Footer*/

footer {
    background-color: #ddd;
    padding: 25px 0;
    text-align: left;
}

@media (max-width: 767px) {
    footer {
        text-align: center;
    }
}

footer span.copyright {
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    display: inline-flex;
    line-height: 100%;
}

footer p {
    margin: 10px 0 5px 0;
    font-size: 9px;
    text-align: right
}

@media (max-width: 767px) {
    footer p {
        margin: 35px 0 5px 0;
        text-align: center;
    }
}

footer .footer-logo {
    width: 125px;
    margin-right: 20px;
    padding-top: 10px;
}

footer .logo-mediatom {
    width: 40px;
}

footer p.logo-img {
    margin: 0;
}


/* Whatsapp-btn */
.whatsapp-btn {
    position: fixed;
    background: #4fac68;
    color: #fff;
    width: 70px;
    height: 46px;
    line-height: 1;
    font-size: 25px;
    border-radius: 50px 0 0 50px;
    right: -10px;
    bottom: 50px;
    transition: all 0.3s;
    padding: 10px 0 10px 20px;
    z-index: 11;
    text-transform: uppercase
}

.whatsapp-btn:hover {
    color: #fff;
    right: 0px;
    padding: 10px 0 10px 20px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        position: fixed;
        /*        background: #4fac68;*/
        color: #fff;
        width: 60px;
        height: 46px;
        line-height: 1;
        font-size: 25px;
        border-radius: 50px 0 0 50px;
        right: -215px;
        bottom: 30px;
        transition: all 0.3s;
        padding: 10px 0 10px 20px;
        z-index: 11;
        font-weight: 900;
        text-transform: uppercase
    }
}

.whatsapp-btn i {
    color: #fff;
    font-size: 30px;
}

.space30 {
    padding: 30px 0;
}

.space30-top {
    padding: 30px 0 0 0;
}

.space15 {
    padding: 30px 0;
}

.scroll-anchor {
    position: relative;
    top: -34px;
}