/*--------------------------------------------------
Comum/Reset
---------------------------------------------------*/

html,
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-family: 'Open Sans', sans-serif;
}

a {
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.anima {
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

:focus {
    text-decoration: none
}

.nopadding {
    padding: 0;
}

ul {
    list-style: none;
    padding-left: 0
}

.noselect,
.noselect * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noselect,
.noselect img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.all-wrap {
    min-height: calc(100vh - 125px);
}


/*--------------------------------------------------
Alinhamento do texto
---------------------------------------------------*/

.text-left-not-xs,
.text-left-not-sm,
.text-left-not-md,
.text-left-not-lg {
    text-align: left;
}

.text-center-not-xs,
.text-center-not-sm,
.text-center-not-md,
.text-center-not-lg {
    text-align: center;
}

.text-right-not-xs,
.text-right-not-sm,
.text-right-not-md,
.text-right-not-lg {
    text-align: right;
}

.text-justify-not-xs,
.text-justify-not-sm,
.text-justify-not-md,
.text-justify-not-lg {
    text-align: justify;
}

@media (max-width: 767px) {
    .text-left-not-xs,
    .text-center-not-xs,
    .text-right-not-xs,
    .text-justify-not-xs {
        text-align: inherit;
    }
    .text-left-xs {
        text-align: left;
    }
    .text-center-xs {
        text-align: center;
    }
    .text-right-xs {
        text-align: right;
    }
    .text-justify-xs {
        text-align: justify;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .text-left-not-sm,
    .text-center-not-sm,
    .text-right-not-sm,
    .text-justify-not-sm {
        text-align: inherit;
    }
    .text-left-sm {
        text-align: left;
    }
    .text-center-sm {
        text-align: center;
    }
    .text-right-sm {
        text-align: right;
    }
    .text-justify-sm {
        text-align: justify;
    }

    .lgpd-wrapper p{
        width: 100%;
        float: none;
        margin-left: 0;
    }
    
    .lgpd-wrapper .button-wrapper{
        width: 100%;
        float: none;
        height: 60px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .text-left-not-md,
    .text-center-not-md,
    .text-right-not-md,
    .text-justify-not-md {
        text-align: inherit;
    }
    .text-left-md {
        text-align: left;
    }
    .text-center-md {
        text-align: center;
    }
    .text-right-md {
        text-align: right;
    }
    .text-justify-md {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .text-left-not-lg,
    .text-center-not-lg,
    .text-right-not-lg,
    .text-justify-not-lg {
        text-align: inherit;
    }
    .text-left-lg {
        text-align: left;
    }
    .text-center-lg {
        text-align: center;
    }
    .text-right-lg {
        text-align: right;
    }
    .text-justify-lg {
        text-align: justify;
    }
}


/*--------------------------------------------------
PRELOADER
---------------------------------------------------*/

#preloader {
    background-color: #fff;
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 80px;
    width: 80px;
    margin-top: -40px;
    margin-left: -40px;
}

.preloader-inner:before {
    content: "";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    border: 1px solid #428a38;
    border-top: 1px solid transparent;
    border-radius: 100%;
}

.preloader-inner>.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-animation: wink 1s ease-in-out infinite alternate;
    animation: wink 1s ease-in-out infinite alternate;
    height: 50px;
    width: 21.2px;
    margin-top: -25px;
    margin-left: -10.6px;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes wink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*--------------------------------------------------
HEADER
---------------------------------------------------*/

#header nav.navbar {
    background: #fff none repeat scroll 0 0;
    border-bottom: medium none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
}

#header .navbar-header a.navbar-brand {
    height: auto;
    padding: 0;
}

#header .navbar-header a.navbar-brand img.logo {
    width: 210px;
    margin: 10px 0;
}

#header #navbar-menu ul.nav.navbar-nav {
    margin-top: 40px;
}

#header .navbar.bootsnav.sticked #navbar-menu ul.nav.navbar-nav {
    margin-top: 0
}

#header nav.navbar.bootsnav.sticked a.navbar-brand img.logo {
    width: 105px;
}

#header #navbar-menu li a {
    background: rgba(0, 0, 0, 0) url("../img/menu-separater.jpg") no-repeat scroll right center;
    color: #505050;
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
    padding: 20px 10px;
    position: relative;
    text-align: center;
}

#header #navbar-menu li:last-child a {
    background: none
}

#header #navbar-menu li a:hover,
#header #navbar-menu li a:focus,
#header #navbar-menu li.active a {
    color: #43A047
}

#header #navbar-menu ul.dropdown-menu {
    border-top: 1px solid #e0e0e0;
    margin-top: -15px;
}

#header #navbar-menu ul.dropdown-menu li a:hover {
    color: #43A047
}


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

#foot {
    background: #428a38;
}

#foot .block {
    padding: 5px 0;
}

#foot .block p.copyright {
    color: #fff;
    font-size: 12px;
    margin: 10px 0 0;
}

#foot .block p.copyright span {
    color: #12240F
}

#foot .block .totop {
    color: #12240F;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    display: block;
}

#foot a svg {
    display: block;
    margin: 2px auto;
    width: 121px;
}

#foot .cor1,
#foot .cor2,
#foot .cor3 {
    fill: #f5f5f5;
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

#foot .block a svg:hover .cor1 {
    fill: #414042;
}

#foot .block a svg:hover .cor2 {
    fill: #808080;
}

#foot .block a svg:hover .cor3 {
    fill: #F26722;
}


/*--------------------------------------------------
SOCIAL SHARE
---------------------------------------------------*/

.social-btns {
    text-align: center;
}

.social-btns li {
    margin: 5px;
    display: inline-block;
    vertical-align: top;
}

.social-btn-dissolve {
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 42px;
    line-height: 42px;
    position: relative;
    text-align: center;
    width: 42px;
}

.social-btn-dissolve:hover {
    color: #fff;
}

.social-btn-dissolve:hover::before {
    opacity: 0;
    transform: scale(1.35);
    transition: all 0.5s linear 0s;
}

.social-btn-dissolve::before {
    background: inherit;
    border-radius: 50%;
    content: " ";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transition: none 0s ease 0s;
    width: 100%;
}

#pg-atuacao .row.atuacoes .col-md-6:nth-child(odd) {
    clear: left;
}