/*BEGIN RESETS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block}
body {line-height: 1.4}
ol, ul {list-style: none}
blockquote, q {quotes: none}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none}
table {border-collapse: collapse;border-spacing: 0}
a:link, a:visited {text-decoration: none}
html {scroll-behavior: smooth}
* {box-sizing: border-box}
/*END RESETS*/

/*BEGIN CONTAINER*/
.container {padding: 0 15px;margin: 0 auto}
.container-left {padding-left: 15px;margin-left: auto}
.container-right {padding-right: 15px;margin-right: auto}
/*END CONTAINER*/

/*BEGIN MEDIAS CONTAINER*/
@media screen and (max-width: 575px) {.container, .home-arrows {max-width: 100%} .container-left, .container-right {max-width: 100%}}
@media (min-width: 576px) {.container {max-width: 540px} .container-left {max-width: 270px} .container-right {max-width: 270px}}
@media (min-width: 768px) {.container {max-width: 720px} .container-left {max-width: 360px} .container-right {max-width: 360px}}
@media (min-width: 992px) {.container {max-width: 960px} .container-left {max-width: 480px} .container-right {max-width: 480px}}
@media (min-width: 1200px) {.container {max-width: 1140px} .container-left {max-width: 570px} .container-right {max-width: 570px}}
/*END MEDIAS CONTAINER*/

/*BEGIN VARIAVEIS*/
:root {
    --red-ligth: #C90507;
    --red-dark: #750706;
    --yellow-ligth: #EAC602;
    --yellow: #FFDD4F;
    --yellow-dark: #D6B600;
    --black-ligth: #4C3333;
    --brown-ligth: #654113;
    --beige-ligth: #DED9B9;
    --grey-ligth: #C9C4A6;
    --grey: #EDEDED;
    --green: #23560A;
}
/*END VARIAVEIS*/

/*BEGIN CORES*/
.text-white {color: white !important}
.green {color: var(--green)}
.red-ligth {color: var(--red-ligth)}
.red-dark {color: var(--red-dark)}
.yellow-ligth {color: var(--yellow-ligth)}
.yellow {color: var(--yellow)}
.yellow-dark {color: var(--yellow-dark)}
.brown-ligth {color: var(--brown-ligth)}
.beige-ligth {color: var(--beige-ligth)}
.grey-ligth {color: var(--grey-ligth)}
.bg-red-ligth {background-color: var(--red-ligth)}
.bg-red-dark {background-color: var(--red-dark)}
.bg-yellow-ligth {background-color: var(--yellow-ligth)}
.bg-yellow-dark {background-color: var(--yellow-dark)}
.bg-brown-ligth {background-color: var(--brown-ligth)}
.bg-beige-ligth {background-color: var(--beige-ligth)}
.bg-grey-ligth {background-color: var(--grey-ligth)}
/*END CORES*/

/*BEGIN IMAGENS*/
.images, .images-max-100 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.images {width: 100%}
.images-max-100 {max-width: 100%;margin: 0 auto;display: block}
/*END IMAGENS*/

/*BEGIN BTN SQUARE*/
.btn-square {border-radius: 0px}
/*END BTN SQUARE*/

/*BEGIN STRONG BOLD*/
strong {font-weight: bold}
/*END STRONG BOLD*/
.block {display: block !important}
.none {display: none !important}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#nav, .nav {display: none}
.nav {cursor: pointer}

@media screen and (max-width: 767px) {
/*BEGIN MENU COLLAPSE*/
.nav {
    display: block;
    justify-self: end;
}
#menu-mobile {
    width: 0px;
    height: 0px;
    visibility: hidden;
    overflow: hidden;
}
#menu-mobile ul, #menu-mobile li  {
    width: 100%;
}
#nav:checked ~ #menu-mobile {
    visibility: visible;
    grid-row: 2;
    grid-column: span 2;
    width: 100%;
    height: 100%;
}
#nav:checked ~ #menu-mobile {
    flex-direction: column;
    position: relative;
}
/*END MENU COLLAPSE*/
}
body {
    font-family: 'Roboto', sans-serif;
    color: var(--black-ligth);
}
main {
    min-height: 100vh;
    overflow: hidden;
}
/*begin loader*/
.loader {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999999999;
    background-color: white;
    opacity: 0.7;
}
.loader img {
    width: 100px;
}
/*end loader*/
/*begin btn top*/
.btn-top {
    padding: 5px 10px 3px 10px;
    position:fixed;
    z-index: 999999;
    right:15px;
    display:none;
    border-radius: 5px;
}
.icon-top {
    font-size: 20px;
}
.btn-top-true {
    display: block !important;
    -webkit-animation: appear-with-opacity 0.7s;
            animation: appear-with-opacity 0.7s;
    opacity: 1;
}
/*end btn top*/

