/* BASE STYLES CSS */

* {

    margin: 0;

    padding: 0;

    border: 0;

    outline: 0;

    box-sizing: border-box;

}





/* SCROLL LATERAL */

::-webkit-scrollbar-track {

    background-color: #f0f0f0;

}



::-webkit-scrollbar {

    width: 8px;

    background-color: var(--primary-color);

}



::-webkit-scrollbar-thumb {

    background-color: var(--primary-color);

}





/*CUSTOMIZE THEME*/

:root {



    /* COLORS */

    --primary-color: #6AA3D8;

    --secondary-color: #D6ECB7;

    --grey: #5c5c5c;

    --dark: #343433;

    --light: #1E1E1E;

    --light: #EDEDED;

    --alert: #b31610;

    --success: #4caf50;



    /* DEFAULT BORDER */

    --border-radius: 4px;

    --border-color: #dee2e6;

    --box-shadow: 0 15px 10px -15px #111;



    /* SIMETRIA */

    --window-width: 1920px;

    --wrapper-width: 80%;

    --container-padding: 52px 0;



    /* SLICK BANNER */

    --slider-height: 770px;

    --title: 32px;



    /* TITLE/TEXT	*/

    --subtitle1: 28px;

    --subtitle2: 18px;

    --subtitle3: 16px;

    --text: 14px;

    --text-color: #1D1D1F;



    /* FONTS */

    --primary-font: 'Nunito', sans-serif;

    --secondary-font: 'Quicksand', sans-serif;

    --tertiary-font: 'Encode Sans', sans-serif;

}



/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    :root {

        --container-padding: 16px 0;

        --wrapper-width: 95%;

    }



}



html {

    max-width: var(--window-width);

    width: 100%;

    margin: 0 auto;

}



body {

    font-size: 16px;

    font-family: var(--secondary-font);

    color: var(--grey);

    text-decoration: none;

    background-color: #F9F9F9;

}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    body {

        font-size: 12px;

    }



}



h1,

h2,

h3,

h4 {

    font-family: var(--primary-font);

    color: var(--dark);

    margin: 16px 0;

    line-height: 1;

}



h1 {

    font-size: var(--title);

}



h2 {

    font-size: var(--subtitle1);

    font-weight: 600;

}



h3 {

    font-size: var(--subtitle2);

}



p {

    font-size: var(--text);

    line-height: 1.5;

    font-family: var(--primary-font);

    font-weight: 400;

    margin: 8px 0;

    color: var(--text-color);

    text-align: left;

}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    h1,

    h2,

    h3,

    h4 {

        font-size: calc(var(--title) - 100%);

    }



}



a {

    font-family: var(--tertiary-font);

    color: var(--primary-color);

    text-decoration: none;

    transition: .3s;

}



a:active,

a:focus,

a:hover {

    text-decoration: none;

}



hr {

    display: block;

    margin: 16px 0;

    height: 1px;

    border-top: 1px solid #ccc;

}





/* TABELA */

table {

    border-collapse: collapse;

    border-spacing: 0;

    table-layout: fixed;

    width: 100%;

}



table thead th {

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    color: var(--dark);

    overflow: hidden;

    word-break: normal;

    box-sizing: border-box;

    padding: 8px;

}



table tbody tr:not(:last-child) {

    border-bottom: 1px solid var(--dark);

}



table tbody td {

    font-size: 12px;

    font-weight: 400;

    text-align: left;

    color: var(--dark);

    overflow: hidden;

    word-break: break-all;

    box-sizing: border-box;

    padding: 8px;

}



@media only screen and (max-width:576px) {



    .table-container {

        width: 100%;

        overflow-x: auto;

    }



    table {

        width: 100%;

        border-collapse: collapse;

        table-layout: unset;

    }



    table :is(td, th) {

        font-size: 8px;

    }



}





/* LIST */

ul {

    margin: 0 0 20px 40px;

}



ul li {

    color: var(--text-color);

    font-size: var(--text);

    margin: 14px 0;

    font-size: 14px;

    list-style: disc;

    line-height: 18px;

    text-align: left;

}



ul.list--no-ls li {

    list-style: none;

}



ul li::first-letter {

    text-transform: uppercase;

}





/* CONTAINERS */

.wrapper {

    max-width: var(--window-width);

    width: var(--wrapper-width);

    margin: 0 auto;

    clear: both;

}



.container {

    max-width: 100%;

    width: 100%;

    display: block;

    margin-left: auto;

    margin-right: auto;

    box-sizing: border-box;

    -webkit-box-sizing: border-box;

    padding: var(--container-padding);

    clear: both;

}



section,

article {

    width: 100%;

}





/* CARDS */

.card-group {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

}



.card {

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

    border-radius: var(--border-radius);

    width: 100%;

    position: relative;

    overflow: hidden;

    -webkit-transition: .3s;

    transition: .3s;

}



.card__image {

    display: block;

    width: 100%;

    object-fit: cover;

    -webkit-transition: .3s;

    transition: .3s;

}



.card__title {

    font-size: 16px;

    color: var(--grey);

    -webkit-transition: .3s;

    transition: .3s;

}



.card__text {

    font-size: 14px;

    color: var(--grey);

}



.card__ {

    display: inline-block;

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

    padding: 12px 16px;

    border-radius: var(--border-radius);

    font-size: 14px;

    background-color: var(--primary-color);

    color: #fff;

    -webkit-transition: .3s;

    transition: .3s;

}



.card__overlay {

    position: absolute;

    opacity: 0;

    width: 100%;

    height: 100%;

    -webkit-transition: .5s;

    transition: .5s;

}



