@import url(https://fonts.googleapis.com/css2?family=Lexend:wght@100;700&family=Marcellus&family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap);

:root {
    --laranja: rgb(235, 128, 10);
    --seashell: rgb(255, 243, 237);
    --bege: rgb(255, 180, 123);
    --bordo: rgb(97, 34, 0);
    --marrom: rgb(65, 48, 41);
    --cinza: rgb(68, 68, 68);
    --branco: rgb(255, 255, 255);
    --preto: rgb(0, 0, 0);
    --marcellus: "Marcellus", sans serif;
}

* {
    box-sizing: border-box;
    outline: none;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
}

::selection {
    background-color: var(--laranja);
    color: var(--branco);
}

.hide {
    display: none;
}

/* ESTILOS GLOBAIS */

/* =-=-=-=-=-=-=-=-=-=-= BACKGROUND =-=-=-=-=-=-=-=-=-=-= */

.bg-seashell {
    background-color: var(--seashell);
    color: var(--cinza);
}

.bg-bege {
    background-color: var(--bege);
    color: var(--branco);
}

.bg-cinza {
    background-color: var(--cinza);
    color: var(--branco);
}

.bg-laranja {
    background-color: var(--laranja) !important;
    color: var(--branco) !important;
}

.bg-laranja *::selection {
    background-color: var(--branco);
    color: var(--laranja);
}

.bg-branco {
    background-color: var(--branco);
    color: var(--cinza);
}

.bg-marrom {
    background-color: var(--marrom);
    color: var(--cinza);
}

/* =-=-=-=-=-=-=-=-=-=-= ./BACKGROUND =-=-=-=-=-=-=-=-=-=-= */

/* =-=-=-=-=-=-=-=-=-=-= BOTÕES =-=-=-=-=-=-=-=-=-=-= */

.btn, input[type="submit"] {
    height: 40px !important;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
    font-weight: 500;
    transition: all .2s ease;
}

.btn-laranja {
    background-color: var(--laranja) !important;
    color: var(--branco) !important;
}

.btn-azul {
    background-color: var(--azul) !important;
    color: var(--branco) !important;
}

.btn-azul:hover {
    transform: scale(1.02);
    background-color: var(--laranja) !important;
    color: var(--branco) !important;
}

/* =-=-=-=-=-=-=-=-=-=-= ./BOTÕES =-=-=-=-=-=-=-=-=-=-= */

/* =-=-=-=-=-=-=-=-= MARGINS & PADDINGS =-=-=-=-=-=-=-=-= */

.mb-s {
    margin-bottom: 25px !important;
}

.mb-m {
    margin-bottom: 50px !important;
}

.mb-l {
    margin-bottom: 100px !important;
}

.mt-s {
    margin-top: 25px !important;
}

.mt-m {
    margin-top: 50px !important;
}

.mt-l {
    margin-top: 100px !important;
}

.mtb-s {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mtb-m {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mtb-l {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.m-center {
    margin-left: auto !important;
    margin-right: auto !important;
}

.pb-s {
    margin-bottom: 25px !important;
}

.pb-m {
    margin-bottom: 50px !important;
}

.pb-l {
    margin-bottom: 100px !important;
}

.pt-s {
    padding-top: 25px !important;
}

.pt-m {
    padding-top: 50px !important;
}

.pt-l {
    padding-top: 100px !important;
}

.ptb-s {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.ptb-m {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ptb-l {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* =-=-=-=-=-=-=-=-= ./ MARGINS & PADDINGS =-=-=-=-=-=-=-=-= */

/* =-=-=-=-=-=-=-=-=-= TEXTO =-=-=-=-=-=-=-=-=-= */

.uppercase {
    text-transform: uppercase !important;
}

.text-100 {
    font-weight: 100 !important;
}

.text-300 {
    font-weight: 300 !important;
}

.text-400 {
    font-weight: 400 !important;
}

.text-500 {
    font-weight: 500 !important;
}

.text-700 {
    font-weight: 700 !important;
}

.text-900 {
    font-weight: 900 !important;
}

/* =-=-=-=-=-=-=-=-= ./ TEXTO =-=-=-=-=-=-=-=-= */

.divisoria {
    width: 30px !important;
    height: 2px !important;
    opacity: 1 !important;
    margin-top: 0;
}

/* =-=-=-=-=-=-=-=-=-= INPUTS =-=-=-=-=-=-=-=-=-= */

input {
    height: 40px;
    border: 1px solid var(--cinza);
    border-radius: 20px;
    padding: 5px 15px;
}

textarea {
    max-height: 200px;
    border: 1px solid var(--cinza);
    border-radius: 20px;
    padding: 5px 15px;
}

textarea, input {
    font-style: italic;
    color: var(--cinza);
}

input ::-webkit-input-placeholder {
    /* Chrome and Safari */
    color: var(--laranja);
    font-style: italic;
}

input :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--cinza);
    font-style: italic;
    opacity: 1;
}

input ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--cinza);
    font-style: italic;
    opacity: 1;
}

input :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--cinza);
    font-style: italic;
}

input ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--cinza);
    font-style: italic;
}

/* =-=-=-=-=-=-=-=-=-= ./ INPUTS =-=-=-=-=-=-=-=-=-= */

/* ./ ESTILOS GLOBAIS */

/* WIDGETS */

li.widget {
    list-style: none;
}

/* ./ WIDGETS */

/* HEADER */

header {
    background-color: var(--seashell);
    width: 100%;
    transition: all 0.2s ease;
    height: 100%;
    padding-top: 25px;
    padding-bottom: 15px;
}

/* Menu */

header .container {
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

header .nav-mobile {
    display: none;
}

header .container .row {
    padding-top: 60px;
}

header .top-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin: auto;
}

header .top-menu li a {
    padding: 0 1rem;
    color: var(--cinza);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: block;
    margin-top: 5px;
}

header .top-menu li a:hover {
    /* transform: scale(1.05); */
    color: var(--laranja);
}

header .top-menu li:last-child a {
    border: none;
    background-color: var(--laranja);
    color: var(--branco) !important;
    padding: 5px 15px;
    margin-left: 10px;
    margin-top: 0;
    font-weight: 600;
}

header .top-menu li:last-child a:hover {
    background-color: var(--bordo);
    border: none;
}

header .menu-hat {
    position: absolute !important;
    margin-left: 1rem;
    background-color: var(--laranja);
    height: 2px;
    width: 20px;
    transition: all .3s ease-in-out;
    margin-top: -10px;
}

.nav-menu-1000 {
    position: relative;
    background-color: var(--eerieblack);
    overflow: hidden;
    z-index: 5;
    max-height: 0;
    transition: max-height 0.8s ease-out;
}

.top-menu-mobile {
    margin: 0;
    width: 100%;
}

.top-menu-mobile li {
    padding: 10px 15px;
    width: 100%;
    border-right: 1px solid var(--laranja);
    text-align: right;
    transition: all 0.2s ease;
    list-style: none;
}

.top-menu-mobile li:hover {
    padding-right: 10px;
    border-right: 8px solid var(--laranja);
}

.top-menu-mobile li a {
    text-decoration: none;
    color: var(--cinza);
    transition: all .2s ease;
    display: block;
}

.top-menu-mobile li a:hover {
    color: var(--camel);
}

.current-menu-item a {
    color: var(--laranja) !important;
    /* font-weight: 600;
    border-bottom: 1px solid var(--laranja); */
}

#mobile-nav-icon {
    color: var(--eerieblack);
    cursor: pointer;
    padding: 5px;
    font-size: xx-large;
    transition: all 0.2s ease;
}

#mobile-nav-icon:hover {
    color: var(--camel);
}

#mobile-nav-icon i {
    transition: all 0.4s ease;
}

.hide-mobile-nav-icon {
    transform: rotate(360deg);
}

