/* Variaveis */
html {
    overflow-x: hidden;
}

body {
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Helvetica", sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #444;
    line-height: 1.5;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    font-family: "Helvetica Bold", sans-serif;
}

h5 {
    font-weight: 400;
    font-family: "Helvetica", sans-serif;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 0.8rem;
}

a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: #073B5B;
}

a:hover {
    text-decoration: none;
    color: #c00;
}

a:focus {
    outline: none;
    color: #c00;
}

p {
    font-weight: 400;
    font-family: "Helvetica", sans-serif;
    margin: 6px 0;
    font-size: 16px;
}

ul {
    list-style: outside none none;
    list-style: decimal inside;
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

ol li {
    font-size: 0.9em;
    padding: 0;
}

.vertical-center {
    min-height: 100%;
    /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh;
    /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}

.hero-heading {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    line-height: 70px;
    letter-spacing: 0.1rem;
}

.hero-sub-heading {
    font-size: 20px;
    font-weight: 400;
    color: #e6e6e6;
    line-height: 45px;
    letter-spacing: 0.1rem;
}

section {
    padding: 45px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title-header p {
    text: center;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 36px;
}

.section-title {
    font-size: 36px;
    color: #444;
    line-height: 52px;
    padding-bottom: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
}

.section-title:before {
    position: absolute;
    content: "";
    left: 15px;
    bottom: 8px;
    width: 48px;
    height: 1px;
    background-color: #073B5B;
}

.section-title:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 2px;
    width: 48px;
    height: 1px;
    background-color: #073B5B;
}

.section-title:after,
.section-title:before {
    left: 50%;
    margin-left: -45px;
}

.section-title:after {
    margin-left: -30px;
}

.section-subcontent {
    font-size: 16px;
    text: center;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 36px;
}

.section-sub {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 52px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.section-sub:before {
    position: absolute;
    content: "";
    height: 1px;
    width: 45px;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #073B5B;
}

.bg-white {
    background-color: #fff;
}

.bg-verm-shock {
    background-color: #c00;
}

.bg-cinza-branco {
    background-color: #f7f7f7;
}

.bg-cinza-claro {
    background-color: #ccc;
}

.bg-cinza-medio {
    background-color: #777;
}

.bg-cinza-esc,
.bg-dark {
    background-color: #444;
}

.bg-cinza-preto {
    background-color: #222;
}

.bg-cor-altern {
    background-color: #070;
}

.bg-cor-aluminio {
    background-color: #677378;
}

.bg-cor-cobre {
    background-color: #be5715;
}

.bg-cor-latao {
    background-color: #c39203;
}

.bg-cor-bronze {
    background-color: #8a784a;
}

.bg-cor-fitas {
    background-color: #070;
}

.subtitle {
    font-size: 15px;
    margin-top: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.inner-title {
    font-size: 24px;
    font-weight: 700;
    text-tranform: capitalize;
}

.page-tagline {
    font-size: 24px;
    font-weight: 400;
    color: #ddd;
}

.page-title {
    font-size: 62px;
    font-weight: 700;
    color: #fff;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.18);
}

b,
strong {
    font-weight: 600;
}

.text-primary {
    color: #444 !important;
}

.text-secondary {
    color: #777 !important;
}

.text-success {
    color: #070 !important;
}

.text-danger {
    color: #073B5B !important;
}

.text-warning {
    color: #c39203 !important;
}

text-dark {
    color: #444 !important;
}

.btn {
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    display: inline-block;
}

.btn i {
    margin-right: 5px;
}

.btn:active,
.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn-common {
    background-color: #073B5B;
    position: relative;
    z-index: 1;
    color: #fff;
}

.btn-common:hover {
    color: #000;
    background: #f50057;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.btn-border {
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
}

.btn-border:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 12px 34px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-rm {
    padding: 7px 10px;
    text-transform: capitalize;
}

button:focus {
    outline: none !important;
}

.btn-primary {
    background-color: #073B5B;
    border-color: #073B5B;
}

/*button-reveal*/
.button-reveal {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    margin: 11px 0 0;
    background-color: #073B5B;
    overflow: hidden;
    padding: 0 28px;
}

.btn-sm {
    height: 34px;
    line-height: 34px;
    padding: 0 17px;
}

.button-reveal i {
    display: block;
    position: absolute;
    top: 0;
    left: -32px;
    width: 32px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0;
    border-radius: 3px 0 0 3px;
}

.button-reveal span {
    display: inline-block;
    position: relative;
    left: 0;
    font-weight: 700;
}

.button-reveal i,
.button-reveal span {
    -webkit-transition: left 0.3s ease, right 0.3s ease;
    -o-transition: left 0.3s ease, right 0.3s ease;
    transition: left 0.3s ease, right 0.3s ease;
}

.button-reveal.btn-sm {
    padding: 0 22px;
}

.button-reveal.btn-sm i {
    left: -26px;
    width: 26px;
    height: 34px;
    line-height: 34px;
}

.button-reveal:hover {
    background-color: #444;
}

.button-reveal:hover i {
    left: 0;
}

.button-reveal:hover span {
    left: 16px;
}

.button-reveal.btn-sm:hover span {
    left: 13px;
}

.btn-common:hover {
    background: #c00;
}

.icon-check,
.icon-close {
    color: #073B5B;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* ScrollToTop */
a.back-to-top {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 120px;
    text-decoration: none;
    z-index: 77777;
}

a.back-to-top i {
    display: block;
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #073B5B;
    border-radius: 0;
    text-align: center;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

a.back-to-top:focus,
a.back-to-top:hover {
    text-decoration: none;
}

#preloader {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    opacity: 0.8;
}

.sk-circle {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    top: 45%;
    position: relative;
}

.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-circle .sk-child:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #073B5B;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {

    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {

    0%,
    100%,
    80% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.section-padding {
    padding: 60px 0;
}

.no-padding {
    padding: 0 !important;
}

.padding-left-none {
    padding-left: 0;
}

.padding-right-none {
    padding-right: 0;
}

#page-banner-area {
    background-position: 50% 50%;
    background-size: cover;
}

.page-banner {
    position: relative;
    min-height: 250px;
    color: #fff;
}

.page-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.page-banner .page-banner-title {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
}

.page-banner .page-banner-title h2 {
    color: #fff;
    font-size: 40px;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

#white-bg {
    background: #fff;
}

.figure-zoom {
    overflow: hidden;
    display: inline-block;
}

.figure-zoom img {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.figure-zoom img:hover {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

@media (min-width: 768px) and (max-width: 991.98px) {
    h2 {
        font-size: 2rem;
    }

    section {
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {

    table th,
    table td {
        font-size: 0.8em !important;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

.navbar-brand {
    position: relative;
    padding: 0;
    max-width: 320px;
    min-width: 100px;
    margin-right: 0;
}

.navbar-brand img {
    margin: 2px 2px 2px 0;
}

.scrolling-navbar:not(.top-nav-collapse) {
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

.scrolling-navbar:not(.top-nav-collapse) .navbar-brand {
    display: none;
}

#header-wrap .toplinks {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    background: #f7f7f7;
    background: linear-gradient(90deg, #f7f7f7 20%, #d2d7d9 70%);
}

#header-wrap .toplinks .nav {
    margin-top: 20px;
}

#header-wrap .toplinks .navbar-brand {
    padding: 4px 0;
}

#header-wrap .toplinks ul {
    flex-wrap: nowrap;
}

#header-wrap .toplinks li {
    padding: 16px 8px;
    display: inline-block;
}

#header-wrap .toplinks a {
    color: #000;
    font-weight: 700;
    font-size: 13px;
}

#header-wrap .toplinks a:hover {
    color: #c00;
}

#header-wrap #logo img {
    width: auto;
    -webkit-transition: height 0.4s ease, opacity 0.3s ease;
    -o-transition: height 0.4s ease, opacity 0.3s ease;
    transition: height 0.4s ease, opacity 0.3s ease;
}

.top-nav-collapse {
    height: 65px;
    z-index: 77777;
    top: 0px !important;
    min-height: 58px;
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background: #fff !important;
}

.top-nav-collapse .navbar-nav .nav-link {
    color: #444 !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
    color: #c00 !important;
}

.top-nav-collapse .navbar-brand {
    top: 2px;
    display: inline-block;
    padding: 0;
    position: relative;
    max-width: 150px;
    margin-left: -50%;
}

.top-nav-collapse .navbar-nav li.active a.nav-link {
    color: #073B5B !important;
    white-space: nowrap;
}

.indigo {
    background: transparent;
}

.navbar-expand-md .navbar-nav .nav-link {
    color: #444;
    padding: 0 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 35px;
    text-transform: uppercase;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

body:not(.tempainel) .navbar-expand-md .navbar-nav .nav-link {
    color: #222;
}

.navbar-expand-md .navbar-nav li>a:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background: #fff;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.1s;
    -moz-transition: -webkit-transform 0.1s;
    transition: transform 0.1s;
}

.navbar-expand-md .navbar-nav .active a:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.navbar-expand-md .navbar-nav li a:hover,
.navbar-expand-md .navbar-nav li .active>a,
.navbar-expand-md .navbar-nav li a:focus {
    color: #073B5B;
    outline: none;
}

.navbar-expand-md .navbar-nav .nav-link:focus,
.navbar-expand-md .navbar-nav .nav-link:hover {
    color: #073B5B !important;
}

.navbar {
    padding: 0;
}

.navbar li.active a.nav-link {
    color: #073B5B !important;
    font-weight: 600;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 99;
    min-width: 210px;
    background-color: #fff;
    white-space: nowrap;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    animation: fadeIn 0.4s;
    -webkit-animation: fadeIn 0.4s;
    -moz-animation: fadeIn 0.4s;
    -o-animation: fadeIn 0.4s;
    -ms-animation: fadeIn 0.4s;
}

.dropdown-menu:not(.navbar):before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 100%;
    left: 20%;
    margin-left: -5px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #f5f5f5;
}

.dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    color: #212121;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    display: inline-block;
    float: left;
    clear: both;
    position: relative;
    outline: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.dropdown .dropdown-menu .dropdown-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.dropdown .dropdown-item:focus,
.dropdown .dropdown-item:hover,
.dropdown .dropdown-item.active {
    color: #073B5B;
}

.dropdown-item.active,
.dropdown-item:active {
    background: transparent;
}

.fadeInUpMenu {
    -webkit-animation-name: fadeInUpMenu;
    animation-name: fadeInUpMenu;
}

.slicknav_btn {
    border-color: #073B5B;
}

.slicknav_menu .slicknav_icon-bar {
    background: #073B5B;
}

.navbar-toggler {
    display: none;
}

.mobile-menu {
    display: none;
}

.slicknav_menu {
    display: none;
}

#top-search {
    margin: 0 0 0 15px;
}

#top-search #top-search-trigger {
    display: inherit;
}

#top-search #top-search-close {
    display: none;
}