.card:hover .card__overlay {

    opacity: 1;

}



@media only screen and (max-width:992px) {



    .card-group {

        grid-template-columns: repeat(3, 1fr);

    }



}



@media only screen and (max-width:768px) {



    .card-group {

        grid-template-columns: repeat(2, 1fr);

    }



}



@media only screen and (max-width:480px) {



    .card-group {

        grid-template-columns: 1fr;

    }



}





/* BTN */

.btn {

    display: inline-block;

    margin: 8px 0;

    -webkit-box-sizing: border-box;

    box-sizing: border-box;

    padding: 8px 60px;

    text-align: center;

    text-decoration: none;

    font-size: 14px;

    background-color: var(--primary-color);

    color: #fff;

    border: 1px solid transparent;

    border-radius: var(--border-radius);

    -webkit-transition: .3s;

    transition: .3s;

}



.btn:active,

.btn:focus,

.btn:hover {

    background-color: var(--secondary-color);



}



.btn--secondary {

    background-color: var(--secondary-color);

    color: black;

}



.btn--secondary:hover {

    background-color: var(--primary-color);

    color: white;

    border: 1px solid white;

}



.btn--outline-blue {

    background-color: transparent;

    border: 1px solid var(--primary-color);

    color: var(--primary-color);

}



.btn--outline-blue:hover {

    background-color: var(--primary-color);

    color: #fff;

}



.btn--outline-white {

    background-color: transparent;

    border: 1px solid #fff;

    color: #fff;

}



.btn--outline-white:hover {

    background-color: #fff;

    color: var(--primary-color);

}



.btn--wpp {

    background-color: green;

}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    .btn {

        display: block;

        width: 100%;

    }



}



/* HEADER */



/* header fixo */



/* Estilos do header fixo com transição de translate */

.headerFixed {

    position: fixed !important;

    max-width: var(--window-width);

    width: 100%;

    z-index: 999;

    top: 0;

    left: 50%;

    transform: translate(0%, 0%);

    /* Inicialmente escondido */

    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 6px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

    background-color: #fff;

    transition: transform 0.3s ease;

    /* Transição suave apenas para o transform */

}



/* Ajuste para o conteúdo não ficar escondido */

body.header-fixed-active {

    padding-top: 120px;

    /* Ajuste conforme a altura do seu header */

}



/* Para dispositivos móveis */

@media (max-width: 768px) {

    body.header-fixed-active {

        padding-top: 100px;

    }



    .headerFixed {

        max-width: 100%;

        /* Ocupa toda a largura no mobile */

    }

}











/* header fixo - efeito slide */

.headerSlide {

    animation-name: headerSlide;

    transform: translate(-50%, -100%);

}



@keyframes headerSlide {

    from {

        transform: translate(-50%, -100%);

    }



    to {

        transform: translate(-50%, 0);

    }



}





/* header fixo - efeito fade */

.headerFade {

    animation-name: headerFade;

    opacity: 0;

}



@keyframes headerFade {

    from {

        opacity: 0;

    }



    to {

        opacity: 1;

    }



}



/* LARGE DEVICE */

@media only screen and (max-width:912px) {



    header .topo.show-mobile {

        background-color: #222222;

    }



    .flex-top-icons {

        display: flex;

        justify-content: center;

        align-items: center;

    }



    .flex-top-icons a {

        display: flex;

        justify-content: center;

        align-items: center;

        width: 50px;

        height: 50px;

        margin: 6px;

        background: var(--primary-color);

        color: #fff;

        border-radius: 50%;

        font-size: 22px;

    }



}





/* BROWSE HAPPY PROMPT */

.browsehappy {

    margin: 32px 0;

    background: #ccc;

    color: #000;

    padding: 32px 0;

}





/* SCROLL UP BUTTON */

#scrollUp {

    position: fixed;

    bottom: -100px;

    right: 12px;

    z-index: 9999;

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: var(--border-radius) var(--border-radius) 0 0;

    background-color: var(--secondary-color);

    cursor: pointer;

    opacity: 0;

    -webkit-transition: .3s;

    transition: .3s;

}



#scrollUp::after {

    content: '\f077';

    font: 18px/normal FontAwesome;

    color: #fff;

}



#scrollUp.is-active {

    -webkit-transition: .5s;

    transition: .5s;

    bottom: 0;

    opacity: 1;

}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    #scrollUp {

        width: 40px;

        height: 40px;

    }



    #scrollUp::after {

        font-size: 12px;

    }



}





/* *** RULES CSS BS *** */



/* MARGIN */



/* Margens gerais */

.m-auto {

    margin: 0 auto !important;

}



.m-0 {

    margin: 0px !important;

}



.m-4 {

    margin: 4px !important;

}



.m-8 {

    margin: 8px !important;

}



.m-12 {

    margin: 12px !important;

}



.m-14 {

    margin: 14px !important;

}



.m-16 {

    margin: 16px !important;

}



.m-32 {

    margin: 32px !important;

}





/* Margens horizontais */

.mx-0 {

    margin-left: 0px !important;

    margin-right: 0px !important;

}



.mx-4 {

    margin-left: 4px !important;

    margin-right: 4px !important;

}



.mx-8 {

    margin-left: 8px !important;

    margin-right: 8px !important;

}



.mx-12 {

    margin-left: 12px !important;

    margin-right: 12px !important;

}



.mx-14 {

    margin-left: 14px !important;

}



.mx-16 {

    margin-left: 16px !important;

    margin-right: 16px !important;

}