.mh-100 {
    max-height: 400px !important;
    height: 100%;
}

/* ./ HEADER */

/* FOOTER */

footer ul {
    margin: 0;
    padding: 0;
}

footer a {
    color: var(--branco);
    text-decoration: var(--branco);
}

footer a:hover {
    color: var(--bege);
}

#top-footer {
    padding-top: 30px;
}

#bottom-footer {
    padding: 20px 0;
    font-size: .8rem !important;
    margin-top: -1px;
}

ul.footer-logo li:first-child {
    margin-bottom: 30px;
}

ul.footer-logo li p {
    font-size: .9rem;
    max-width: 310px;
}

.footer-social {
    margin-bottom: 50px;
}

.footer-social li {
    display: inline-block;
    margin-right: 10%;
}

.footer-social li:last-child {
    margin-right: 0;
}

#footer-row {
    padding: 50px 0;
}

.footer-menu-widget ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-menu-widget ul li {
    list-style: none;
    padding-bottom: 20px;
}

.footer-menu-widget ul li:last-child {
    padding-bottom: 0;
}

.footer-menu-widget ul li a {
    color: var(--branco);
    font-weight: 700;
    text-decoration: none;
}

.footer-menu-widget ul li a:hover {
    color: var(--laranja);
}

.footer-contato ul {
    padding: 0;
    margin: 25px 0 0 0;
}

.footer-contato ul li {
    list-style: none;
    padding-bottom: 10px;
}

.footer-contato ul li span {
    font-size: .7rem;
}

.footer-contato ul li img {
    margin-right: 5px;
}

ul.footer-contato li p {
    font-size: .9rem;
}

/* .footer-assinatura {
    margin: 20px auto;
} */

.footer-assinatura li {
    display: inline-block;
}

.footer-assinatura p {
    margin-bottom: 0;
    text-align: center;
}

ul.footer-iso {
    padding: 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

ul.footer-iso li p {
    margin: 0 0 0 10px;
    padding: 0;
    font-size: .9rem;
}

/* ./FOOTER */

/* =-=-=-=-=-=-=-=-=-=-= GLOBAL STYLES -=-=-=-=-=-=-=-=-=-=-=-=-= */

.text-light {
    color: var(--isabelline) !important;
}

.text-dark {
    color: var(--eerieblack);
}

.title {
    font-size: 76px;
}

.subtitle {
    font-size: 55px !important;
    font-weight: 100 !important;
    line-height: 70px !important;
}

.text {
    font-size: 20px !important;
    font-weight: 100 !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-dark {
    color: var(--eerieblack) !important;
}

.img-circle {
    border-radius: 50% !important;
}

.wp-block-columns {
    margin-bottom: 0;
}

/* =-=-=-=-=-=-=-=-=-=-= PAGE STYLES -=-=-=-=-=-=-=-=-=-=-=-=-= */

/* HOME */

.banner-title span {
    color: var(--laranja);
}

.h2-home {
    font-family: "Marcellus", sans-serif !important;
    color: var(--laranja) !important;
    font-size: 2rem;
}

.bloco-home-1 {
    max-width: 500px;
    padding: 50px 20px;
}

.bloco-home-1 {
    max-width: 540px;
    padding: 50px 20px;
    line-height: 2;
}

.bloco-home-1-img {
    overflow: hidden;
}

.bloco-home-1-img img {
    max-width: fit-content;
    height: 100%;
}

.wp-block-image {
    margin-bottom: 0;
}

.home-subtitle {
    font-family: var(--marcellus);
    color: var(--bordo);
    margin-top: 10px;
}

.home-subtitle-branco {
    font-family: var(--marcellus);
    color: var(--branco);
    margin-top: 10px;
}

.home-produtos-header {
    padding: 80px 0;
}

.home-produtos-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: calc(100vw/5);
    background-color: #FFCFB8;
    background-blend-mode: overlay;
    transition: all .3s ease;
    text-align: center;
    padding: 30px;
    word-break: keep-all;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-produtos-item h2,
.home-produtos-item h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cinza);
    font-size: 1.3rem;
    letter-spacing: 3px;
    transition: all .2s ease;
}

.home-produtos-item a {
    display: none;
    border-radius: 0 !important;
    background-color: var(--laranja);
    text-decoration: none;
    color: var(--branco);
    font-size: 1.1rem;
    font-weight: 300;
    padding: 10px 20px;
    transition: all .2s ease;
}

.home-produtos-item a:hover {
    background-color: var(--branco);
    color: var(--laranja);
}

.home-produtos-item:hover {
    background-color: transparent;
}

.home-produtos-item:hover h2,
.home-produtos-item:hover h3 {
    color: var(--branco);
    font-weight: 600;
}

.home-produtos-item:hover a {
    display: block;
}

.home-produtos-wrap {
    display: flex;
    flex-wrap: wrap;
}

.home-produtos-btn {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: calc(100vw/5);
    background-color: var(--bege) !important;
    background-blend-mode: overlay;
    transition: all .3s ease;
    text-align: center;
    padding: 30px;
}

.home-produtos-btn a {
    border: 1px solid var(--cinza);
    padding: 15px 30px;
    color: var(--cinza);
    text-decoration: none;
    text-transform: uppercase;
}

.home-produtos-btn a:hover {
    color: var(--branco);
    background-color: var(--marrom);
}

/* Clientes*/

.slick-prev:before, .slick-next:before {
    color: var(--cinza);
}

.slick-next:before {
    content: url(/wp-content/uploads/2021/07/btn-next.png);
}

.slick-prev:before {
    content: url(/wp-content/uploads/2021/07/btn-prev.png);
}

.cliente-item {
    /* border-right: 1px solid var(--cinza); */
    padding-bottom: 15px;
}

.cliente-item:last-child {
    border-right: none;
}

/* Depoimentos */

.depoimento-item {
    position: relative;
    display: flex !important;
    justify-content: flex-end;
    margin: 50px 75px;
}

.depoimento-content {
    position: relative;
    max-width: 500px;
    background-color: var(--branco);
    color: var(--cinza);
}

.depoimento-txt {
    padding: 20px 20px 20px 90px;
}

.depoimento-txt p {
    font-size: .8rem;
}

.depoimento-txt .dp_empresa {
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.depoimento-txt .dp_nome {
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.depoimento-img {
    position: absolute;
    transform: translateX(-50%);
}

/* Contato */

.wpforms-submit {
    background-color: var(--laranja) !important;
    color: var(--branco) !important;
    border: none !important;
}

.bloco-home-2-img {
    height: 100%;
}

.bloco-home-2-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.form-col input[type="submit"]:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.home-formtext-web {
    max-width: 450px;
    display: block;
}

.home-formtext-mobile {
    display: none;
}

.form-wrap label {
    color: var(--preto) !important;
    margin-top: 5px !important;
}

.form-wrap p {
    color: var(--preto) !important;
}

.col-form {
    max-width: 700px;
    width: 100%;
}

.form-wrap input, div.wpforms-container .wpforms-form .choices__inner, .produto-contato input, .contato-form-wrap input {
    color: var(--preto) !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--preto) !important;
}

.form-wrap textarea, .produto-contato textarea, .contato-form-wrap textarea {
    color: var(--preto) !important;
    background-color: transparent !important;
    border: 1px solid var(--preto) !important;
}

.choices__list.choices__list--dropdown {
    background-color: var(--seashell) !important;
}

div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--bege) !important;
}

#wpgmza_map {
    opacity: .95 !important;
    float: inherit !important;
}

/* -=-=-=-=-=-=-=-=-= SOBRE NÓS =-=-=-=-=-=-=-=-=- */