#top-search a i {
    color: #444;
    top: 0;
    left: 0;
}

#top-search form {
    opacity: 0;
    display: none;
    background-color: #fff;
    height: 100% !important;
    padding: 0px 15px;
    margin: 0;
    margin-right: 100px !important;
    top: 0;
    left: 0;
}

#top-search form input {
    box-shadow: none !important;
    border-radius: 0;
    border: 0;
    outline: 0 !important;
    font-size: 22px;
    padding: 14px 80px 14px 30px;
    height: 100%;
    width: 100%;
    background-color: transparent;
    color: #333;
    font-weight: 700;
    margin-top: 0 !important;
    font-family: "Helvetica Bold", sans-serif;
    letter-spacing: 2px;
}

#top-search form input::-webkit-input-placeholder {
    color: #777;
}

#top-search form input:-ms-input-placeholder {
    color: #777;
}

#top-search form input::placeholder {
    color: #777;
}

body.top-search-open ul.navbar-nav {
    display: none;
}

body.top-search-open .navbar-header {
    display: none;
}

body.top-search-open #top-search {
    width: 100% !important;
}

body.top-search-open #top-search #top-search-trigger {
    display: none;
}

body.top-search-open #top-search #top-search-close {
    display: inherit;
    margin-top: 10px;
    padding: 2px;
    float: right;
}

body.top-search-open #top-search a i {
    color: #444;
    z-index: 11;
}

body.top-search-open #top-search form {
    opacity: 1;
    z-index: 10;
    display: inherit;
}

.btf {
    position: fixed;
    z-index: 77777;
    width: 358px;
    right: -294px;
    opacity: 0.85;
    -webkit-transition: left 0.3s ease, right 0.3s ease;
    -o-transition: left 0.3s ease, right 0.3s ease;
    transition: left 0.3s ease, right 0.3s ease;
}

.btf.active {
    right: -10px;
    opacity: 1;
}

.btf:hover {
    opacity: 1;
}

.btf .figure img {
    width: 100px;
}