/* Margens verticais */

.my-0 {

    margin-top: 0px !important;

    margin-bottom: 0px !important;

}



.my-4 {

    margin-top: 4px !important;

    margin-bottom: 4px !important;

}



.my-8 {

    margin-top: 8px !important;

    margin-bottom: 8px !important;

}



.my-12 {

    margin-top: 12px !important;

    margin-bottom: 12px !important;

}



.my-14 {

    margin-top: 14px !important;

}



.my-16 {

    margin-top: 16px !important;

    margin-bottom: 16px !important;

}



.my-32 {

    margin-top: 32px !important;

    margin-bottom: 32px !important;

}



.my-64 {

    margin-top: 64px !important;

    margin-bottom: 64px !important;

}





/* Margem superior */

.mt-0 {

    margin-top: 0px !important;

}



.mt-4 {

    margin-top: 4px !important;

}



.mt-8 {

    margin-top: 8px !important;

}



.mt-12 {

    margin-top: 12px !important;

}



.mt-14 {

    margin-top: 14px !important;

}



.mt-16 {

    margin-top: 16px !important;

}



.mt-32 {

    margin-top: 32px !important;

}





/* Margem inferior */

.mb-0 {

    margin-bottom: 0px !important;

}



.mb-4 {

    margin-bottom: 4px !important;

}



.mb-8 {

    margin-bottom: 8px !important;

}



.mb-12 {

    margin-bottom: 12px !important;

}



.mb-14 {

    margin-bottom: 14px !important;

}



.mb-16 {

    margin-bottom: 16px !important;

}





/* Margem esquerda */

.ml-0 {

    margin-left: 0px !important;

}



.ml-4 {

    margin-left: 4px !important;

}



.ml-8 {

    margin-left: 8px !important;

}



.ml-12 {

    margin-left: 12px !important;

}



.ml-14 {

    margin-left: 14px !important;

}



.ml-16 {

    margin-left: 16px !important;

}





/* Margem direita */

.mr-0 {

    margin-right: 0px !important;

}



.mr-4 {

    margin-right: 4px !important;

}



.mr-8 {

    margin-right: 8px !important;

}



.mr-12 {

    margin-right: 12px !important;

}



.mr-14 {

    margin-right: 14px !important;

}



.mr-16 {

    margin-right: 16px !important;

}





/* PADDING */



/* Padding geral */

.p-0 {

    padding: 0px !important;

}



.p-4 {

    padding: 4px !important;

}



.p-8 {

    padding: 8px !important;

}



.p-12 {

    padding: 12px !important;

}



.p-14 {

    padding: 14px !important;

}



.p-16 {

    padding: 16px !important;

}



.p-32 {

    padding: 32px !important;

}





/* Padding horizontal */

.px-0 {

    padding-left: 0px !important;

    padding-right: 0px !important;

}



.px-4 {

    padding-left: 4px !important;

    padding-right: 4px !important;

}



.px-8 {

    padding-left: 8px !important;

    padding-right: 8px !important;

}



.px-12 {

    padding-left: 12px !important;

    padding-right: 12px !important;

}



.px-14 {

    padding-left: 14px !important;

    padding-right: 14px !important;

}



.px-16 {

    padding-left: 16px !important;

    padding-right: 16px !important;

}





/* Padding vertical */

.py-0 {

    padding-top: 0px !important;

    padding-bottom: 0px !important;

}



.py-4 {

    padding-top: 4px !important;

    padding-bottom: 4px !important;

}



.py-8 {

    padding-top: 8px !important;

    padding-bottom: 8px !important;

}



.py-12 {

    padding-top: 12px !important;

    padding-bottom: 12px !important;

}



.py-14 {

    padding-top: 14px !important;

    padding-bottom: 14px !important;

}



.py-16 {

    padding-top: 16px !important;

    padding-bottom: 16px !important;

}





/* Padding superior */

.pt-0 {

    padding-top: 0px !important;

}



.pt-4 {

    padding-top: 4px !important;

}



.pt-8 {

    padding-top: 8px !important;

}



.pt-12 {

    padding-top: 12px !important;

}



.pt-14 {

    padding-top: 14px !important;

}



.pt-16 {

    padding-top: 16px !important;

}



.pt-128 {

    padding-top: 128px !important;

}





/* Padding inferior */

.pb-0 {

    padding-bottom: 0px !important;

}



.pb-4 {

    padding-bottom: 4px !important;

}



.pb-8 {

    padding-bottom: 8px !important;

}



.pb-12 {

    padding-bottom: 12px !important;

}



.pb-14 {

    padding-bottom: 14px !important;

}



.pb-16 {

    padding-bottom: 16px !important;

}



.pb-32 {

    padding-bottom: 32px !important;

}



.pb-64 {

    padding-bottom: 64px !important;

}



.pb-128 {

    padding-bottom: 128px !important;

}





/* Padding esquerda */

.pl-0 {

    padding-left: 0px !important;

}



.pl-4 {

    padding-left: 4px !important;

}



.pl-8 {

    padding-left: 8px !important;

}



.pl-12 {

    padding-left: 12px !important;

}



.pl-14 {

    padding-left: 14px !important;

}



.pl-16 {

    padding-left: 16px !important;

}





/* Padding direita */

.pr-0 {

    padding-right: 0px !important;

}



.pr-4 {

    padding-right: 4px !important;

}



.pr-8 {

    padding-right: 8px !important;

}



.pr-12 {

    padding-right: 12px !important;

}