.h2-sobrenos {
    font-family: "Marcellus", sans-serif;
    color: var(--laranja);
    font-size: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sobrenos-banner-1 p {
    line-height: 2.2;
}

.timeline {
    border-left: 1px solid var(--laranja);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    margin: 0 auto;
    letter-spacing: 0.2px;
    position: relative;
    line-height: 1.4em;
    padding: 50px;
    list-style: none;
    text-align: left;
    max-width: 80%;
    color: var(--seashell);
    font-weight: 100;
    transform: translateX(20%);
}

@media (max-width: 767px){.timeline {
        max-width: 98%;
        padding: 25px;
    }}

.timeline h1 {
    font-weight: 300;
    font-size: 1.4em;
}

.timeline h2, .timeline h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.timeline .event {
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
}

@media (max-width: 767px){.timeline .event {
        padding-top: 30px;
    }
    .timeline {
        transform: translateX(0);
    }}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before, .timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    font-family: "Marcellus", sans-serif;
    color: var(--laranja);
    left: -115%;
    content: attr(data-date);
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
    min-width: 120px;
    font-size: 1.8rem;
    width: 100%;
}

@media (max-width: 991px){.timeline .event:before {
        left: -120%;
    }}

@media (max-width: 767px){.timeline .event:before {
        left: 0px;
        text-align: left;
    }}

.timeline .event:after {
    left: -55.8px;
    background: var(--laranja);
    height: 9px;
    width: 9px;
    content: "";
    top: 5px;
    transform: rotate(45deg);
    margin-left: 1px;
}

@media (max-width: 767px){.timeline .event:after {
        left: -31.8px;
    }}

.rtl .timeline {
    border-left: 0;
    text-align: right;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-right: 3px solid var(--laranja);
}

.rtl .timeline .event::before {
    left: 0;
    right: -170px;
}

.rtl .timeline .event::after {
    left: 0;
    right: -55.8px;
}

.sobrenos-subtitulos {
    font-family: 'Marcellus', sans-serif;
    font-size: 4rem;
}

.mvv-wrap p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
}

.mvv-img {
    overflow: hidden;
    height: 100%;
}

.mvv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mvv-hidden {
    display: none;
}

.mvv-shown {
    display: block;
}

@media (max-width: 781px){.mvv-hidden {
        display: block;
    }
    .mvv-shown {
        display: none;
    }}

.acoes-img img {
    width: 100%;
    height: auto;
}

.acoes-wrap p {
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 2;
}

@media (min-width: 1600px){.col-form {
        max-width: 600px;
        width: 100%;
        margin-left: 25%;
    }}

/* -=-=-=-=-=-=-=-=-= ./ SOBRE NÓS =-=-=-=-=-=-=-=-=- */

/* -=-=-=-=-=-=-=-=-= PRODUTOS =-=-=-=-=-=-=-=-=- */

.produtos-item {
    width: 29%;
    margin: 0 20px 40px 20px;
    flex-grow: 1;
}

.produtos-item-placeholder-single {
    display: none;
    background-color: transparent;
}

.produto-title {
    font-family: 'Marcellus', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: 1rem;
}

.produto-descricao {
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 2rem;
}

.produto-descricao p {
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1rem;
}

p.produto-color-title {
    font-family: 'Marcellus', sans-serif;
    font-size: 1.4rem;
    color: var(--laranja);
}

.color-list {
    padding: 0;
    margin-bottom: 50px;
}

.color-list li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.color-item {
    background-color: var(--bege);
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: all .2s ease;
    border: 1px solid var(--bege);
}

a.color-item:hover {
    transform: scale(1.2);
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.5);
}

.no-color {
    background-color: transparent !important;
    border: 1px solid var(--bege);
}

.color-item hr {
    background-color: red;
    height: 2px;
    opacity: 1;
    transform: rotate(-40deg);
    top: 2px;
    position: relative;
}

.produto-cor span {
    color: var(--laranja);
}

.btn-produto {
    border-radius: 0;
    font-weight: 400;
    line-height: 1.6;
}

.produtos-specs h2 {
    font-family: 'Marcellus', sans-serif;
    color: var(--laranja);
    text-transform: uppercase;
    font-size: 1.7rem;
}

.produtos-specs hr {
    background-color: var(--laranja);
    opacity: 1;
    margin: 15px 0 30px 0;
}

.produtos-specs p {
    line-height: 2;
}

.produto-contato-form {
    width: 50%;
    justify-content: flex-end;
    display: flex;
}

.produto-contato {
    width: 600px;
    margin-right: 50px;
}

.produto-contato-img {
    width: 50%;
}

.produto-contato-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.produto-nav img {
    padding: 15px 7px;
}

@media (min-width:1201px) and (max-width:1400px){.produto-contato {
        width: 510px;
    }}

@media (max-width:1200px){.produto-contato {
        width: 420px;
    }}

@media (min-width:768px) and (max-width:990px){.produto-contato {
        width: 300px;
    }}

@media (max-width:767px){.produto-contato-form {
        width: 100%;
        justify-content: center;
        padding-left: 50px;
    }
    .produto-contato-img {
        width: 100%;
    }}

@media (min-width:601px) and (max-width:990px){.produtos-item-placeholder-single {
        display: block;
    }}

@media (max-width:991px){.produtos-item {
        width: 27%;
    }}

/* -=-=-=-=-=-=-=-=-= ./ PRODUTOS =-=-=-=-=-=-=-=-=- */

/* CONTATO */

.contato-form-wrap {
    max-width: 600px;
}

.titulo-obrigado {
    color: var(--laranja);
    font-family: var(--marcellus);
    margin-bottom: 30px;
}

.btn-obrigado {
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    min-width: 160px;
    margin: 10px 30px;
}

.obrigado-wrap {
    margin: 150px 10px;
}

/* ./CONTATO */

/* -=-=-=-=-=-=-=-=-= BLOG POSTS =-=-=-=-=-=-=-=-=- */

/* NOVOS */

a.blog-img-link {
    display: block;
    overflow: hidden;
    background-color: var(--laranja);
}

a.blog-img-link img {
    transition: all .2s ease;
}

a.blog-img-link:hover img {
    transform: scale(1.1);
    filter: grayscale(1);
    mix-blend-mode: multiply;
}

.blog-item-titulo a {
    text-decoration: none;
    color: var(--cinza);
    font-weight: 700;
}

.blog-item-titulo a:hover {
    color: var(--laranja);
}

time.blog-item-data {
    display: block;
    font-size: .9rem;
    color: var(--laranja);
    margin: 10px 0 20px;
}

.blog-item-titulo {
    display: block;
    margin: 10px 0 20px 0;
}

p.blog-item-resumo {
    line-height: 2;
    padding-right: 10px;
}

p.blog-item-assunto a {
    color: var(--laranja);
    font-family: 'Marcellus', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0 5px;
    left: -5px;
    position: relative;
}

p.blog-item-assunto a:hover {
    background-color: var(--laranja);
    color: var(--branco);
    border-radius: 2px;
}

p.blog-item-assunto {
    margin-top: 15px;
}

/*  */

ul.breadcrumbs {
    padding-left: 0;
    margin-top: 50px;
}

ul.breadcrumbs li {
    display: inline-block;
}

ul.breadcrumbs li:last-child {
    color: var(--laranja);
}

ul.breadcrumbs li a {
    text-decoration: none;
    color: var(--cinza);
}

ul.breadcrumbs .breadcrumb-arrow {
    font-size: .8rem;
    padding: 0 5px;
}

h2.post-title {
    font-weight: 600 !important;
    text-align: center;
    width: 100%;
    padding: 50px 0;
}

.post-date {
    margin: 7px 0;
}

.post-date p {
    font-size: 18px;
    font-weight: 100;
}

.post_content_wrap {
    margin: 60px 0;
}

.post-content {
    font-weight: 400;
    line-height: 2;
    padding-right: 40px;
}

.js-rmp-results {
    display: none !important;
}

.rate-wrap, .rmp-rating-widget {
    text-align: left !important;
}