.btf h3 {
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.btf .btf-box {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.btf .fa-stack {
    width: 2.4em;
}

.btf .btf-icofundo {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.btf#btf-pesos {
    top: 17vh;
}

.btf#btf-pesos .figure a {
    display: block;
}

.btf#btf-pesos .btf-icofundo {
    color: #073B5B;
}

.btf#btf-pesos .btf-ico {
    color: #fff;
}

.btf#btf-pesos .btf-box {
    color: #fff;
    background-color: #444;
    border: 2px solid #fff;
}

.btf#btf-pesos .btf-box a {
    color: #fff;
}

.btf#btf-pesos .btf-box:hover {
    background-color: #373737;
}

.btf#btf-pesos .btf-box:hover a {
    color: #fff;
}

.btf#btf-toggler {
    display: none;
    top: 10px;
    left: 6px;
    right: inherit;
    z-index: 88888;
}

.btf#btf-toggler .figure a {
    display: block;
}

.btf#btf-toggler .btf-icofundo {
    color: #073B5B;
}

.btf#btf-toggler .btf-ico {
    color: #fff;
}

.btf#btf-chat {
    bottom: 7vh;
}

.btf#btf-chat .figure a {
    display: block;
}

.btf#btf-chat h3 {
    margin: 8px 0 6px 0;
    color: #fcc830;
    text-align: center;
    font-size: 14px;
}

.btf#btf-chat .legenda {
    font-size: 11px;
    line-height: 12px;
}

.btf#btf-chat .iframechat {
    background-color: transparent;
    text-align: center;
    padding: 8px 0 0 0;
    border-bottom: 1px solid #777;
}

.btf#btf-chat .btf-icofundo {
    color: #070;
}

.btf#btf-chat .btf-ico {
    color: #fff;
}

.btf#btf-chat .btf-box {
    color: #fff;
    background-color: #444;
    border: 2px solid #fff;
}

.btf#btf-chat .btf-box a {
    color: #fff;
}

.btf#btf-chat .btf-box:hover {
    background-color: #373737;
}

.btf#btf-chat .btf-box:hover a {
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-expand-md .navbar-nav .nav-link {
        font-size: 15px;
        padding: 0 5px;
    }

    .button-reveal.btn-sm {
        padding: 0 14px;
        font-size: 12px;
    }

    .top-nav-collapse .navbar-brand {
        position: absolute;
        top: 10px;
        max-width: 130px;
        left: 4px;
        margin-left: 0;
    }

    .top-nav-collapse .container {
        max-width: 98%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-expand-md .navbar-nav .nav-link {
        font-size: 0.65rem;
        padding: 0 5px;
    }

    #header-wrap .toplinks .navbar-brand {
        margin-top: 25px;
    }

    .toplinks>.container>.row>div {
        padding: 0 6px 0 0;
    }

    .scrolling-navbar .container {
        max-width: 98%;
    }

    .scrolling-navbar #top-search {
        margin: 0 0 0 5px;
    }

    .top-nav-collapse .navbar-brand {
        position: absolute;
        top: 12px;
        max-width: 120px;
        left: 4px;
        margin-left: 0;
    }

    .top-nav-collapse .container {
        max-width: 100%;
    }

    .top-nav-collapse #btcotacao span {
        display: none;
    }

    .top-nav-collapse #btcotacao i {
        position: relative;
        left: 0;
    }

    .top-nav-collapse .button-reveal.btn-sm {
        padding: 0 8px;
        font-size: 11px;
    }
}

@media (max-width: 767.98px) {
    #header-wrap .toplinks .nav {
        margin-top: 4px;
        margin-bottom: 4px;
    }

    #header-wrap .toplinks li {
        font-size: 0.5rem;
        padding: 3px;
    }

    #header-wrap .toplinks a {
        font-size: 0.6rem;
    }

    #top-search {
        display: none;
    }

    .btf#btf-toggler {
        display: block;
    }

    .navbar-brand {
        position: relative;
        display: block;
        margin: 0 auto;
    }

    .navbar-brand img {
        margin: 2px 0;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0 5px;
    }

    .navbar-collapse {
        height: auto;
        background-color: #fff;
        padding: 15px;
        border-radius: 0;
        -webkit-box-shadow: 0;
        box-shadow: 0;
        width: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
    }

    .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
        font-size: 1rem;
    }

    .navbar-collapse .nav-link {
        text-shadow: none;
        color: #444;
    }

    .navbar-collapse #btcotacao {
        margin: 0;
    }

    .top-nav-collapse .navbar-brand {
        margin-left: 0px;
        top: 0;
    }

    .top-nav-collapse .navbar-header {
        margin: 8px auto 0 auto;
    }

    .top-nav-collapse .navbar-collapse {
        top: 64px;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        text-shadow: none !important;
        color: #444 !important;
        margin: 0;
        padding: 0 8px;
    }

    .navbar-nav li.active .nav-link {
        color: #073B5B !important;
    }

    .scrolling-navbar:not(.top-nav-collapse) {
        position: relative;
    }

    .scrolling-navbar:not(.top-nav-collapse) .navbar-header {
        display: none;
    }

    .button-reveal.btn-sm {
        padding: 0 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .toplinks #logo {
        padding-left: 20vw;
    }
}

/* Sessao galeria na home */
#gallery {
    position: relative;
}

#gallery .gallery-box {
    position: relative;
    margin-bottom: 30px;
}

#gallery .gallery-box .overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 35%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

#gallery .gallery-box .overlay-box i {
    background: #fff;
    color: #073B5B;
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    border-radius: 50%;
    transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}

#gallery .gallery-box:hover .overlay-box {
    background: rgba(233, 30, 99, 0.7);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    transition: all 500ms ease;
}

#gallery .gallery-box:hover .overlay-box i {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.gallery-item {
    float: left;
    position: relative;
    padding-bottom: 30px;
}

.gallery-item .card {
    border-radius: 0.4rem;
    overflow: hidden;
    z-index: 5;
}

.gallery-item .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2) !important;
}

/* Pagina produtos */
#materiais a {
    color: #777;
    text-transform: uppercase;
}

#materiais a i {
    font-size: 30px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 8px;
}

#materiais a:hover {
    color: #c00;
}

#materiais a:hover i {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -ms-transform: scale(1, 5);
    padding-top: 8px;
    margin-bottom: 0px;
}

#produtos {
    /* Cards */
}

#produtos .masonry-grid {
    margin-top: 30px;
}

#produtos section {
    padding-bottom: 8px;
}

#produtos section Titulo da sessao h2 {
    color: #073B5B;
    text-align: left;
    margin-bottom: 8px;
    text-transform: uppercase;
}