.pr-14 {

    padding-right: 14px !important;

}



.pr-16 {

    padding-right: 16px !important;

}





/* EXTRA LARGE DEVICE */

@media only screen and (min-width:1024px) {





    /* WIDTH/HEIGHT */

    .w-100 {

        width: 100%

    }



    .mw-100 {

        max-width: 100%

    }



    .h-100 {

        height: 100%

    }



    .mh-100 {

        max-height: 100%

    }



    .w-75 {

        width: 75%

    }



    .mw-75 {

        max-width: 75%

    }



    .h-75 {

        height: 75%

    }



    .mh-75 {

        max-height: 75%

    }



    .w-50 {

        width: 50%

    }



    .mw-50 {

        max-width: 50%

    }



    .h-50 {

        height: 50%

    }



    .mh-50 {

        max-height: 50%

    }



    .w-25 {

        width: 25%

    }



    .mw-25 {

        max-width: 25%

    }



    .h-25 {

        height: 25%

    }



    .mh-25 {

        max-height: 25%

    }



    .w-0 {

        width: 0%

    }



    .mw-0 {

        max-width: 0%

    }



    .h-0 {

        height: 0%

    }



    .mh-0 {

        max-height: 0%

    }



}





/* IMAGE ALIGN */

.picture-center {

    display: block;

    margin-left: auto;

    margin-right: auto;

}



.picture-left {

    float: left;

}



.picture-right {

    float: right;

}





/* RESPONSIVE FONT-SIZE */

.fs-12 {

    font-size: 0.85em

}



.fs-14 {

    font-size: 1em

}



.fs-16 {

    font-size: 1.14em

}



.fs-18 {

    font-size: 1.28em

}



.fs-20 {

    font-size: 1.42em

}



.fs-22 {

    font-size: 1.57em

}



.fs-24 {

    font-size: 1.71em

}



.fs-26 {

    font-size: 1.85em

}



.fs-28 {

    font-size: 2em

}



.fs-30 {

    font-size: 2.14em

}



.fs-32 {

    font-size: 2.28em

}



.fs-34 {

    font-size: 2.42em

}



.fs-36 {

    font-size: 2.57em

}



.fs-38 {

    font-size: 2.71em

}



.fs-40 {

    font-size: 2.85em

}



.fs-42 {

    font-size: 3em

}



.fs-44 {

    font-size: 3.14em

}



.fs-46 {

    font-size: 3.28em

}



.fs-48 {

    font-size: 3.42em

}



.fs-50 {

    font-size: 3.57em

}



.fs-52 {

    font-size: 3.71em

}



.fs-54 {

    font-size: 3.85em

}



.fs-56 {

    font-size: 4em

}



.fs-58 {

    font-size: 4.14em

}



.fs-60 {

    font-size: 4.28em

}



.fs-62 {

    font-size: 4.42em

}



.fs-64 {

    font-size: 4.57em

}



.fs-66 {

    font-size: 4.71em

}



.fs-68 {

    font-size: 4.85em

}



.fs-70 {

    font-size: 5em

}



.fs-72 {

    font-size: 5.14em

}



.fs-74 {

    font-size: 5.28em

}



.fs-76 {

    font-size: 5.42em

}



.fs-78 {

    font-size: 5.57em

}



.fs-80 {

    font-size: 5.71em

}



.fs-82 {

    font-size: 5.85em

}



.fs-84 {

    font-size: 6em

}



.fs-86 {

    font-size: 6.14em

}



.fs-88 {

    font-size: 6.28em

}



.fs-90 {

    font-size: 6.42em

}



.fs-92 {

    font-size: 6.57em

}



.fs-94 {

    font-size: 6.71em

}



.fs-96 {

    font-size: 6.85em

}



.fs-98 {

    font-size: 7em

}



.fs-100 {

    font-size: 7.14em

}



.fs-102 {

    font-size: 7.28em

}



.fs-104 {

    font-size: 7.42em

}



.fs-106 {

    font-size: 7.57em

}



.fs-108 {

    font-size: 7.71em

}



.fs-110 {

    font-size: 7.85em

}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    [class*='fs-3'] {

        font-size: calc(2.14em - 0.14vw - 0.14vh);

    }



    [class*='fs-4'] {

        font-size: calc(2.85em - 0.85vw - 0.85vh);

    }



    [class*='fs-5'] {

        font-size: calc(3.57em - 0.57vw - 0.57vh);

    }



    [class*='fs-6'],

    [class*='fs-7'],

    [class*='fs-8'],

    [class*='fs-9'],

    [class*='fs-10'],

    [class*='fs-11']:not(.fs-11) {

        font-size: calc(4.28em - 0.28vw - 0.28vh);

    }



}





/* FONT WEIGHT */

.fw-normal {

    font-weight: 400

}



.fw-bold {

    font-weight: 700

}



.fw-200 {

    font-weight: 200;

}



.fw-300 {

    font-weight: 300;

}



.fw-400 {

    font-weight: 400;

}



.fw-500 {

    font-weight: 500;

}



.fw-600 {

    font-weight: 600;

}



.fw-700 {

    font-weight: 700;

}



.fw-800 {

    font-weight: 800;

}



.fw-900 {

    font-weight: 900;

}





/* TEXT TRANSFORM */

.text-lowercase {

    text-transform: lowercase

}



.text-uppercase {

    text-transform: uppercase

}



.text-capitalize {

    text-transform: capitalize

}



.text-left {

    text-align: left

}



.text-center {

    text-align: center

}



.text-right {

    text-align: right

}