.rmp-icon--hovered {
    color: var(--laranja) !important;
    -webkit-text-stroke-color: var(--laranja) !important;
}

.rmp-rating-widget {
    color: var(--bege);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--laranja);
    margin-top: 20px;
}

.js-rmp-vote-count {
    display: none !important;
}

.rmp-icon--ratings {
    color: #FFF5EF !important;
}

.rmp-icon--full-highlight {
    color: var(--laranja) !important;
}

.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__not-rated {
    margin: 0 0 .4rem 0;
    font-size: .8rem;
    font-weight: 400;
    -webkit-text-stroke-width: 0;
    color: var(--bordo);
    max-width: 220px;
}

.rmp-rating-widget .rmp-icon--half-highlight {
    background: linear-gradient(to right, var(--laranja) 50%, var(--seashell) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-post-title {
    font-family: 'Marcellus', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--laranja);
    margin: 80px 0;
}

p.blog-post-date {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--laranja);
}

/* .rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__msg {
    color: var(--cinza);
} */

.rate-wrap {
    margin: 20px 0;
}

.rate-text {
    font-weight: 600;
    margin-right: 30px;
    ;
}

.rate-average {
    margin-left: 15px;
    font-weight: 600;
}

.post-tag {
    text-decoration: none;
    background-color: var(--laranja);
    padding: 5px 10px;
    color: var(--seashell);
    font-weight: 500;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 2px;
    transition: all .2s ease;
    display: inline-block;
    margin-bottom: 30px;
}

.post-tag:hover {
    color: var(--seashell);
    transform: scale(1.1);
}

.post-widget {
    list-style: none;
    max-height: 600px;
}

.blog-sidebar {
    padding: 0;
    text-align: center;
}

.post-widget h4 {
    color: var(--isabelline);
    font-size: 35px;
    line-height: 50px;
    margin-top: 40px;
}

.btn-newsletter {
    font-size: 18px !important;
    padding: 5px 25px !important;
    color: var(--camel) !important;
    background-color: var(--isabelline) !important;
}

.newsletter-input input {
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
    border-bottom: 1px solid var(--isabelline) !important;
    width: 100% !important;
    max-width: 450px !important;
    color: var(--isabelline) !important;
    font-weight: 100 !important;
}

div.wpforms-container-full {
    margin-bottom: 24px;
    margin-top: 30px !important;
}

.post-social-web {
    display: flex;
}

.post-social-mobile {
    display: none;
}

.post-social-web div {
    flex-direction: column !important;
}

.post-social a {
    margin: 10px 0;
    transition: all .2s ease;
}

.post-social a:hover {
    transform: scale(1.1);
}

.latest-posts hr {
    margin: 50px 0 70px 0;
}

.latest-posts h2 {
    font-weight: 600;
    margin-bottom: 50px;
}

/* Popular Posts */

.mais-lida-wrap {
    margin-bottom: 50px;
    max-width: 845px;
}

.mais-lidas ul {
    padding: 0;
}

li.mais-lidas-items {
    list-style: none;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--laranja);
    padding-bottom: 25px;
}

.mais-lidas-content--lista {
    margin-bottom: 15px !important;
}

.mais-lidas-content--lista a {
    text-decoration: none;
    font-family: var(--marcellus);
    color: var(--laranja);
}

.mais-lidas-content--lista a:hover {
    color: var(--bordo);
}

li.mais-lidas-items p {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.mais-lidas-content {
    padding: 50px 50px 40px 50px;
}

.mais-lidas-content--destaque {
    margin-bottom: 15px;
}

.mais-lidas-content--destaque a {
    color: var(--laranja);
    font-family: var(--marcellus);
    text-decoration: none;
}

.mais-lidas-content--destaque a:hover {
    color: var(--bordo);
}

.mais-lidas-content p {
    font-size: 1.2rem;
    line-height: 2;
}

/* .mais-lidas h2 {
    margin: 100px 0 50px;
} */

.blog-cat-title {
    font-family: var(--marcellus);
    color: var(--laranja);
    font-size: 2.2rem;
    margin: 50px 0;
}

.blog-item-content {
    margin-bottom: 50px;
}

/* PAGE NUMBERS */

.page-numbers {
    color: var(--bordo);
    text-decoration: none;
    margin: 0 3px;
    font-weight: 500;
    font-size: 1.2rem;
}

a.page-numbers:hover {
    color: var(--laranja);
}

.current {
    background-color: var(--laranja);
    color: var(--branco);
    padding: 2px 10px;
    border-radius: 3px;
}

/* ./ PAGE NUMBERS */

/* PROJETOS */

.projetos_wrap {
    display: flex;
    flex-wrap: wrap;
}

.projeto-item {
    /* flex-grow: 2;
    flex-shrink: 1; */
    flex-basis: 50%;
    background-color: var(--preto);
    position: relative;
    overflow: hidden;
}

.projeto-item-texto {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: var(--branco);
    width: 100%;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 5px;
}

.projeto-item-texto:hover {
    background-color: transparent !important;
}

.projeto-item-texto a {
    color: var(--branco);
    text-decoration: none;
}

.projeto-item-texto p {
    font-weight: 300;
}

.projeto-item-texto p a {
    font-weight: 500;
}

.projeto-item-texto a:hover {
    color: var(--laranja);
}

.projeto-mosaico-titulo {
    font-family: "Marcellus", sans-serif;
    color: var(--branco);
}

.projeto-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .5;
    transition: all .4s ease;
}

.projeto-item a img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.projeto-item:hover .projeto-item-texto {
    /* color: var(--laranja); */
    background-color: rgba(0, 0, 0, 0.5);
}


.projeto-item:nth-child(1) {
    flex-basis: 40%;
}

.projeto-item:nth-child(2) {
    flex-basis: 60%;
}

.projeto-item:nth-child(3) {
    flex-basis: 60%;
}

.projeto-item:nth-child(4) {
    flex-basis: 40%;
}

.projeto-item:nth-child(5) {
    flex-basis: 40%;
}

.projeto-item:nth-child(6) {
    flex-basis: 60%;
}

.projeto-item-single {
    flex-basis: 50% !important;
}

.projeto-foto-capa {
    margin-bottom: 30px;
}

.projeto-autor, .projeto-autor a {
    font-family: var(--marcellus);
    color: var(--laranja);
    margin-bottom: 10px;
}

.projeto-autor a:link {
    text-decoration: none;
    font-weight: 700;
    transition: all .2s;
    padding: 0 10px;
    margin-left: -10px;
}

.projeto-autor a:hover {
    color: var(--seashell);
    background-color: var(--laranja);
    padding: 0 10px;
}

.projeto-autor-info a {
    font-weight: 600;
    color: var(--cinza);
    margin-bottom: 0;
    font-size: 1rem;
    text-decoration: none;
}

.projeto-autor-info a:hover {
    color: var(--laranja);
}

.autor-foto-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

.projeto__subtitle {
    color: var(--laranja);
    margin: 30px 0 15px 0;
    font-family: 'Marcellus',sans-serif;
    font-size: 1.5rem;
}

.autor-foto {
    padding-right: 30px;
}

.projeto-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.projeto-body p {
    line-height: 1.8;
    text-align: justify;
}

.projeto-autor-texto {
    font-size: .9rem;
    text-align: justify;
    line-height: 1.7;
}

.projeto-body {
    margin-bottom: 40px;
}

.btn-projeto {
    border-radius: 0;
    line-height: 2.4;
    height: 50px !important;
    margin-right: 20px;
    margin-bottom: 20px;
}

.btn-projeto:last-child {
    margin-right: 0;
}

.autor-foto-img {
    border-radius: 50%;
}

/* ./ PROJETOS */

/* Responsive header*/

@media (max-width:1100px){.produto-nav {
        max-height: 170px;
        overflow-y: hidden;
    }}