/*begin header*/
    .header-contacts {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }
    .header-contacts a {
        font-size: 0.8125em;
    }
    .header-contacts span {
        display: inline-block;
        margin: 0 5px;
    }
    .header-contacts .svg-inline--fa {
        font-size: 20px;
        margin-right: 5px;
    }
    .header-contacts > div:first-child, .header-contacts > div:last-child {
        display: flex;
        align-items: center;
    }
    .header-contacts > div:last-child > a:first-child {
        display: flex;
        align-items: center;
        margin-right: 20px;
    }
    .header-contacts > div:last-child a:last-child {
        margin-left: 10px;
    }
    .header-menu {
        position: relative;
    }
    .div-logo {
        position: absolute;
        left: calc(50% - 200px);
        margin-top: 60px;
        z-index: 999;
    }
    .div-logo .images{
        width: 400px;
    }
    #menu-mobile {
        display: flex;
        justify-content: space-between;
    }
    #menu-mobile ul {
        display: flex;
    }
    #menu-mobile a {
        display: block;
        padding: 40px 20px;
    }
    #menu-mobile a:hover {
        background-color: var(--yellow-dark);
    }
    .div-yellow-header {
        height: 40px;
    }
/*end header*/

/*begin menu fixed*/
    .menu-fixed {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 6px 0px 15px 5px rgba(0,0,0,0.6);
        -webkit-animation: appear-with-opacity 1s;
                animation: appear-with-opacity 1s;
    }
    .menu-fixed .div-logo {
        left: calc(50% - 150px);
        margin-top: 30px;
    }
    .menu-fixed .div-logo .images{
        width: 300px;
    }
    .menu-fixed .div-yellow-header {
        display: none;
    }
    @-webkit-keyframes appear-with-opacity {
        0% {opacity: 0}
        50% {opacity: 0.5}
        100% {opacity: 1}
    }
    @keyframes appear-with-opacity {
        0% {opacity: 0}
        50% {opacity: 0.5}
        100% {opacity: 1}
    }
/*end menu fixed*/

/*begin home slider*/
#home-slider .images {
    height: 37vw !important;
    -o-object-fit: cover;
       object-fit: cover;
}
/*end home slider*/

/*begin our company product lines*/
    .grid-title-our-company-product-lines{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
    }
    .grid-title-our-company-product-lines {
        margin-bottom: 20px;
    }
    .grid-title-our-company-product-lines h2 {
        text-align: center;
        display: grid;
        padding: 30px 0 10px 0;
    }
    .grid-title-our-company-product-lines h2 .svg-inline--fa {
        margin: 0 auto 5px auto;
        width: 50px;
        height: 50px;
    }
    .grid-title-our-company-product-lines h2 strong {
        font-size: 1.125em;
    }
    .our-company {
        display: grid;
        height: 100%;
        position: relative;
    }
    .our-company > div {
        display: grid;
        grid-template-rows: 1fr 32px;
        align-items: center;
    }
    .our-company .images{
        width: 250px !important;
        margin-left: -130px;
        z-index: 99;
        position: absolute;
        top: calc(50% - 125px);
    }
    .div-btn-nossa-empresa {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        height: 100%;
    }
    .div-btn-nossa-empresa a {
        display: block;
        margin-top: 5px;
        border-radius: 0;
        border: 0;
        padding: 5px 15px;
    }
    .div-btn-nossa-empresa a:hover {
        background-color: var(--beige-ligth);
        color: var(--red-dark) !important;
    }
    .description-our-company {
        padding: 15px 15px 0 130px;
    }
    .product-lines {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
    .product-lines .btn {
        padding: 20px 10px !important;
        font-size: 1.25em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .product-lines .btn:hover {
        background-color: var(--yellow-ligth);
        color: white;
    }
/*end our company product lines*/

/*begin catalog*/
    .grid-catalog {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        grid-gap: 50px;
        padding: 40px 15px;
    }
    .grid-catalog > article:first-child > header {
        display: flex;
        align-items: center;
    }
    .grid-catalog > article:first-child > header h2 {
        width: 100%;
        padding: 20px;
        font-size: 1.125em;
        margin-right: -30%;
    }
    .grid-catalog > article:first-child > header h2 strong {
        font-size: 1.5625em;
    }
    .grid-catalog > article:first-child > header .images {
        width: 300px;
    }
    .grid-catalog > div:last-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        grid-gap: 20px;
    }
    .grid-catalog > div:last-child .images {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    .grid-catalog > div:last-child a {
        display: grid;
        align-items: center;
        text-align: center;
        font-size: 1.25rem;
        padding: 60px 0;
    }
    .grid-catalog > div:last-child a:hover {
        background-color: var(--yellow-ligth);
    }
    .grid-catalog > div:last-child a > div {
        display: flex;
        flex-direction: column;
    }
/*end catalog*/
/*begin demonstration*/
    #home-slider-demonstrations {
        padding-bottom: 20px;
    }
    #home-slider-demonstrations .images {
        height: calc(calc(65vw / 4) - 11px);
        -o-object-fit: cover;
           object-fit: cover;
    }