.text-justify {

    text-align: justify

}





/* DISPLAY */

.d-none {

    display: none

}



.d-inline {

    display: inline

}



.d-inline-block {

    display: inline-block

}



.d-block {

    display: block

}



.d-table {

    display: table

}



.d-table-cell {

    display: table-cell

}



.d-table-row {

    display: table-row

}



.d-flex {

    display: flex

}



.d-flex-wrap {

    flex-wrap: wrap

}



.d-inline-flex {

    display: inline-flex

}





/* JUSTIFY CONTENT */

.justify-content-center {

    justify-content: center

}



.justify-content-start {

    justify-content: flex-start

}



.justify-content-end {

    justify-content: flex-end

}



.justify-content-between {

    justify-content: space-between

}



.justify-content-around {

    justify-content: space-around

}





/* MEDIUM DEVICE */

@media only screen and (max-width:768px) {



    .justify-content-md-center {

        justify-content: center

    }



    .justify-content-md-start {

        justify-content: flex-start

    }



    .justify-content-md-end {

        justify-content: flex-end

    }



    .justify-content-md-between {

        justify-content: space-between

    }



    .justify-content-md-around {

        justify-content: space-around

    }



}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    .justify-content-sm-center {

        justify-content: center

    }



    .justify-content-sm-start {

        justify-content: flex-start

    }



    .justify-content-sm-end {

        justify-content: flex-end

    }



    .justify-content-sm-between {

        justify-content: space-between

    }



    .justify-content-sm-around {

        justify-content: space-around

    }



}





/* ALIGN ITEMS */

.align-items-center {

    align-items: center

}



.align-items-start {

    align-items: flex-start

}



.align-items-end {

    align-items: flex-end

}





/* MEDIUM DEVICE */

@media only screen and (max-width:768px) {



    .align-items-md-center {

        align-items: center

    }



    .align-items-md-start {

        align-items: flex-start

    }



    .align-items-md-end {

        align-items: flex-end

    }



}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    .align-items-sm-center {

        align-items: center

    }



    .align-items-sm-start {

        align-items: flex-start

    }



    .align-items-sm-end {

        align-items: flex-end

    }



}





/* FLEX DIRECTION */

.flex-row {

    flex-direction: row

}



.flex-column {

    flex-direction: column

}



.flex-column-reverse {

    flex-direction: column-reverse

}



.flex-row-reverse {

    flex-direction: row-reverse

}





/* MEDIUM DEVICE */

@media only screen and (max-width:768px) {



    .flex-md-row {

        flex-direction: row

    }



    .flex-md-column {

        flex-direction: column

    }



    .flex-md-column-reverse {

        flex-direction: column-reverse

    }



    .flex-md-row-reverse {

        flex-direction: row-reverse

    }



}





/* SMALL DEVICE */

@media only screen and (max-width:576px) {



    .flex-sm-row {

        flex-direction: row

    }



    .flex-sm-column {

        flex-direction: column

    }



    .flex-sm-column-reverse {

        flex-direction: column-reverse

    }



    .flex-sm-row-reverse {

        flex-direction: row-reverse

    }



}





/* FLOAT */

.float-left {

    float: left

}



.float-right {

    float: right

}



.float-none {

    float: none

}





/* POSITION */

.position-relative {

    position: relative

}



.position-absolute {

    position: absolute

}



.position-fixed {

    position: fixed

}



.t-0 {

    top: 0

}



.b-0 {

    bottom: 0

}



.l-0 {

    left: 0

}



.r-0 {

    right: 0

}



.t-50 {

    top: 50%

}



.b-50 {

    bottom: 50%

}



.l-50 {

    left: 50%

}



.r-50 {

    right: 50%

}





/* Z-INDEX */

.z-minus-1 {

    z-index: -1;

}



.z-0 {

    z-index: 0;

}



.z-1 {

    z-index: 1;

}



.z-2 {

    z-index: 2;

}



.z-3 {

    z-index: 3;

}



.z-4 {

    z-index: 4;

}



.z-5 {

    z-index: 5;

}



.z-6 {

    z-index: 6;

}



.z-7 {

    z-index: 7;

}



.z-8 {

    z-index: 8;

}



.z-9 {

    z-index: 9;

}



.z-999 {

    z-index: 999;

}





/* OBJECT FIT */

.object-fit-cover {

    object-fit: cover

}



.object-fit-contain {

    object-fit: contain

}





/* BORDER  */

.rounded {

    border-radius: 16px;

}



.rounded-circle {

    border-radius: 50%;

}



.border {

    border: 1px solid #dee2e6

}



.border-top {

    border-top: 1px solid #dee2e6

}



.border-bottom {

    border-bottom: 1px solid #dee2e6

}



.border-left {

    border-left: 1px solid #dee2e6

}



.border-right {

    border-right: 1px solid #2A2A2A

}



.border-dark {

    border-color: var(--dark)

}



.border-light {

    border-color: var(--light)

}





/* COLORS */

.primary-color {

    color: var(--primary-color);

}



.secondary-color {

    color: var(--secondary-color);

}



.grey {

    color: var(--grey);

}



.black {

    color: #000;

}



.white {

    color: #FFF;

}



.dark {

    color: var(--dark);

}



.light {

    color: var(--light);

}





/* BG COLORS */

.bg-primary-color {

    background-color: var(--primary-color);

}



.bg-secondary-color {

    background-color: var(--secondary-color);

}



.bg-grey {

    background-color: var(--grey);

}



.bg-black {

    background-color: #000;

}