#produtos section h4 {
    color: #073B5B;
    margin-top: 12px;
}

#produtos section figure {
    margin-top: 10px;
}

#produtos section ul {
    color: #073B5B;
}

#produtos section ul li>a {
    color: #444;
}

#produtos section ul li>a:hover {
    color: #c00;
}

#produtos .tit-material {
    padding: 30px 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,000000+100&0.2+0,0+15,0+57,0.3+82 */
    background: -moz-linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(217, 217, 217, 0) 15%,
            rgba(110, 110, 110, 0) 57%,
            rgba(46, 46, 46, 0.3) 82%,
            rgba(0, 0, 0, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(217, 217, 217, 0) 15%,
            rgba(110, 110, 110, 0) 57%,
            rgba(46, 46, 46, 0.3) 82%,
            rgba(0, 0, 0, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(217, 217, 217, 0) 15%,
            rgba(110, 110, 110, 0) 57%,
            rgba(46, 46, 46, 0.3) 82%,
            rgba(0, 0, 0, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33ffffff', endColorstr='#4d000000', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

#produtos .tit-material h2 {
    margin: 0;
    color: #fff;
    letter-spacing: 0.7rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

#produtos #mat-cobre {
    background-color: #be5715;
}

#produtos #mat-latao {
    background-color: #c39203;
}

#produtos #mat-aluminio {
    background-color: #677378;
}

#produtos #mat-bronze {
    background-color: #8a784a;
}

#produtos #mat-fitas {
    background-color: #070;
}

#produtos .espec-item a {
    display: block;
}

#produtos .espec-item a i {
    font-size: 50px;
    margin: 30px 0 8px 0;
}

#produtos .espec-item a h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 20px 30px 20px;
    color: inherit;
}

#produtos .espec-item a:hover {
    color: #c00 !important;
}

#produtos .gallery-item a.cardlink h3 {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#produtos .gallery-item a.cardlink .gallery-image {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#produtos .gallery-item a.cardlink:hover {
    color: inherit;
}

#produtos .gallery-item a.cardlink:hover .gallery-image {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}

#produtos #prod-aluminio .espec-item a {
    color: #677378;
}

#produtos #prod-aluminio .espec-item a h4 {
    font-weight: 500;
}

#produtos #prod-aluminio .cardlink h3 {
    color: #677378;
}

#produtos #prod-aluminio .cardlink:hover h3 {
    color: #c00;
}

#produtos #prod-cobre .espec-item a {
    color: #be5715;
}

#produtos #prod-cobre .espec-item a h4 {
    font-weight: 500;
}

#produtos #prod-cobre .cardlink h3 {
    color: #be5715;
}

#produtos #prod-cobre .cardlink:hover h3 {
    color: #c00;
}

#produtos #prod-latao .espec-item a {
    color: #c39203;
}

#produtos #prod-latao .espec-item a h4 {
    font-weight: 500;
}

#produtos #prod-latao .cardlink h3 {
    color: #c39203;
}

#produtos #prod-latao .cardlink:hover h3 {
    color: #c00;
}

#produtos #prod-bronze .espec-item a {
    color: #8a784a;
}

#produtos #prod-bronze .espec-item a h4 {
    font-weight: 500;
}

#produtos #prod-bronze .cardlink h3 {
    color: #8a784a;
}

#produtos #prod-bronze .cardlink:hover h3 {
    color: #c00;
}

hr.sep,
.gallery-desc hr {
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, #f7f7f7, #444, #f7f7f7);
    margin: 30px 20%;
}

hr.sep::after,
.gallery-desc hr::after {
    content: "o O o";
    font-size: 12px;
    color: #444;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -54%);
    transform-origin: 50% 50%;
    padding: 0 0.6rem;
    background-color: white;
}

.card figure {
    margin: -1px;
}

.gallery-desc {
    z-index: 3;
    padding: 20px;
}

.gallery-desc h3 {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}

.gallery-desc h3 a {
    color: #444;
}

.gallery-desc h3 a:hover {
    color: #c00;
}

.gallery-desc h4,
.gallery-desc h5,
.gallery-desc h6 {
    font-weight: normal;
    color: #777 !important;
    margin: 15px 0 0;
}

.gallery-desc h4 {
    font-size: 1rem;
}

.gallery-desc h5 {
    font-size: 0.9rem;
}

.gallery-desc h6 {
    font-size: 0.8rem;
}

.gallery-desc p {
    display: block;
    margin: 8px 0 0;
    padding: 0;
    font-size: 14px;
    color: #222;
}

.gallery-desc .fancy-title {
    position: relative;
    margin-top: 10px;
    margin-bottom: 5px;
}

.gallery-desc .fancy-title h5 {
    position: relative;
    display: inline-block;
    background-color: #fff;
    margin-bottom: 0;
    padding-right: 6px;
    padding-left: 8px;
}

.gallery-desc .fancy-title.title-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    left: auto;
    right: 0;
    top: 49%;
    border-top: 1px solid #eee;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
}

#produtos .gallery-image {
    max-height: 200px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-overlay a {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #f5f5f5;
    width: 40px !important;
    height: 40px !important;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #444;
    border-radius: 50%;
}

.gallery-overlay a.center-icon {
    margin: -28px 0 0 -20px;
}

.gallery-overlay a.right-icon {
    left: auto;
    right: 50%;
    margin: -28px 0 0 -44px;
}