/*end demonstration*/
/*begin footer*/
    .bg-footer {
        background: url("/img/bg_green.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 200px;
        position: relative;
    }
    .bg-footer > article:first-child {
        display: grid;
        align-items: center;
        height: 100%;
    }
    .bg-footer > article:first-child > header {
        display: grid;
    }
    .bg-footer > article:first-child > header h2 {
        font-size: 1.25em;
    }
    .bg-footer > article:first-child > header a {
        font-size: 1.125em;
        margin-top: 10px;
    }
    .bg-footer > article > div:last-child {
        position: absolute;
        width: 250px;
        right: 0;
        margin-top: -80px;
        z-index: 99;
    }
    .terms > header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }
    .terms > header h2 {
        font-size: 0.875em;
    }
/*end footer*/

/*begin media queries*/
@media (min-width: 300px) and (max-width: 767px) {
.exit {display: none !important}
/*begin menu*/
.header-contacts a {
    font-size: 0.6875em;
}
.header-menu .container {
    max-width: 100% !important;
    padding: 0;
}
.header-menu > div {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: right;
    align-items: center;
}
.div-logo {
    left: 15px;
    margin-top: 20px;
}
.div-logo .images{
    width: 230px;
}
.nav {
    font-size: 35px;
    margin: 20px 15px 20px 0;
}
#menu-mobile, #menu-mobile ul {
    flex-direction: column;
}
#menu-mobile a {
    border-top: 1px solid var(--yellow-dark);
    padding: 20px 15px;
    margin: 0 15px;
}
.border-mobile {
    border-top: 45px solid var(--yellow-dark) !important;
    margin: 0 !important;padding: 20px 30px !important;
}
/*end menu*/
/*begin our company product lines*/
.grid-title-our-company-product-lines{
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.mobile-products {
    grid-row: 3;
}
.grid-title-our-company-product-lines h2 .svg-inline--fa {
    width: 40px;height: 40px;
}
.grid-title-our-company-product-lines h2 strong, .product-lines .btn {
    font-size: 1em;
}
.our-company .images{
    margin-left: -150px;
}
.div-btn-nossa-empresa a, .description-our-company {
    font-size: 0.875em;
}
.description-our-company {
    padding: 15px 15px 0 100px;
}
/*end our company product lines*/
/*begin catalog*/
.grid-catalog {
    grid-template-columns: 1fr;
    grid-gap: 0px;
}
.grid-catalog > div:last-child a {
    padding: 30px 0;
}
/*end catalog*/
/*begin demonstration*/
#home-slider-demonstrations {
    padding-bottom: 40px;
}
#home-slider-demonstrations .images {
    height: calc(calc(65vw / 2) - 11px);
}
/*end demonstration*/
/*begin footer*/
.bg-footer {
    height: 150px;
}
.bg-footer > article:first-child > header h2 {
    font-size: 1em;
}
.bg-footer > article:first-child > header a {
    font-size: 0.875em;
}
.bg-footer > article > div:last-child {
    width: 150px;
    margin-top: -40px;
}
.terms > header h2 {
    font-size: 0.8125em;
}
.terms img {
    width: 30px;
}
/*end footer*/
}
@media (min-width: 768px) and (max-width: 1200px) {
/*begin header*/
    .header-contacts a {
        font-size: 0.6875em;
    }
    .div-logo {
        left: calc(50% - 125px);
        margin-top: 70px;
    }
    .div-logo .images{
        width: 250px;
    }
    #menu-mobile a {
        font-size: 0.8125em;
        padding: 40px 15px;
    }
