.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 1000 */

.nunito-regular {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.nunito-black {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.nav-footer {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

/*lista em duas colunas*/
.ulduascolunas {
    /* aqui o que importa é o UL, o resto é pra estética do demo.          */
    /*position: relative;*/
    /* reset do position, não relacionado ao demo, mas bom pra uso geral.  */
    margin: 0;
    /* Zeramos as margens e o padding do UL para as células.encostarem     */
    padding: 0;
    width: 100%;
    /* por default, os blocos são 100%, mas vamos garantir isso.           */
    /*height: 100%;
    /* aqui foi feito pra fins de demonstração apenas.                     */
    font-size: 14px;
}


.ulduascolunas li {
    display: block;
    /* primeiro passo, transformar o LI em bloco.                   */
    list-style-type: none;
    /* depois, remoção dos bullets.                                 */
    margin: 0;
    /* nao queremos espaços ente os blocos.                         */
    background-color: #fff;
    /* cor de fundo principal, o "grid" fazemos depois              */
    box-sizing: border-box;
    /* medidas são de borda à borda, o padding não é acrescentado.  */
    /*height: 8%;
    /* esta linha é pela estética do demo                           */
    padding: 5px 0 5px 0;
}

.ulduascolunas li:nth-child(odd) {
    /* este css será aplicato nos LI impares (1, 3, 5... ).         */
    clear: both;
    /* forçamos a quebra de linha por segurança...                  */
    float: left;
    /* ... e o alinhamos à esquerda.                                */
    width: 50%;
    /* Aplicamos 50% na esquerda, os da direita "herdam" o resto.   */
}

/*.ulduascolunas li:nth-child(4n+2),
 aqui pulamos de 4 em 4 itens começando do 2 ( 2, 6, ...).    
.ulduascolunas li:nth-child(4n+3) {
    /* aqui de 4 em 4 começando do 3 ( 3, 7, ... )                  */
/*background-color: #fff;*/
/* e mudamos a cor, dando efeito de quadriculado                
}*/

.owl-carousel img {
    height: 165;
}

/* SECTION */

.title-section {
    font-weight: 100;
}

.hr-section {
    width: 50%;
    margin: auto;
    background: blue;
}

.bannerpub img {
    max-width: 1300px;
    max-height: 300px;
}

/*BANNER CAROUSEL MAIS PROCURADOS*/
.bannermaisproc {
    position: relative;
    padding: 15px;
    /* max-width: 600px; */
    margin: 0 auto;
}

.gallery-wrapper {
    overflow-x: auto;
}

.gallery {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    /* font-size: 40px; */
    line-height: 250px;
    width: 40px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border: none;
    background: blue;
    /* opacity: 0.1; */
    transition: all 600ms ease-in-out;
}

.arrow-right {
    left: auto;
    right: 0;
    background: blue;
}

.arrow-left:hover,
.arrow-right:hover {
    /* opacity: 1; */
}

.item1 {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 600ms ease-in-out;
}

.current-item {
    opacity: 1;
}

/* Ocultar Scrollbar */
.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-wrapper {
    -ms-overflow-stye: none;
    scrollbar-width: none;
}
/* Ocultar Scrollbar */