.gallery-overlay a:hover {
    color: #073B5B;
    background-color: #eee;
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .gallery-overlay {
    -webkit-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

body:not(.device-touch):not(.device-sm):not(.device-xs) .gallery-overlay a {
    -webkit-transition: color 0.2s linear, background-color 0.2s linear,
        margin-top 0.2s linear, opacity 0.2s linear;
    -o-transition: color 0.2s linear, background-color 0.2s linear,
        margin-top 0.2s linear, opacity 0.2s linear;
    transition: color 0.2s linear, background-color 0.2s linear,
        margin-top 0.2s linear, opacity 0.2s linear;
}

.gallery-item:hover .gallery-overlay a.left-icon,
.gallery-item:hover .gallery-overlay a.right-icon {
    margin-top: -18px;
}

.gallery-overlay a i.icon-line-play {
    position: relative;
    left: 2px;
}

@media (max-width: 575.98px) {
    .gallery-desc {
        padding: 18px;
    }

    .gallery-desc h3 {
        font-size: 1.3rem;
    }
}

.carousel {
    /* height: 50vh; */
    overflow: hidden;
}

.carousel .carousel-inner {
    overflow: hidden;
    height: 100%;
}

.carousel .carousel-control {
    display: none;
    transition: all 0.3s ease-in-out;
}

.carousel .carousel-indicators {
    cursor: pointer;
    margin-bottom: 0;
}

.carousel:hover .carousel-control {
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.carousel .carousel-item {
    height: 100%;
}

.carousel .carousel-item .banner-imagem {
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

.carousel .carousel-item .carousel-caption {
    right: 12%;
    left: 12%;
    opacity: 0;
    transition: opacity 100ms ease 1s;
    z-index: 0;
    top: 2px;
    padding: 8px 0;
    overflow: hidden;
    text-align: left;
}

.carousel .carousel-item .carousel-caption .btn {
    margin: 10px 6px;
}

.carousel .carousel-item .carousel-caption h2,
.carousel .carousel-item .carousel-caption h3,
.carousel .carousel-item .carousel-caption h4,
.carousel .carousel-item .carousel-caption h5 {
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
}

.carousel .carousel-item .carousel-caption h2,
.carousel .carousel-item .carousel-caption h4,
.carousel .carousel-item .carousel-caption p {
    color: #fff;
}

.carousel .carousel-item .carousel-caption h3,
.carousel .carousel-item .carousel-caption h5,
.carousel .carousel-item .carousel-caption h6 {
    color: #073B5B;
}

.carousel .carousel-item .carousel-caption h2,
.carousel .carousel-item .carousel-caption h3 {
    font-size: 2.9rem;
    letter-spacing: 0.15rem;
    line-height: 3.2rem;
    margin: 9px 0;
}

.carousel .carousel-item .carousel-caption h4,
.carousel .carousel-item .carousel-caption h5 {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 8px 0;
}

.carousel .carousel-item .carousel-caption p,
.carousel .carousel-item .carousel-caption h6 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    text-align: left;
    margin: 7px 0;
}

.carousel .carousel-item .carousel-caption .ban-base {
    margin-top: auto;
    height: fit-content;
}

.carousel .carousel-item .carousel-caption .ban-meio {
    margin-bottom: auto;
    margin-top: auto;
    height: fit-content;
}

.carousel .carousel-item .carousel-caption.ban-imagem {
    height: fit-content;
    margin: auto;
    max-height: 90%;
}

.carousel .carousel-item .carousel-caption.ban-imagem img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.carousel .carousel-item .carousel-caption .row>.h-100 {
    display: flex;
}

.carousel .carousel-item .carousel-caption .text-cinza-esc,
.carousel .carousel-item .carousel-caption .text-cinza-esc p,
.carousel .carousel-item .carousel-caption .text-cinza-esc h2,
.carousel .carousel-item .carousel-caption .text-cinza-esc h3 {
    color: #444 !important;
    text-shadow: none !important;
}

.carousel .carousel-item .carousel-caption .text-vermelho,
.carousel .carousel-item .carousel-caption .text-vermelho p,
.carousel .carousel-item .carousel-caption .text-vermelho h2,
.carousel .carousel-item .carousel-caption .text-vermelho h3 {
    color: #073B5B !important;
    text-shadow: none !important;
}

.carousel .carousel-item.active .carousel-caption {
    opacity: 1;
    transition: opacity 100ms ease 0s;
    z-index: 1;
}

.carousel .carousel-item.iniciar .carousel-caption {
    opacity: 0;
}

.carousel .carousel-control-next,
.carousel .carousel-control-prev {
    opacity: 1;
    box-shadow: none;
}

.carousel .carousel-control-prev span {
    padding: 15px;
}

.carousel .carousel-control-next span {
    padding: 15px;
}

.carousel .carousel-control {
    top: 45%;
}

.carousel .carousel-control .lni-chevron-left,
.carousel .carousel-control .lni-chevron-right {
    position: relative;
    z-index: 2;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel .carousel-control i {
    line-height: 40px;
    font-size: 18px;
    width: 45px;
    border: 1px solid #fff;
    height: 45px;
    display: block;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

.carousel .carousel-control i:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: #fff;
}

#painel_home {
    height: 65vh;
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .carousel .carousel-item .carousel-caption h2,
    .carousel .carousel-item .carousel-caption h3 {
        font-size: 2.3rem;
        line-height: 2.6rem;
        margin: 9px 0;
    }

    .carousel .carousel-item .carousel-caption h4,
    .carousel .carousel-item .carousel-caption h5 {
        font-size: 1.7rem;
        line-height: 1.9rem;
        margin: 8px 0;
    }

    .carousel .carousel-item .carousel-caption p,
    .carousel .carousel-item .carousel-caption h6 {
        font-size: 1.1rem;
        line-height: 1.25rem;
        margin: 7px 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #painel_home {
        height: 50vh;
    }

    .carousel .carousel-item .carousel-caption h2,
    .carousel .carousel-item .carousel-caption h3 {
        font-size: 1.95rem;
        line-height: 2.1rem;
        margin: 8px 0;
    }

    .carousel .carousel-item .carousel-caption h4,
    .carousel .carousel-item .carousel-caption h5 {
        font-size: 1.6rem;
        line-height: 1.8rem;
        margin: 7px 0;
    }

    .carousel .carousel-item .carousel-caption p,
    .carousel .carousel-item .carousel-caption h6 {
        font-size: 1.1rem;
        line-height: 1.3rem;
        margin: 6px 0;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #painel_home {
        height: 80vw;
    }

    .carousel .carousel-item .carousel-caption {
        right: 6%;
        left: 6%;
    }

    .carousel .carousel-item .carousel-caption h2,
    .carousel .carousel-item .carousel-caption h3 {
        font-size: 1.6rem;
        line-height: 1.8rem;
        margin: 7px 0;
    }

    .carousel .carousel-item .carousel-caption h4,
    .carousel .carousel-item .carousel-caption h5 {
        font-size: 1.3rem;
        line-height: 1.5rem;
        margin: 7px 0;
    }

    .carousel .carousel-item .carousel-caption p,
    .carousel .carousel-item .carousel-caption h6 {
        font-size: 0.9rem;
        line-height: 1.1rem;
        margin: 6px 0;
    }
}

@media (max-width: 575.98px) {
    #painel_home {
        height: 80vw;
    }

    .carousel .carousel-item .carousel-caption {
        right: 6%;
        left: 6%;
    }

    .carousel .carousel-item .carousel-caption h2,
    .carousel .carousel-item .carousel-caption h3 {
        font-size: 1.3rem;
        line-height: 1.5rem;
        margin: 6px 0;
    }

    .carousel .carousel-item .carousel-caption h4,
    .carousel .carousel-item .carousel-caption h5 {
        font-size: 1.1rem;
        line-height: 1.3rem;
        margin: 5px 0;
    }

    .carousel .carousel-item .carousel-caption p,
    .carousel .carousel-item .carousel-caption h6 {
        font-size: 0.8rem;
        line-height: 1rem;
        margin: 4px 0;
    }
}

/*
   * DOM element rendering detection
   * https://davidwalsh.name/detect-node-insertion
   */
@keyframes chartjs-render-animation {
    from {
        opacity: 0.99;
    }

    to {
        opacity: 1;
    }
}

.chartjs-render-monitor {
    animation: chartjs-render-animation 0.001s;
}

/*
   * DOM element resizing detection
   * https://github.com/marcj/css-element-queries
   */
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink {
    position: absolute;
    direction: ltr;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}

.chartjs-size-monitor-expand>div {
    position: absolute;
    width: 1000000px;
    height: 1000000px;
    left: 0;
    top: 0;
}

.chartjs-size-monitor-shrink>div {
    position: absolute;
    width: 200%;
    height: 200%;
    left: 0;
    top: 0;
}

/* Footer Area Start */
#footer {
    position: relative;
    border-top: 5px solid rgba(0, 0, 0, 0.4);
    font-size: 12px;
    padding: 50px 0 30px 0;
    color: #ccc;
    background-size: auto auto;
    background-color: #2b2b2b;
}

#footer p {
    font-size: 12px;
}