@media (max-width: 990px){header .container {
        display: none;
    }
    header .nav-mobile {
        display: block;
    }
    header {
        padding-top: 10px;
        padding-bottom: 0px;
    }
    .img-hide {
        display: none;
    }
    header .menu-hat {
        display: none;
    }
    ul.footer-iso {
        justify-content: center;
    }
    .footer-legal {
        text-align: center;
    }
    .footer-social-wrap {
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }
    .home-produtos-item {
        width: 33.33%;
        height: calc(100vw/3);
    }
    .home-produtos-btn {
        width: 100%;
        height: calc(100vw/4);
    }
    .home-produtos-item a {
        display: block;
        font-size: 1rem;
    }
    .home-produtos-item h3 {
        font-size: 1rem;
    }
    .mais-lidas-content {
        padding: 30px 30px 20px 30px;
    }
    .produtos-item-placeholder {
        display: none;
    }}

@media (max-width:767px){#footer-row .col-12 {
        padding: 20px 20px;
    }
    #footer-row {
        padding: 0 0;
        text-align: center;
    }
    .roll-icon {
        display: none;
    }
    ul.footer-logo li p {
        max-width: 100%;
    }
    ul.footer-iso {
        justify-content: center;
    }
    .footer-social-wrap {
        margin-top: 0;
    }
    .wp-block-column {
        flex-basis: 100%!important;
    }}

@media (min-width: 600px){.wp-block-column {
        flex-basis: 100%!important;
    }}

@media (max-width: 600px){.top-banner-title {
        font-size: 50px !important;
        line-height: 60px;
    }
    .top-banner-subtitle {
        font-size: 28px !important;
        line-height: 38px;
    }
    .footer-col-1 {
        text-align: center;
    }
    .home-formtext-web {
        display: none;
    }
    .home-formtext-mobile {
        text-align: center;
        display: block;
    }
    .form-col input[type="text"], .form-col input[type="email"], .form-col textarea {
        width: 100%;
    }
    .home-contato-col {
        justify-content: center !important;
    }
    .home-produtos-item {
        width: 50%;
        height: calc(100vw/2);
    }
    .home-produtos-btn {
        width: 50%;
        height: calc(100vw/2);
    }
    .depoimento-item {
        margin: 50px 0;
    }
    .depoimento-img {
        position: relative;
        transform: translateX(0);
    }
    .depoimento-img img {
        position: relative;
        margin: 25px auto 5px;
        max-height: 120px !important;
    }
    .depoimento-txt {
        padding: 20px;
    }
    .post-social-web {
        display: none;
    }
    .post-social-mobile {
        display: flex;
    }
    .post-social {
        flex-direction: row !important;
        justify-content: center !important;
        margin-bottom: 20px;
    }
    .post-social div {
        justify-content: center !important;
    }
    .post-social a {
        margin-right: 30px;
    }
    .post-social a:last-child {
        margin-right: 0;
    }
    .post_content_wrap {
        margin: 30px 0;
    }
    .rate-text {
        width: 100%;
    }
    .projeto-item {
        flex-basis: 100% !important;
    }
    div#n2-ss-2 .n2-font-0c8015f225ca9ab4bde15b8d880d5e8d-hover {
        font-size: 120% !important;
    }
    div#n2-ss-4 .n2-font-5ee024765257303af548151927e4abb0-hover,
    div#n2-ss-3 .n2-font-5ee024765257303af548151927e4abb0-hover,
    div#n2-ss-7 .n2-font-6b85f969b8921ee8aebd898024d421e2-hover {
        font-size: 200% !important;
    }}

@media (min-width: 600px) and (max-width: 781px){.wp-block-column:nth-child(2n) {
        margin-left: 0;
    }}