/*end header*/

/*begin menu fixed*/
.menu-fixed .div-logo {
    left: calc(50% - 100px);
    margin-top: 20px;
}
.menu-fixed .div-logo .images{
    width: 200px;
}
.menu-fixed #menu-mobile a {
    padding: 30px 10px;
}
/*end menu fixed*/

/*begin our company product lines*/
    .grid-title-our-company-product-lines{
        grid-template-columns: 65% 35%;
        grid-gap: 20px;
    }
    .our-company .images{
        width: 260px;
    }
    .description-our-company, .our-company a {
        font-size: 0.8125em;
    }
    .product-lines .btn {
        font-size: 0.875em;
    }
/*end our company product lines*/

/*begin catalog*/
    .grid-catalog {
        grid-gap: 20px;
    }
    .grid-catalog > article:first-child > header h2 {
        font-size: 1em;
        margin-right: -15%;
    }
    .grid-catalog > article:first-child > header h2 strong {
        font-size: 1.25em;
    }
    .grid-catalog > article:first-child > header .images {
        width: 250px;
    }
    .grid-catalog > div:last-child .images {
        width: 60px;
        height: 60px;
    }
    .grid-catalog > div:last-child a {
        font-size: 1rem;
        padding: 30px 0;
    }
/*end catalog*/
/*begin demonstration*/
#home-slider-demonstrations .images {
    height: calc(calc(65vw / 3) - 11px);
}
/*end demonstration*/
/*begin footer*/
    .bg-footer {
        height: 150px;
    }
    .bg-footer > article:first-child > header h2 {
        font-size: 1.125em;
    }
    .bg-footer > article:first-child > header a {
        font-size: 1em;
    }
    .bg-footer > article:first-child > div:last-child {
        width: 200px;
        margin-top: -70px;
    }
    .terms > header h2 {
        font-size: 0.8125em;
    }
    .terms img {
        width: 30px;
    }
/*end footer*/
}
/*end media queries*/
.error-404 {
    margin-bottom: 40px;
}
.error-404 img {
    display: block;
    width: 80%;
    margin: 40px auto;
}
.error-404 > header h1 {
    line-height: 1.2;
    margin-bottom: 20px;
}
.error-404 > div, .error-404 > div > a {
    display: flex;
    align-items: center;
    line-height: 1.2;
}
.error-404 > div > a:first-child {
    margin-right: 20px;
}
.error-404 > div a {
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
}
.error-404 > div > a .svg-inline--fa, .error-404 > div > a i {
    font-size: 20px;
    margin-right: 10px;
}
/*begin valid recapcha*/
.valid-recapcha {
    display: none;
    justify-content: flex-end;
    font-size: 0.8125em;
    color: red;
}
/*end valid recapcha*/
@media(min-width: 300px) and (max-width: 767px) {
    .error-404 {
        font-size: 0.875em;
    }
    .error-404 > div {
        flex-direction: column;
    }
    .error-404 > div > a:first-child {
        margin: 0 0 20px 0;
    }
    .error-404 > div a {
        padding: 15px;
    }
}
/*begin page our company*/
    .page-our-company {
        padding: 40px 15px 60px 15px;
    }
    .page-our-company h1 {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
    }
    .page-our-company h1 .svg-inline--fa {
        margin: 0 auto 5px auto;
        width: 50px;
        height: 50px;
    }
    .page-our-company h1 strong {
        font-size: 1.125em;
    }
    #slide-values {
        padding-bottom: 40px;
    }
    .values {
        padding: 40px 30px;
        text-align: center;
        border: 1px solid var(--grey-ligth);
        margin: 0 1px;
    }
    .values h2 {
        font-size: 1.25em;
        margin-bottom: 10px;
    }
    .content-our-company {
        font-size: 1.125em;
    }
    #slide-values li > article, .values {
        height: 100%;
    }