#footer .footer-logo {
    display: block;
    margin-bottom: 30px;
    opacity: 0.7;
    text-align: center;
}

#footer .footer-logo img {
    -webkit-filter: drop-shadow(4px 8px 8px #111);
    filter: drop-shadow(4px 8px 8px #111);
}

#footer .footer-widgets-wrap {
    position: relative;
    padding: 50px 0;
}

#footer .tit-card p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

#footer .input-group-prepend {
    display: block;
}

#footer .input-group-append .btn {
    background-color: #073B5B;
    font-size: 13.44px;
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    padding: 0 8px;
}

#footer .input-group-append .btn:hover {
    background-color: #c00;
    color: #222;
}

#footer .tit-card a {
    color: #ccc;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .form-control {
    color: #ccc;
    background-color: #272727;
    border-color: #222;
    font-size: 13.8px;
}

#footer .form-control:focus,
#footer .form-control:active {
    background-color: #222;
    border-color: #222 !important;
}

#footer .btn:hover,
#footer .btn:focus {
    color: #fff;
}

#footer .input-group-text {
    color: #073B5B;
    font-weight: bold;
    font-size: 13.44px;
    background-color: #222;
    border-color: #222;
    height: 100%;
}

#footer .input-group-text i {
    margin-right: 4px;
}

#footer .gallery-item {
    padding: 0 6px 12px;
}

#footer .gallery-image {
    border-radius: 6px;
}

#footer img {
    max-width: 100%;
}

#footer form {
    margin-bottom: 30px;
}

#footer h3 {
    color: #ccc;
    font-size: 15.6px;
    margin-bottom: 8px;
}

#footer .unidrod {
    font-weight: 400;
    margin-bottom: 12px;
}

#footer .unidrod a {
    font-weight: 700;
}

#footer small {
    font-size: 10.8px;
    font-weight: 500;
}

#footer .logosgs {
    position: absolute;
    left: 300px;
    top: 8px;
    padding: 6px;
    background-color: #fff;
    border-radius: 4px;
}

#footer .logosgs a {
    display: block;
}

#footer .logosgs img {
    width: 56px;
    height: auto;
}

#footer .site-info {
    text-align: center;
    margin: 20px 0 0 0;
}

#footer .site-info p {
    font-size: 11px;
    color: #ccc;
}

@media (max-width: 767.98px) {
    .footer-logo img {
        width: 350px;
    }
}

.tempainel #produtos-home {
    padding: 30px 0;
}

.tempainel #produtos-home .masonry-grid {
    margin-top: 0;
}

#produtos-home .gallery-image {
    max-height: 220px;
}

#produtos-home .gallery-desc h3 a {
    text-transform: uppercase;
}

#produtos-home .gallery-desc h5 {
    font-weight: 600;
    font-size: 13.5px;
    line-height: 17px;
}

#laminados {
    background-color: #f7f7f7;
    background: radial-gradient(circle,
            rgba(88, 109, 117, 0.15) 0%,
            rgba(88, 109, 117, 0.45) 40%),
        url(/midia/imagens/home/fundo-laminados-4.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #677378;
}

#laminados .container>p,
#laminados .container>h2 {
    color: #fff;
}

#laminados .container li {
    font-size: 0.9em;
}

#laminados .container li i {
    font-size: 1.2em !important;
}

#laminados .container .card {
    background-color: rgba(255, 255, 255, 0.9);
}

#laminados .container h3,
#laminados .container h4 {
    color: #070;
}

#laminados .container h5 a {
    font-weight: 600;
    font-size: 13.5px;
}

#laminados .container .intro {
    color: #fff;
    margin-bottom: 30px;
}

#laminados .container .intro h4 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 10px;
}

#laminados .container h4 {
    margin-top: 12px;
    font-size: 18px;
}

#laminados .container .list-group-item {
    border-radius: 0 !important;
    padding: 0;
    color: #070;
}

#laminados .container .list-group-item i {
    color: #070;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    border-right: 1px solid #ddd;
}

#laminados .container table,
#laminados .container table h5 {
    font-size: 14px;
    font-weight: 600;
}

#laminados .container table h5 {
    font-size: 14px;
    font-weight: 500;
    padding: 1px;
    margin: 0;
}

#catalogo {
    background-color: #f7f7f7;
    background: url(/midia/imagens/home/home-fundo-catalogo.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#catalogo h5 {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.15rem;
}

#catalogo #boxcatalogo {
    height: 100%;
    font-size: 0.9rem;
}

#catalogo #boxcatalogo h3,
#catalogo #boxcatalogo input,
#catalogo #boxcatalogo label {
    font-size: 0.9rem;
}

#catalogo #boxcatalogo label {
    padding-top: 2px;
}

#catalogo #boxcatalogo h3 {
    font-weight: normal;
}

#catalogo #boxcatalogo h3 b {
    margin-bottom: 8px;
    color: #073B5B;
    font-size: 1.1rem;
    font-weight: 400;
}

#catalogo figure {
    max-width: 100%;
}

#catalogo figure img {
    max-width: 100%;
}

#pesosmedidas {
    background-color: #073B5B;
    padding: 0;
}