.bg-white {

    background-color: #FFF;

}



.bg-dark {

    background-color: var(--dark);

}



.bg-light {

    background-color: var(--light);

}



address {

    font-style: normal;

}



/* HIDDEN */

.hidden {

    display: none;

    visibility: hidden

}



.visuallyhidden {

    border: 0;

    clip: rect(0 0 0 0);

    height: 1px;

    margin: -1px;

    overflow: hidden;

    padding: 0;

    position: absolute;

    width: 1px

}



.visuallyhidden.focusable:active,

.visuallyhidden.focusable:focus {

    clip: auto;

    height: auto;

    margin: 0;

    overflow: visible;

    position: static;

    width: auto

}



.invisible {

    visibility: hidden

}





/* CLEAR */

.clearfix {

    overflow: auto

}



.clearfix::after {

    content: "";

    clear: both;

    display: block

}



.clear {

    clear: both

}





/* HIDDEN/SHOW DEVICES */

.show-mobile {

    display: none

}



.show-desk {

    display: block

}



.hide-mobile {

    display: block

}



.hide-desk {

    display: none

}





/* MEDIUM DEVICE */

@media only screen and (max-width:768px) {



    .show-mobile {

        display: block

    }



    .show-desk {

        display: none

    }



    .hide-desk {

        display: block

    }



    .hide-mobile {

        display: none

    }



}



.shadow {

    box-shadow: 6px 6px 68px rgba(0, 0, 0, 0.15);

}





/* COL SYSTEM */

.row {

    display: flex;

    flex-wrap: wrap;

    gap: 0px;

    --spacing: 0px;

    margin: 0 -16px;

}



.row::after,

.row::before {

    content: '';

    clear: both;

    display: table;

}



[class*=col-]:not([class*=grid-]) {
	padding: 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}



.col-1 {
	flex: 1 0 calc(8.33% - var(--spacing));
	max-width: calc(8.33% - var(--spacing) / 2);
}

.col-2 {
	flex: 1 0 calc(16.66% - var(--spacing));
	max-width: calc(16.66% - var(--spacing) / 2);
}

.col-3 {
	flex: 1 0 calc(25% - var(--spacing));
	max-width: calc(25% - var(--spacing) / 2);
}

.col-4 {
	flex: 1 0 calc(33.33% - var(--spacing));
	max-width: calc(33.33% - var(--spacing) / 2);
}

.col-5 {
	flex: 1 0 calc(41.66% - var(--spacing));
	max-width: calc(41.66% - var(--spacing) / 2);
}

.col-6 {
	flex: 1 0 calc(50% - var(--spacing));
	max-width: calc(50% - var(--spacing) / 2);
}

.col-7 {
	flex: 1 0 calc(58.33% - var(--spacing));
	max-width: calc(58.33% - var(--spacing) / 2);
}

.col-8 {
	flex: 1 0 calc(66.66% - var(--spacing));
	max-width: calc(66.66% - var(--spacing) / 2);
}

.col-9 {
	flex: 1 0 calc(75% - var(--spacing));
	max-width: calc(75% - var(--spacing) / 2);
}

.col-10 {
	flex: 1 0 calc(83.33% - var(--spacing));
	max-width: calc(83.33% - var(--spacing) / 2);
}

.col-11 {
	flex: 1 0 calc(91.66% - var(--spacing));
	max-width: calc(91.66% - var(--spacing) / 2);
}

.col-12 {
	flex: 1 0 100%;
	max-width: 100%;
}

/* EXTRA LARGE DEVICE */
@media (max-width: 1200px) {
	.col-xl-1 {
		flex: 1 0 calc(8.33% - var(--spacing));
		max-width: calc(8.33% - var(--spacing) / 2);
	}

	.col-xl-2 {
		flex: 1 0 calc(16.66% - var(--spacing));
		max-width: calc(16.66% - var(--spacing) / 2);
	}

	.col-xl-3 {
		flex: 1 0 calc(25% - var(--spacing));
		max-width: calc(25% - var(--spacing) / 2);
	}

	.col-xl-4 {
		flex: 1 0 calc(33.33% - var(--spacing));
		max-width: calc(33.33% - var(--spacing) / 2);
	}

	.col-xl-5 {
		flex: 1 0 calc(41.66% - var(--spacing));
		max-width: calc(41.66% - var(--spacing) / 2);
	}

	.col-xl-6 {
		flex: 1 0 calc(50% - var(--spacing));
		max-width: calc(50% - var(--spacing) / 2);
	}

	.col-xl-7 {
		flex: 1 0 calc(58.33% - var(--spacing));
		max-width: calc(58.33% - var(--spacing) / 2);
	}

	.col-xl-8 {
		flex: 1 0 calc(66.66% - var(--spacing));
		max-width: calc(66.66% - var(--spacing) / 2);
	}

	.col-xl-9 {
		flex: 1 0 calc(75% - var(--spacing));
		max-width: calc(75% - var(--spacing) / 2);
	}

	.col-xl-10 {
		flex: 1 0 calc(83.33% - var(--spacing));
		max-width: calc(83.33% - var(--spacing) / 2);
	}

	.col-xl-11 {
		flex: 1 0 calc(91.66% - var(--spacing));
		max-width: calc(91.66% - var(--spacing) / 2);
	}

	.col-xl-12 {
		flex: 1 0 100%;
		max-width: 100%;
	}
}