/*end page our company*/

@media (min-width: 300px) and (max-width: 1100px) {
    .content-our-company {
        font-size: 1em;
    }
}
/*begin products*/
    .page-products {
        padding: 40px 15px;
    }
    .page-products > header h1 {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
    }
    .page-products > header h1 .svg-inline--fa {
        margin: 0 auto 5px auto;
        width: 50px;
        height: 50px;
    }
    .page-products > header h1 strong {
        font-size: 1.125em;
    }
    .btn-products {
        background-color: var(--grey);
        color: var(--black-ligth);
        width: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        border: 1px solid #C5C5C5;
        border-radius: 3px;
        font-size: 1.5rem;
        cursor: pointer;
        outline: none;
        margin-bottom: 2px;
    }
    .btn-products span {
        margin-left: 10px;
    }
    .btn-required, .btn-products:hover {
        background-color: var(--red-dark);border-color: var(--red-dark);
        color: white;
    }
    .btn-required .svg-inline--fa {
        transform: rotate(90deg);
    }
    .context-produtcs {
        display: none;
        border: 1px solid var(--grey);
        padding: 15px;
        margin-top: -2px;
    }
    .context-produtcs > article {
        padding: 15px;
        border-bottom: 1px solid var(--grey);
    }
    .context-produtcs > article:last-child {
        border-color: transparent;
    }
/*end products*/
@media (min-width: 300px) and (max-width: 1100px) {
    .context-produtcs, .context-produtcs > article {
        padding: 7px;
    }
}
/*begin contact*/
    .page-contact {
        padding: 40px 15px;
    }
    .page-contact > section > header h1 {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
    }
    .page-contact > section > header h1 .svg-inline--fa {
        margin: 0 auto 5px auto;
        width: 50px;
        height: 50px;
    }
    .page-contact > section > header h1 strong {
        font-size: 1.25em;
    }
    .page-contact > section > article > header h2 {
        width: 100%;
        text-align: center;
        font-size: 1.25em;
        padding-bottom: 10px;
    }
    .page-contact > section > article > header p {
        width: 100%;
        text-align: center;
        font-size: 1.125em;
        padding-bottom: 40px;
    }
    .page-contact > section > article > form {
        display: grid;
        grid-gap: 15px;
    }
    .page-contact > section > article > form label {
        padding-bottom: 5px;
    }
    .grid-tel-email {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .div-btn-submit {
        text-align: center;
    }
    .div-btn-submit button {
        padding: 10px 25px;
        border: 0;
        border-radius: 3px;
        font-size: 1rem;
        cursor: pointer;
        outline: none;
    }
    .page-contact > section > article > form textarea {
        min-height: 150px !important;
        font-size: 1.25rem !important;
    }
    .page-contact > section > article > form input, .page-contact > section > article > form textarea {
        background-color: var(--grey);
    }
    .page-contact > section > article > form input:focus, .page-contact > section > article > form textarea:focus {
        background-color: #f0f0f0;
    }
/*end contact*/
/*begin msg alert contact*/
.success, .success #btn-close {
    background-color: #DFF0D8;
    color: #3C763D;
}
.error, .error #btn-close {
    background-color: #F2DEDE;
    color: #A94442;
}
.success.msg-alert-contact, .error.msg-alert-contact, .success .msg-success, .error .msg-error {
    display: block;
}
.msg-alert-contact {
    margin: -40px 0 40px 0;
}
.msg-alert-contact, .msg-success, .msg-error {
    display: none;
    border-radius: 3px;
}
.msg-alert-contact > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    font-size: 0.875em;
    padding: 15px 0;
}
#btn-close {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    padding: 0 10px;
}
.div-recaptcha {
    display: flex;
    justify-content: flex-end;
}
/*end msg alert contact*/
@media (min-width: 300px) and (max-width: 767px) {
.grid-tel-email {
    grid-template-columns: 1fr;
}
/*begin msg alert contact*/
.msg-alert-contact > div {
    font-size: 0.8125em;
}
/*end msg alert contact*/

}
@media (min-width: 767px) and (max-width: 1100px) {
.grid-tel-email {
    grid-template-columns: 1fr;
}
/*begin msg alert contact*/
.msg-alert-contact > div {
    font-size: 0.8125em;
}
/*end msg alert contact*/
}