#pesosmedidas .container {
    padding: 45px 15px;
}

#pesosmedidas h2 {
    margin: 20px 0;
}

#pesosmedidas .button {
    border: 2px solid #444;
    background-color: #fff;
    color: #333;
    font-weight: 700;
    text-shadow: none;
    padding: 30px;
    font-size: 32px;
    height: auto;
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    margin: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#pesosmedidas .button:hover {
    background-color: #444;
    color: #fff;
    border-color: #fff;
}

#pesosmedidas .button .btn-circle {
    width: 100px;
    height: 100px;
    padding: 14px;
    border-radius: 50%;
    font-size: 60px;
    line-height: 1.33;
    background-color: inherit;
    position: absolute;
    border: 2px solid;
    top: -30px;
    left: -70px;
}

#pesospartic,
#lamiparti {
    position: absolute;
}

#lmehome {
    color: #444;
    padding: 30px 0;
}

#lmehome h2 {
    margin-bottom: 8px;
}

#lmehome .lmedata {
    margin: 0 0 3.5rem 0;
}

#lmehome .lmedata h3 {
    font-size: 1.8em;
    color: #073B5B;
}

#lmehome .text-legenda {
    border-left: 1px solid #073B5B;
    text-align: left;
}

#lmehome .text-legenda h4 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 2px;
}

#lmehome .text-legenda h5 {
    font-size: 1.1em;
}

#lmehome .text-right h3 {
    font-size: 2.4em;
}

#lmehome .lmelink p {
    margin: 10px 0 0 0;
}

#lmehome .lmelink p a {
    font-size: 0.9em;
    font-weight: 600;
}

#lmehome #labelgraf {
    position: absolute;
    right: 20px;
    margin-top: -9px;
    color: #fff;
    font-size: 0.8em;
    opacity: 0.6;
}

#graflmehome {
    position: absolute;
    background: #c39203;
    z-index: -999999;
    opacity: 0.75;
}

#graflmehome canvas {
    opacity: 0.85;
    padding-top: 10px;
}

@keyframes colorchangelme {
    0% {
        background: #677378;
    }

    25% {
        background: #be5715;
    }

    50% {
        background: #c39203;
    }

    75% {
        background: #8a784a;
    }

    100% {
        background: #677378;
    }
}

@-webkit-keyframes colorchangelme {
    0% {
        background: #677378;
    }

    25% {
        background: #be5715;
    }

    50% {
        background: #c39203;
    }

    75% {
        background: #8a784a;
    }

    100% {
        background: #677378;
    }
}

.about-item {
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.17);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.about-item .about-text {
    padding: 20px;
    background: #fff;
}

.about-item .about-text h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-item .about-text h3 a {
    color: #212121;
}

.about-item .about-text h3 a:hover {
    color: #073B5B;
}

.about-item .about-text .btn {
    margin-top: 10px;
}

.about-item:hover {
    box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.1);
}

#event-slides .video img {
    border-radius: 4px;
}

#event-slides .intro-desc {
    line-height: 26px;
    margin-bottom: 30px;
}

#event-slides .intro-title {
    color: #212121;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#event-slides .list-specification li {
    margin-bottom: 10px;
    font-size: 15px;
}

#event-slides .list-specification li i {
    margin-right: 5px;
}

.counter-section {
    background: #073B5B;
    overflow: hidden;
    position: relative;
    /*
     &:before{
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     } */
}

.counter-section .counter {
    padding: 30px 0;
}

.counter-section .counter .icon {
    margin-bottom: 15px;
}

.counter-section .counter .icon i {
    font-size: 60px;
    color: #fff;
}

.counter-section .counter p {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.counter-section .counter span {
    color: #fefefe;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Sponsors Area */
#sponsors {
    background: #f3f4f3;
}

#sponsors .spnsors-logo {
    text-align: center;
    border-radius: 4px;
    padding: 50px;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#sponsors .spnsors-logo:hover {
    border-color: transparent;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #laminados .container table h5 {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    #lmehome .text-right h3 {
        font-size: 2em;
    }
}

@media (max-width: 991.98px) {
    #lmehome .text-legenda {
        border-left: none;
        text-align: center;
    }

    #lmehome .text-right h3 {
        font-size: 1.8em;
        text-align: center;
    }

    #laminados .container table {
        font-size: 12px;
    }

    #laminados .container table h5 {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #laminados .container .list-group-item {
        font-size: 0.8rem;
        padding: 4px;
    }

    #laminados .container .list-group-item i {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #lmehome .lmedata {
        margin: 0 0 0.2rem 0;
    }

    #lmehome h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .list-group-item {
        padding: 4px !important;
    }

    .list-group-item i {
        display: none !important;
    }

    #lmehome .container {
        margin-top: 20px;
    }

    #lmehome h2,
    #lmehome .text-right h3 {
        font-size: 1.5rem;
    }

    #lmehome .lmelink p {
        margin: 5px 0 5px 0;
    }

    #labelgraf {
        margin-top: -12px;
    }
}

.formmd .form-control {
    display: block;
    width: 100%;
    box-shadow: none;
    padding: 7px 19px;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.formmd .form-control:focus {
    border-color: #073B5B;
    box-shadow: none;
    outline: 0;
}

.formmd .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #070;
    background-color: #070;
}

.formcontato .form-control {
    display: block;
    width: 100%;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 18px;
    font-size: 1.2em;
    border: 1px solid #f7f7f7;
    border-bottom: 2px solid #ccc;
    border-radius: 2px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.formcontato .form-control:focus {
    border: none;
    border-bottom: 2px solid #073B5B;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
    outline: 0;
}

.formcontato .is-invalid {
    border-color: #c00 !important;
}

.formcontato label {
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 2px;
}

.formcontato .custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #070;
    background-color: #070;
}

#contato .unidades {
    margin-right: -30px;
    margin-top: 1.5rem;
}

#contato .unidades .card {
    padding: 30px 30px 10px 30px;
    margin-bottom: 30px;
    margin-right: 30px;
    box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.15) !important;
}

#contato .unidades .card p {
    font-size: 0.8rem;
    line-height: 1.1rem;
}

#contato .unidades .card a {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2rem;
}

#contato .unidades .matriz h4,
#contato .unidades .filial h4 {
    font-weight: 500;
    color: #073B5B;
}

#contato .unidades .matriz p,
#contato .unidades .filial p {
    font-weight: 400;
    margin-bottom: 20px;
}

#contato .unidades .matriz i,
#contato .unidades .filial i {
    color: #ccc;
    margin: 0 6px;
}