/* LARGE DEVICE */
@media (max-width: 1199.98px) {
	.col-lg-1 {
		flex: 1 0 calc(8.33% - var(--spacing));
		max-width: calc(8.33% - var(--spacing) / 2);
	}

	.col-lg-2 {
		flex: 1 0 calc(16.66% - var(--spacing));
		max-width: calc(16.66% - var(--spacing) / 2);
	}

	.col-lg-3 {
		flex: 1 0 calc(25% - var(--spacing));
		max-width: calc(25% - var(--spacing) / 2);
	}

	.col-lg-4 {
		flex: 1 0 calc(33.33% - var(--spacing));
		max-width: calc(33.33% - var(--spacing) / 2);
	}

	.col-lg-5 {
		flex: 1 0 calc(41.66% - var(--spacing));
		max-width: calc(41.66% - var(--spacing) / 2);
	}

	.col-lg-6 {
		flex: 1 0 calc(50% - var(--spacing));
		max-width: calc(50% - var(--spacing) / 2);
	}

	.col-lg-7 {
		flex: 1 0 calc(58.33% - var(--spacing));
		max-width: calc(58.33% - var(--spacing) / 2);
	}

	.col-lg-8 {
		flex: 1 0 calc(66.66% - var(--spacing));
		max-width: calc(66.66% - var(--spacing) / 2);
	}

	.col-lg-9 {
		flex: 1 0 calc(75% - var(--spacing));
		max-width: calc(75% - var(--spacing) / 2);
	}

	.col-lg-10 {
		flex: 1 0 calc(83.33% - var(--spacing));
		max-width: calc(83.33% - var(--spacing) / 2);
	}

	.col-lg-11 {
		flex: 1 0 calc(91.66% - var(--spacing));
		max-width: calc(91.66% - var(--spacing) / 2);
	}

	.col-lg-12 {
		flex: 1 0 100%;
		max-width: 100%;
	}
}

/* MEDIUM DEVICE */
@media (max-width: 991.98px) {
	.col-md-1 {
		flex: 1 0 calc(8.33% - var(--spacing));
		max-width: calc(8.33% - var(--spacing) / 2);
	}

	.col-md-2 {
		flex: 1 0 calc(16.66% - var(--spacing));
		max-width: calc(16.66% - var(--spacing) / 2);
	}

	.col-md-3 {
		flex: 1 0 calc(25% - var(--spacing));
		max-width: calc(25% - var(--spacing) / 2);
	}

	.col-md-4 {
		flex: 1 0 calc(33.33% - var(--spacing));
		max-width: calc(33.33% - var(--spacing) / 2);
	}

	.col-md-5 {
		flex: 1 0 calc(41.66% - var(--spacing));
		max-width: calc(41.66% - var(--spacing) / 2);
	}

	.col-md-6 {
		flex: 1 0 calc(50% - var(--spacing));
		max-width: calc(50% - var(--spacing) / 2);
	}

	.col-md-7 {
		flex: 1 0 calc(58.33% - var(--spacing));
		max-width: calc(58.33% - var(--spacing) / 2);
	}

	.col-md-8 {
		flex: 1 0 calc(66.66% - var(--spacing));
		max-width: calc(66.66% - var(--spacing) / 2);
	}

	.col-md-9 {
		flex: 1 0 calc(75% - var(--spacing));
		max-width: calc(75% - var(--spacing) / 2);
	}

	.col-md-10 {
		flex: 1 0 calc(83.33% - var(--spacing));
		max-width: calc(83.33% - var(--spacing) / 2);
	}

	.col-md-11 {
		flex: 1 0 calc(91.66% - var(--spacing));
		max-width: calc(91.66% - var(--spacing) / 2);
	}

	.col-md-12 {
		flex: 1 0 100%;
		max-width: 100%;
	}
}

/* SMALL DEVICE */

@media only screen and (max-width: 576px) {

    .row {

        margin: 0 -8px;

    }



    [class*=col-] {

        flex: 1 0 100%;

        max-width: 100%;

        padding: 8px !important;

    }



    .col-sm-1 {

        flex: 1 0 calc(8.33% - var(--spacing));

        max-width: calc(8.33% - var(--spacing) / 2);

    }



    .col-sm-2 {

        flex: 1 0 calc(16.66% - var(--spacing));

        max-width: calc(16.66% - var(--spacing) / 2);

    }



    .col-sm-3 {

        flex: 1 0 calc(25% - var(--spacing));

        max-width: calc(25% - var(--spacing) / 2);

    }



    .col-sm-4 {

        flex: 1 0 calc(33.33% - var(--spacing));

        max-width: calc(33.33% - var(--spacing) / 2);

    }



    .col-sm-5 {

        flex: 1 0 calc(41.66% - var(--spacing));

        max-width: calc(41.66% - var(--spacing) / 2);

    }



    .col-sm-6 {

        flex: 1 0 calc(50% - var(--spacing));

        max-width: calc(50% - var(--spacing) / 2);

    }



    .col-sm-7 {

        flex: 1 0 calc(58.33% - var(--spacing));

        max-width: calc(58.33% - var(--spacing) / 2);

    }



    .col-sm-8 {

        flex: 1 0 calc(66.66% - var(--spacing));

        max-width: calc(66.66% - var(--spacing) / 2);

    }



    .col-sm-9 {

        flex: 1 0 calc(75% - var(--spacing));

        max-width: calc(75% - var(--spacing) / 2);

    }



    .col-sm-10 {

        flex: 1 0 calc(83.33% - var(--spacing));

        max-width: calc(83.33% - var(--spacing) / 2);

    }



    .col-sm-11 {

        flex: 1 0 calc(91.66% - var(--spacing));

        max-width: calc(91.66% - var(--spacing) / 2);

    }



    .col-sm-12 {

        flex: 1 0 100%;

        max-width: 100%;

    }

}