@media (min-width: 600px) and (max-width: 781px){.wp-block-column:not(:only-child) {
        flex-basis: 100% !important;
        flex-grow: 0;
    }}.n2-in-fullscreen *{animation-name:initial}.n2-in-fullscreen [data-uk-scrollspy*=uk-animation-]:not([data-uk-scrollspy*=target]){opacity:1}ss3-fullpage{display:block}ss3-fullpage[data-based-on=real]{opacity:0}ss3-force-full-width{position:relative;display:block;opacity:0;width:100vw;transform:translateX(-100vw)}.n2-section-smartslider{position:relative;width:100%;outline:0;--widget-offset: 0px}.n2-section-smartslider--hidden{display:none}.n2-ss-align{position:relative;z-index:0;overflow:hidden}.n2-ss-align.n2-ss-align-visible{overflow:visible}.n2-ss-slider{display:grid;grid-template-columns:100%;grid-template-rows:1fr auto;-webkit-font-smoothing:antialiased;font-size:16px;line-height:1;user-select:none;--ss-fs: flex-start;--ss-fe: flex-end;--ss-r: row;--ss-rr: row-reverse}.n2-ss-slider [data-force-pointer],.n2-ss-slider [data-force-pointer] *{cursor:pointer!important}.n2-ss-slider [data-force-pointer=zoom-in],.n2-ss-slider [data-force-pointer=zoom-in] *{cursor:zoom-in!important}.n2-ss-slider .n2-ss-text{user-select:text;cursor:initial}.n2-ss-slider-has-no-slide{height:0!important;opacity:0!important;overflow:hidden!important}.n2-ss-slider,.n2-ss-slider .n2_ss__touch_element{-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}.n2-ss-slider>*,.n2-ss-slider .n2_ss__touch_element>*{-webkit-tap-highlight-color:initial}.n2-ss-slider .n2-ow,.n2-ss-slider .n2-ow-all *{font-size:inherit;line-height:inherit;letter-spacing:inherit}.n2-ss-slider .n2-ow,.n2-ss-slider .n2-ow:before,.n2-ss-slider .n2-ow:after,.n2-ss-slider .n2-ow-all *,.n2-ss-slider .n2-ow-all :before,.n2-ss-slider .n2-ow-all :after{box-sizing:content-box}.n2-ss-slider .n2-ow:before,.n2-ss-slider .n2-ow:after,.n2-ss-slider .n2-ow-all :not(i):before,.n2-ss-slider .n2-ow-all :not(i):after{display:none}.n2-ss-slider a.n2-ow,.n2-ss-slider .n2-ow-all a{border:0;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual;hyphens:manual}.n2-ss-slider a.n2-ow,.n2-ss-slider a.n2-ow:focus,.n2-ss-slider .n2-ow-all a,.n2-ss-slider .n2-ow-all a:focus{outline:0!important;transition:none 0s;box-shadow:none;text-decoration:none}.n2-ss-slider path{transition:none 0s}.n2-ss-slider .n2-ow-all b,.n2-ss-slider .n2-ow-all i{color:inherit}.n2-ss-slider h1.n2-ow,.n2-ss-slider h2.n2-ow,.n2-ss-slider h3.n2-ow,.n2-ss-slider h4.n2-ow,.n2-ss-slider h5.n2-ow,.n2-ss-slider h6.n2-ow,.n2-ss-slider p.n2-ow,.n2-ss-slider blockquote.n2-ow,.n2-ss-slider .n2-ow-all h1,.n2-ss-slider .n2-ow-all h2,.n2-ss-slider .n2-ow-all h3,.n2-ss-slider .n2-ow-all h4,.n2-ss-slider .n2-ow-all h5,.n2-ss-slider .n2-ow-all h6,.n2-ss-slider .n2-ow-all p,.n2-ss-slider .n2-ow-all blockquote{margin:0;padding-left:0;padding-right:0;height:auto;width:auto;border:0;box-shadow:none;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual;hyphens:manual}.n2-ss-slider iframe{border:0;min-height:0}.n2-ss-slider iframe.n2-ow,.n2-ss-slider .n2-ow-all iframe{margin:0}.n2-ss-slider img.n2-ow,.n2-ss-slider .n2-ow-all img,.n2-ss-slider svg.n2-ow,.n2-ss-slider .n2-ow-all svg{max-width:none;max-height:none;height:auto;box-shadow:none;border-radius:0;background:0 0;background:0 0;padding:0;margin:0;border:0;vertical-align:top}.n2-ss-slider picture.n2-ow,.n2-ss-slider .n2-ow-all picture{display:inline-block}.n2-ss-slider source{display:none}.n2-ss-slider ul.n2-ow,.n2-ss-slider li.n2-ow,.n2-ss-slider img.n2-ow,.n2-ss-slider a.n2-ow,.n2-ss-slider p.n2-ow,.n2-ss-slider ol.n2-ow,.n2-ss-slider textarea.n2-ow,.n2-ss-slider input.n2-ow,.n2-ss-slider button.n2-ow{transition:none 0s}.n2-ss-slider p{background-color:transparent}.n2-ss-slider ol{margin:0}.n2-ss-slider{z-index:3;position:relative;text-align:left;width:100%;min-height:1px}[dir=rtl] .n2-ss-slider{text-align:right}.n2-ss-slider :focus{outline:0}.n2-ss-slider[data-responsive=fullpage]{min-height:calc(var(--target-height, 100vh) - var(--subtract, 0px) - var(--subtract-vertical-offset, 0px) - var(--subtract-vertical-widget, 0px))}.n2-ss-slider.n2-ss-slider--fullscreen[data-responsive=fullpage]{min-height:100vh}.n2-ss-slider.n2-ss-slider--fullscreen .n2-ss-preserve-size--slider{display:none!important}[dir=rtl] .n2-ss-slider .n2-ss-slide-background{text-align:left}.n2-ss-slider.n2notransition *{transition:none 0s!important}.n2-ss-slider .n2-ss-preserve-size{width:100%;visibility:hidden}.n2-ss-slider .n2-ss-preserve-size[data-related-device]{display:none}.n2-ss-slider .n2-ss-preserve-size[data-related-device=desktopPortrait]{display:block}.n2-ss-slider .n2-ss-slider-background-video{position:absolute;left:0;top:0;width:100%;height:100%}.n2-ss-slider .n2-cover{object-fit:cover}.n2-ss-slider .n2-contain{object-fit:contain}.n2-ss-slider .n2-ss-slide{position:relative;overflow:hidden;text-align:center;--ssselfalign: center}.n2-ss-full-page--constrain-ratio .n2-ss-slide{overflow:visible}.n2-ss-slider .n2-ss-slide--focus{position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;filter:opacity(0);z-index:-99999}.n2-ss-slider .n2-ss-slide-thumbnail{display:none!important}.n2-ss-full-page--constrain-ratio .n2-ss-layers-container{clip-path:var(--ss-clip-path, inset(0px))}.n2-ss-slider .n2-ss-slide-background,.n2-ss-slider .n2-ss-slide-background *{position:absolute;top:0;left:0;width:100%;height:100%;text-align:left}.n2-ss-feature-post-bg-loader .n2-ss-slide-background{opacity:0}.n2-ss-slider .n2-ss-slide-background{z-index:10}.n2-ss-slider .n2-ss-slide-background .n2-ss-slide-background-color{z-index:1}.n2-ss-slider .n2-ss-slide-background .n2-ss-slide-background-color[data-overlay="1"]{z-index:7}.n2-ss-slider .n2-ss-slide-background .n2-ss-slide-background-video{z-index:3}.n2-ss-slider .n2-ss-slide-background .n2-ss-slide-background-image{z-index:5}.n2-ss-slider .n2-ss-slide-background-image{width:100%;height:100%;box-sizing:content-box;--ss-o-pos-x: 50%;--ss-o-pos-y: 50%}.n2-ss-slider .n2-ss-slide-background-image img{object-position:var(--ss-o-pos-x) var(--ss-o-pos-y)}.n2-ss-slider .n2-ss-slide-background-image img{width:100%!important;height:100%!important;object-fit:cover;color:RGBA(0,0,0,0)}.n2-ss-slider [data-mode=fit] .n2-ss-slide-background-image img{object-fit:contain}.n2-ss-slider [data-mode=center] .n2-ss-slide-background-image img{object-fit:none}.n2-ss-slider [data-mode=stretch] .n2-ss-slide-background-image img{object-fit:fill}.n2-ss-slider [data-mode=blurfit] .n2-ss-slide-background-image+.n2-ss-slide-background-image img{object-fit:contain}.n2-ss-slider .n2-ss-slide-background-video{object-fit:cover}.n2-ss-slider .n2-ss-slide-background-video[data-mode=fit]{object-fit:contain}.n2-ss-slider .n2-ss-layers-container{visibility:hidden;position:relative;width:100%;height:100%;display:flex;flex-direction:column;z-index:20;opacity:.001;transition:opacity .4s}.n2-ss-slider.n2-ss-loaded .n2-ss-layers-container{opacity:1}.n2-ss-slider [onclick].n2-ss-layers-container{visibility:visible}.n2-ss-slider .n2-ss-layers-container>*{visibility:visible}.n2-ss-slider .n2-ss-layer{z-index:2;--margin-top: 0px;--margin-right: 0px;--margin-bottom: 0px;--margin-left: 0px;width:calc(100% - var(--margin-right) - var(--margin-left));--ssfont-scale: 1;font-size:calc(100%*var(--ssfont-scale))}.n2-ss-slider .n2-ss-layer[data-pm=normal]{margin:var(--margin-top) var(--margin-right) var(--margin-bottom) var(--margin-left)}.n2-ss-slider .n2-ss-layer[data-pm=absolute]{position:absolute;left:0;top:0}.n2-ss-slider .n2-ss-layer[data-pm=absolute] picture{width:100%}.n2-ss-slider .n2-ss-layer[data-pm=default],.n2-ss-slider .n2-ss-layer[data-pm=normal]{position:relative;min-height:1px}.n2-ss-slider .n2-ss-layer-wrapper{width:100%;height:100%}.n2-ss-slider .n2-ss-layer-content .n2-ss-layer-wrapper,.n2-ss-slider .n2-ss-layer-row .n2-ss-layer-wrapper{height:auto;flex-grow:1}.n2-ss-slider .n2-ss-layer.n2-ss-layer--need-height .n2-ss-layer-wrapper{height:100%}.n2-ss-slider .n2-ss-layer[data-sstype=col]>.n2-ss-layer-wrapper,.n2-ss-slider .n2-ss-layer[data-sstype=content]>.n2-ss-layer-wrapper{flex:1 1 auto;min-height:100%;height:auto!important;display:flex;flex-direction:column}.n2-ss-no-bga-fixed *,.n2-ss-slider.n2-ss-mobileLandscape .n2-ss-slider-1,.n2-ss-slider.n2-ss-mobilePortrait .n2-ss-slider-1,.n2-ss-slider.n2-ss-tabletLandscape .n2-ss-slider-1,.n2-ss-slider.n2-ss-tabletPortrait .n2-ss-slider-1,.n2-ss-slider.n2-ss-mobileLandscape .n2-ss-slider-2,.n2-ss-slider.n2-ss-mobilePortrait .n2-ss-slider-2,.n2-ss-slider.n2-ss-tabletLandscape .n2-ss-slider-2,.n2-ss-slider.n2-ss-tabletPortrait .n2-ss-slider-2{background-attachment:scroll!important}.n2-ss-slider .n2-ss-widget{position:relative;-webkit-backface-visibility:hidden;-webkit-perspective:1000px;z-index:1;font-size:16px;transition:opacity .4s ease;opacity:1;box-sizing:initial}.n2-ss-slider .n2-ss-widget[data-position=above],.n2-ss-slider .n2-ss-widget[data-position=below]{margin-left:auto;margin-right:auto}.n2-ss-slider .n2-ss-widget.n2-ss-widget-hidden{opacity:0!important;pointer-events:none}.n2-ss-slider .n2-ss-slider-controls-above,.n2-ss-slider .n2-ss-slider-controls-below{display:flex;flex-flow:column;align-items:center}.n2-ss-slider .n2-ss-slider-controls-side{position:relative;display:flex}.n2-ss-slider .n2-ss-slider-controls-side>*{flex:1 1 auto}.n2-ss-slider .n2-ss-slider-controls-left,.n2-ss-slider .n2-ss-slider-controls-right{flex:0 0 auto;display:flex}.n2-ss-slider .n2-ss-slider-controls-left>*,.n2-ss-slider .n2-ss-slider-controls-right>*{flex:1 1 auto}.n2-ss-slider .n2-ss-slider-controls-left>*{margin-right:var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-right>*{margin-left:var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-left,.n2-ss-slider .n2-ss-slider-controls-absolute-right{position:absolute;right:100%;top:0;height:100%;display:flex;flex-flow:var(--ss-rr);align-items:center;visibility:hidden}[dir=rtl] .n2-ss-slider .n2-ss-slider-controls-absolute-left{justify-content:flex-start}[dir=rtl] .n2-ss-slider .n2-ss-slider-controls-absolute-right{justify-content:flex-end}.n2-ss-slider .n2-ss-slider-controls-absolute-left>*,.n2-ss-slider .n2-ss-slider-controls-absolute-right>*{visibility:visible}.n2-ss-slider .n2-ss-slider-controls-absolute-right{left:100%;right:auto;flex-flow:row}.n2-ss-slider .n2-ss-slider-wrapper-outside,.n2-ss-slider .n2-ss-slider-wrapper-inside{position:relative;display:grid;grid-template-columns:100%}.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls{z-index:10;position:absolute;width:100%;height:100%;visibility:hidden;display:flex}.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls>*{visibility:visible}.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-advanced{display:block;opacity:0;transition:opacity .4s}.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-advanced--ready{opacity:1}.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-advanced>*{position:absolute!important}.n2-ss-slider .n2-ss-slider-controls-absolute-left-top{align-items:flex-start;flex-flow:var(--ss-r)}.n2-ss-slider .n2-ss-slider-controls-absolute-left-top>*{margin:var(--widget-offset) 0 0 var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-center-top{align-items:center;flex-flow:column}.n2-ss-slider .n2-ss-slider-controls-absolute-center-top>*,.n2-ss-slider .n2-ss-slider-controls-below>*{margin-top:var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-right-top{flex-flow:var(--ss-rr);align-items:flex-start}.n2-ss-slider .n2-ss-slider-controls-absolute-right-top>*{margin:var(--widget-offset) var(--widget-offset) 0 0}.n2-ss-slider .n2-ss-slider-controls-absolute-left-center{align-items:center;flex-flow:var(--ss-r)}.n2-ss-slider .n2-ss-slider-controls-absolute-left-center>*,.n2-ss-slider .n2-ss-slider-controls-absolute-right>*{margin-left:var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-right-center{align-items:center;flex-flow:var(--ss-rr)}.n2-ss-slider .n2-ss-slider-controls-absolute-right-center>*,.n2-ss-slider .n2-ss-slider-controls-absolute-left>*{margin-right:var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-left-bottom{align-items:flex-end;flex-flow:var(--ss-r)}.n2-ss-slider .n2-ss-slider-controls-absolute-left-bottom>*{margin:0 0 var(--widget-offset) var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-center-bottom{align-items:center;flex-flow:column-reverse}.n2-ss-slider .n2-ss-slider-controls-absolute-center-bottom>*,.n2-ss-slider .n2-ss-slider-controls-above>*{margin-bottom:var(--widget-offset)}.n2-ss-slider .n2-ss-slider-controls-absolute-right-bottom{align-items:flex-end;flex-flow:var(--ss-rr)}.n2-ss-slider .n2-ss-slider-controls-absolute-right-bottom>*{margin:0 var(--widget-offset) var(--widget-offset) 0}.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-absolute-right-top,.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-absolute-left-top,.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-absolute-left-bottom,.n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls-absolute-right-bottom{z-index:11}.n2-ss-slider .n2-ss-static-slide{justify-self:stretch;align-self:stretch;display:flex;flex-direction:column;position:relative;z-index:25;-webkit-backface-visibility:hidden;text-align:center;--ssselfalign: center;opacity:.001;transition:opacity .4s}.n2-ss-slider.n2-ss-loaded .n2-ss-static-slide{opacity:1}.n2-ss-slider .n2-ss-static-slide div[data-sstype=slide]>.n2-ss-layer,.n2-ss-slider .n2-ss-static-slide div[data-sstype=content][data-hasbackground="1"]>div.n2-ss-section-main-content,.n2-ss-slider .n2-ss-static-slide div[data-sstype=content] .n2-ss-section-main-content>*{visibility:visible}.n2-ss-slider .n2-ss-static-slide,.n2-ss-slider .n2-ss-static-slide div[data-sstype=slide],.n2-ss-slider .n2-ss-static-slide div[data-sstype=content][data-hasbackground="0"],.n2-ss-slider .n2-ss-static-slide div[data-sstype=content][data-hasbackground="0"] div.n2-ss-section-main-content{visibility:hidden}.n2-ss-slider .n2-ss-shape-divider{position:absolute;left:0;width:100%;height:100px;pointer-events:none;z-index:13}.n2-ss-slider .n2-ss-shape-divider-inner{height:100%;transform-origin:center top}.n2-ss-slider .n2-ss-shape-divider-bottom .n2-ss-shape-divider-inner{position:absolute;bottom:0;left:0;width:100%;transform-origin:center bottom}.n2-ss-slider .n2-ss-shape-divider svg{display:block;height:100%;width:100%}.n2-ss-slider .n2-ss-shape-divider-top{top:0}.n2-ss-slider .n2-ss-shape-divider-bottom{bottom:0}.n2-ss-slider .n2-ss-slide .nextend-slide-bg{position:absolute;top:0;left:0;width:100%;max-width:none!important;height:auto;background:rgba(0,0,0,.002)}.n2-ss-slider video.n2-ow{max-width:none}.n2-ss-slider .n2-ss-item-video-container{overflow:hidden;width:100%;height:100%}.n2-ss-slider .n2-ss-item-video-container video{width:100%;height:100%}.n2-ss-slider .n2-ss-item-iframe-wrapper{-webkit-overflow-scrolling:touch;overflow-y:auto;height:100%}.n2-ss-slider .n2i{vertical-align:top}.n2-ss-slider iframe.n2-ow{max-width:none;display:block}.n2-ss-slider .n2-ss-item-iframe{height:100%}.n2-ss-slider .n2-grabbing{cursor:grabbing!important}.n2-ss-slider .n2-grabbing .n2-ss-slide{pointer-events:none}.n2-ss-slider .n2-ss-item-input-form{display:flex;flex-flow:row}.n2-ss-slider .n2-ss-item-input-form .n2-input{flex:1 1 auto}.n2-ss-slider .n2-ss-item-input-form .n2-form-button{margin:0}.n2-ss-slider form.n2-ow{margin:0;border:0;padding:0}.n2-ss-slider .n2-input{height:auto;width:auto;box-sizing:border-box;margin:0;border:0;padding:0;display:inline-block;vertical-align:middle;white-space:normal;background:0 0;line-height:1;font-size:13px;font-family:Arial,serif;box-shadow:none}.n2-ss-slider input.n2-ow:focus{outline:0}.n2-ss-slider input.n2-ow[placeholder]{overflow:hidden;text-overflow:clip}.n2-ss-slider ::-moz-placeholder{text-overflow:clip;color:inherit}.n2-ss-slider input.n2-ow:-moz-placeholder{text-overflow:clip;color:inherit}.n2-ss-slider input.n2-ow::-webkit-input-placeholder,.n2-ss-slider input.n2-ow::placeholder{color:inherit}.n2-ss-slider table.n2-ow{table-layout:auto;margin:0}.n2-ss-slider .n2-ow .n2-ss-thumbnail-type{width:48px;height:48px;margin-left:-24px;margin-top:-24px;position:absolute;left:50%;top:50%}.n2-ss-slider .n2-ss-section-main-content .n2-ss-item{float:none}.n2-ss-slider .n2-ss-layer[data-sstype=row].n2-ss-stretch-layer{display:flex;flex:1 1 auto}.n2-ss-slider .n2-ss-layer[data-sstype=row].n2-ss-stretch-layer>.n2-ss-layer-wrapper{display:flex}.n2-ss-slider .n2-ss-layer-row{box-sizing:border-box;display:flex}.n2-ss-slider .n2-ss-layer-row-inner{position:relative;box-sizing:border-box;display:flex;visibility:hidden;width:100%}.n2-ss-slider .n2-ss-layer-row-inner>*{visibility:visible}.n2-ss-slider .n2-ss-layer[data-sstype=row].n2-ss-stretch-layer .n2-ss-layer-row{height:auto;width:100%}.n2-ss-slider .n2-ss-layer-row>.n2-ss-layer{box-sizing:border-box;width:1px;flex:1 1 auto}.n2-ss-slider .n2-ss-layer-row .n2-ss-item{float:none}.n2-ss-slider .n2-ss-layer[data-sstype=slide]{flex:0 0 auto;position:relative;box-sizing:border-box;width:100%;height:100%;min-height:100%;z-index:2;display:flex;justify-content:center;flex-flow:column}.n2-ss-slider .n2-ss-layer-content .n2-ss-layer--auto:not([data-pm=absolute]){width:auto!important}.n2-ss-slider .n2-ss-layer-content .n2-ss-layer[data-pm=normal]{max-width:calc(100% - var(--margin-right) - var(--margin-left))}.n2-ss-slider .n2-ss-layer[data-sstype=content]{flex:0 0 auto;width:100%;min-height:100%;position:relative;z-index:2;display:flex}.n2-ss-slider .n2-ss-layer-content{flex:0 0 auto;display:flex;flex-direction:column;justify-content:flex-start;box-sizing:border-box;position:relative;min-height:10px}.n2-ss-slider .n2-ss-section-main-content{flex:1 1 auto;display:flex;justify-content:center;flex-direction:column;min-height:100%;max-width:100%}.n2-ss-slider .n2-ss-layer-with-background{--n2bgimage: none;--n2bggradient: none;background-image:var(--n2bggradient),var(--n2bgimage);background-size:cover,cover;background-repeat:no-repeat,no-repeat;transition:all .3s;transition-property:border-color,background-color,border-radius,box-shadow}.n2-ss-slider .n2-ss-layer[data-sstype=col]{display:flex;flex-flow:column;order:10;flex:0 1 auto}.n2-ss-slider .n2-ss-layer--block>.n2-ss-layer-row>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype=col],.n2-ss-slider .n2-ss-layer--block>.n2-ss-layer-wrapper>.n2-ss-layer-row>.n2-ss-layer-row-inner>.n2-ss-layer[data-sstype=col]{flex:1 1 auto}.n2-ss-slider .n2-ss-layer-col{box-sizing:border-box;position:relative;width:100%;height:auto;flex:1 1 auto}.n2-ss-slider .n2-ss-layer-col>.n2-ss-layer{flex:0 0 auto}.n2-ss-slider .n2-ss-layer:not([data-sstype=col]){align-self:var(--ssselfalign)}.n2-ss-slider .n2-ss-item-image-content{overflow:hidden;line-height:0}.n2-ss-slider .n2-ss-img-wrapper,.n2-ss-slider .n2-ss-img-wrapper img{line-height:0}.n2-ss-slider .n2-ss-item-image-content img{display:inline-block;max-width:100%}.n2-ss-slider .n2-ss-item-image-content a{display:inline-block}.n2-ss-slider .n2-ss-item-image-content picture{width:100%}.n2-ss-slider img.n2-ss-item-image-area{display:block;width:100%!important;height:100%!important}.n2-ss-slider .n2_ss_video_player{position:relative}.n2-ss-slider .n2_ss_video_player .n2_ss_video_player__placeholder{padding-top:56.25%}.n2-ss-slider .n2_ss_video_player[data-aspect-ratio="16:10"] .n2_ss_video_player__placeholder{padding-top:62.5%}.n2-ss-slider .n2_ss_video_player[data-aspect-ratio="4:3"] .n2_ss_video_player__placeholder{padding-top:75%}.n2-ss-slider .n2_ss_video_player iframe,.n2-ss-slider .n2_ss_video_player video,.n2-ss-slider .n2_ss_video_player .n2_ss_video_player__cover{display:block;position:absolute;top:0;left:0;width:100%;height:100%}.n2-ss-slider .n2_ss_video_player .n2_ss_video_player__cover{z-index:2;transform:translate3d(0,0,0)}.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill]{min-height:50px;height:100%}.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill] .n2_ss_video_player__placeholder,.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill]>.n2_ss_video_player__placeholder,.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill]>.n2_ss_video_player__placeholder{padding-top:0}.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill] video{position:static;height:auto}.n2-ss-slider .n2-ss-layer[data-pm=absolute]>.n2-ss-item>.n2_ss_video_player[data-aspect-ratio=fill]>video,.n2-ss-slider .n2-ss-layer[data-pm=absolute]>.n2_ss_video_player[data-aspect-ratio=fill]>video,.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill]>video,.n2-ss-slider .n2_ss_video_player[data-aspect-ratio=fill]>video{position:static;height:100%}.n2-ss-slider img.n2_ss_video_cover{display:block;position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;object-fit:cover}.n2-ss-slider img.n2_ss_video_play_btn{position:absolute;left:50%;top:50%;z-index:2;width:48px;height:48px;transform:translate(-50%,-50%)}.n2-ss-slider .n2-ss-animated-heading-wrapper,.n2-ss-slider .n2-ss-animated-heading-wrapper *,.n2-ss-slider .n2-ss-highlighted-heading-wrapper,.n2-ss-slider .n2-ss-highlighted-heading-wrapper *{text-decoration:none!important}.n2_clear{clear:both}[data-force-hidden],[data-force-hidden] *{visibility:hidden!important}.n2-ss-slider .n2-ss-reveal-clip{pointer-events:none;visibility:hidden;position:absolute;left:0;top:0;z-index:1000000;width:100%;height:100%;overflow:hidden}.n2-ss-slider .n2-ss-reveal-clip>*{position:absolute;left:0;top:0;width:100%;height:100%}.n2-ss-slider .n2-widget-html{z-index:10}.n2-ss-slider .n-particles-js-canvas-el{position:absolute;left:0;top:0;width:100%;height:100%;z-index:12}ss-text,ss-word,ss-char{position:relative;display:inline-block}ss-p{display:block}ss3-loader{display:none;place-content:center;position:absolute;left:0;top:0;width:100%;height:100%;z-index:100000}ss3-loader:after{content:'';display:block;border:9px solid RGBA(0,0,0,.6);border-top:9px solid #fff;border-radius:50%;box-shadow:inset 0 0 0 1px RGBA(0,0,0,.6),0 0 0 1px RGBA(0,0,0,.6);width:40px;height:40px;animation:n2-ss-loader-spin 2s linear infinite}@keyframes n2-ss-loader-spin{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.n2-ss-slider .n2-input,.n2-ss-slider .n2-ss-item-counter-counting-div{-webkit-transform:translate3d(0,0,0)}