#contato .unidades .matriz h4 {
    font-size: 1.2rem;
    line-height: 1.3rem;
}

#contato .unidades .matriz p {
    font-size: 0.9rem;
    line-height: 1rem;
}

#contato .unidades .filial h4 {
    font-size: 1.1rem;
    line-height: 1.2rem;
}

#contato .unidades .filial p {
    font-size: 0.8rem;
    line-height: 1rem;
}

#contato .localizacao {
    box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.15) !important;
    border: 3px solid #ccc;
}

.custom-file-label::after {
    content: "Selecionar";
}

.institucional {
    margin-bottom: 0;
    padding-bottom: 0;
}

.institucional p {
    color: #444;
}

.institucional h3 {
    color: #073B5B;
    margin-top: 10px;
}

.institucional h4 {
    color: #070;
    font-size: 1.1em;
    font-weight: 500;
    margin: 15px 0 10px 0;
}

.institucional li {
    font-size: 0.9em;
}

.institucional li i {
    font-size: 1.2em !important;
}

.institucional .card {
    padding: 20px;
    margin-bottom: 2vh;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.institucional hr {
    margin-top: 10px;
    margin-bottom: 0;
}

.institucional .row {
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .institucional h3 {
        font-size: 1.3rem;
    }
}

.pesosbanner {
    height: 445px;
}

.apptab h3 {
    color: #777;
    font-size: 1.4em;
    margin: 4px 0;
}

.apptab .btn {
    border-width: 2px;
}

.apptab .btn:focus {
    color: #fff;
}

.apptab .active .btn,
.apptab a.btn.active {
    border-color: #222;
}

.apptab #calculador {
    min-height: 354px;
    height: 100%;
}

.apptab #calculador img {
    max-height: 170px;
}

.apptab #calculador .form-group input {
    max-width: 150px;
}

.list-group-item.active {
    background-color: #073B5B;
    border-color: #073B5B;
}

#listaformatos {
    padding-bottom: 2px;
}

#listaformatos a {
    background-repeat: no-repeat;
    background-position: 4px center;
    background-size: 26px auto;
    padding-left: 8px !important;
    font-size: 0.9rem;
}

#listaformatos h4 {
    color: #fff;
}

#apppesos #listaformatos a {
    padding-left: 38px !important;
}

#boxtabela .tabela {
    overflow-x: auto;
}

#boxtabela table th {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.5);
    background-color: #777;
    text-align: center;
}

#boxtabela table td {
    text-align: center;
    font-size: 14px;
}

#boxtabela h5 {
    font-weight: 600;
    font-size: 13.5px;
    line-height: 17px;
    color: #777;
}

#conversao {
    max-width: 540px;
}

#conversao h3 {
    color: #777;
    font-size: 1.4rem;
    margin: 4px 0;
}

#conversao option {
    background-color: #fff;
    padding: 4px;
    text-align: center;
}

#conversao option.alt {
    background-color: #f7f7f7;
}

#relacionados h3 {
    color: #777;
    font-size: 1.4rem;
    margin: 4px 0;
}

#selmat {
    z-index: 66666;
    background-color: #e9ecef;
    border-radius: 4px;
}

#selmat.is_stuck {
    -webkit-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}

.btn-aluminio,
.fnd-aluminio {
    background-color: #677378;
    border-color: #677378;
}

.btn-cobre,
.fnd-cobre {
    background-color: #be5715;
    border-color: #be5715;
}

.btn-latao,
.fnd-latao {
    background-color: #c39203;
    border-color: #c39203;
}

.btn-bronze,
.fnd-bronze {
    background-color: #8a784a;
    border-color: #8a784a;
}

.tx-cor-aluminio {
    color: #677378 !important;
}

.tx-cor-cobre {
    color: #be5715 !important;
}

.tx-cor-latao {
    color: #c39203 !important;
}

.tx-cor-bronze {
    color: #8a784a !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #listaformatos {
        margin-bottom: 8px;
    }

    #listaformatos a {
        font-size: 0.9rem;
    }

    #listaformatos h4 {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .apptab #selmat {
        margin-bottom: 4px;
    }

    .apptab #selmat .btn {
        margin-top: 2px;
        margin-bottom: 2px;
    }

    .apptab #listaformatos {
        margin-bottom: 8px;
    }

    .apptab #listaformatos a {
        font-size: 0.8rem;
    }

    .apptab #listaformatos h4 {
        font-size: 0.9rem;
    }

    .apptab .col-8 {
        padding-left: 0;
    }

    .apptab .row>.col-3 {
        padding-right: 0;
    }
}

@media (max-width: 575.98px) {
    .apptab .col-4 {
        padding-right: 1px;
    }

    .apptab #listaformatos a {
        font-size: 0.5rem;
        line-height: 0.7rem;
        min-height: 40px;
    }

    .apptab #listaformatos h4 {
        font-size: 0.6rem;
    }
}

.lmebanner {
    height: 300px;
}

#graficolme i.fa-calendar-alt {
    margin-left: 15px;
    margin-right: 5px;
}

#graficolme h4 {
    color: #073b5b;
    font-size: 1.1rem;
    text-align: left;
    margin: 2px 0;
}

#graficolme .drop-meslme {
    text-align: right;
}

#graficolme .titulo {
    text-align: left;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

#tabelalme {
    margin-bottom: 20px;
}

#tabelalme #boxtabela {
    margin-bottom: 10px;
    width: 100%;
    overflow-x: auto;
}

#tabelalme h4 {
    color: #073B5B;
    font-size: 1.1rem;
    margin: 2px 0;
}

#tabelalme .lmesuave {
    color: #777;
}

#tabelalme .lmemedia {
    color: #073B5B;
    font-weight: 500;
}

#tabelalme .lmemensal {
    background-color: #073B5B;
    color: #fff;
    font-weight: 500;
}

#indices a.btn {
    border-color: #f7f7f7;
    margin: 1px;
    line-height: 31px;
    font-size: 12px;
}

#indices a.btn:focus {
    color: #fff;
}

#indices a.btn.active {
    border-color: #c00;
    border-width: 2px;
    margin: 0;
    line-height: 30px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #graficolme #variacao .col-md-4 .card {
        height: 100%;
    }

    #graficolme .drop-meslme {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    #graficolme #variacao>.col-12 {
        margin-top: 8px;
    }

    #graficolme .drop-meslme {
        text-align: center;
    }

    #graficolme .titulo {
        text-align: center;
    }

    #tabelalme h4 {
        font-size: 0.95rem;
    }
}

/* Banner Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    border-radius: 0px;
    display: none;
}