/* EXTRA SMALL DEVICE */

@media only screen and (max-width: 320px) {

    .col-xs-1 {

        flex: 1 0 calc(8.33% - var(--spacing));

        max-width: calc(8.33% - var(--spacing) / 2);

    }



    .col-xs-2 {

        flex: 1 0 calc(16.66% - var(--spacing));

        max-width: calc(16.66% - var(--spacing) / 2);

    }



    .col-xs-3 {

        flex: 1 0 calc(25% - var(--spacing));

        max-width: calc(25% - var(--spacing) / 2);

    }



    .col-xs-4 {

        flex: 1 0 calc(33.33% - var(--spacing));

        max-width: calc(33.33% - var(--spacing) / 2);

    }



    .col-xs-5 {

        flex: 1 0 calc(41.66% - var(--spacing));

        max-width: calc(41.66% - var(--spacing) / 2);

    }



    .col-xs-6 {

        flex: 1 0 calc(50% - var(--spacing));

        max-width: calc(50% - var(--spacing) / 2);

    }



    .col-xs-7 {

        flex: 1 0 calc(58.33% - var(--spacing));

        max-width: calc(58.33% - var(--spacing) / 2);

    }



    .col-xs-8 {

        flex: 1 0 calc(66.66% - var(--spacing));

        max-width: calc(66.66% - var(--spacing) / 2);

    }



    .col-xs-9 {

        flex: 1 0 calc(75% - var(--spacing));

        max-width: calc(75% - var(--spacing) / 2);

    }



    .col-xs-10 {

        flex: 1 0 calc(83.33% - var(--spacing));

        max-width: calc(83.33% - var(--spacing) / 2);

    }



    .col-xs-11 {

        flex: 1 0 calc(91.66% - var(--spacing));

        max-width: calc(91.66% - var(--spacing) / 2);

    }



    .col-xs-12 {

        flex: 1 0 100%;

        max-width: 100%;

    }

}



/* GRID SYSTEM */

.grid {

    display: grid;

}



[class*=grid-col-] {

    display: grid;

    gap: 16px;

    width: 100%;

}



.grid-col-2 {

    grid-template-columns: repeat(2, 1fr);

}



.grid-col-3 {

    grid-template-columns: repeat(3, 1fr);

}



.grid-col-4 {

    grid-template-columns: repeat(4, 1fr);

}



.grid-col-5 {

    grid-template-columns: repeat(5, 1fr);

}



.grid-col-6 {

    grid-template-columns: repeat(6, 1fr);

}



.grid-col-7 {

    grid-template-columns: repeat(7, 1fr);

}



.grid-col-8 {

    grid-template-columns: repeat(8, 1fr);

}



.grid-col-1-2 {

    grid-template-columns: 1fr 2fr;

}



.grid-col-2-1 {

    grid-template-columns: 2fr 1fr;

}



.grid-col-1-3 {

    grid-template-columns: 1fr 3fr;

}



.grid-col-3-1 {

    grid-template-columns: 3fr 1fr;

}



.grid-col-1-4 {

    grid-template-columns: 1fr 4fr;

}



.grid-col-4-1 {

    grid-template-columns: 4fr 1fr;

}



.grid-col-1-5 {

    grid-template-columns: 1fr 5fr;

}



.grid-col-5-1 {

    grid-template-columns: 5fr 1fr;

}



.grid-col-2-3 {

    grid-template-columns: 2fr 3fr;

}



.grid-col-3-2 {

    grid-template-columns: 3fr 2fr;

}



/* SMALL DEVICE TO LARGE DEVICE */

@media only screen and (min-width: 577px) and (max-width: 992px) {

    [class*="grid-col"]:not(.grid-col-3) {

        grid-template-columns: repeat(2, 1fr);

        justify-items: center;

    }

}



/* SMALL DEVICE */

@media only screen and (max-width: 576px) {

    [class*="grid-col-"] {

        grid-template-columns: 100%;

        justify-items: center;

    }



    .text-center-sm {

        text-align: center;

    }

}



/* GAP FOR FLEX and GRID ELEMENTS */

.gap-0 {

    gap: 0px;

    --spacing: 0px;

}



.gap-8 {

    gap: 8px;

    --spacing: 8px;

}



.gap-16 {

    gap: 16px;

    --spacing: 16px;

}



.gap-32 {

    gap: 32px;

    --spacing: 32px;

}



.gap-64 {

    gap: 64px;

    --spacing: 64px;

}



/* ROW GAP */



.rgap-0 {

    row-gap: 0;

}



.rgap-8 {

    row-gap: 8px;

}



.rgap-16 {

    row-gap: 16px;

}



.rgap-32 {

    row-gap: 32px;

}



.rgap-64 {

    row-gap: 64px;

}



/* COLUMN GAP */



.cgap-0 {

    column-gap: 0;

    --spacing: 0;

}



.cgap-8 {

    column-gap: 8px;

    --spacing: 8px;

}



.cgap-16 {

    column-gap: 16px;

    --spacing: 16px;

}



.cgap-32 {

    column-gap: 32px;

    --spacing: 32px;

}



.cgap-64 {

    column-gap: 64px;

    --spacing: 64px;

}



/* SMALL DEVICE */

@media only screen and (max-width: 576px) {

    [class*="gap-"]:not(.g-cols) {

        gap: 16px;

    }

}



/* *** END RULES CSS *** */