*:focus {
    outline: 0!important;
    box-shadow: none!important;
}
::-moz-selection {
    background: #424A3C;
    color: white;
}
::selection {
    background: #424A3C;
    color: white;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif !important;
    color: #000000;
}
hr {
    border-color: #424A3C;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'ClashDisplay', sans-serif !important;
}
h2 {
    font-size: 36px;
}
p a {
        text-decoration: underline;
    }
ul {
    min-width: 0px;
}
/* Um elemento seo-only nao pode ocupar espaco NENHUM. Sem o margin/padding a
   zero, uma classe herdada de outro sitio continua a empurrar o layout mesmo
   com height: 0 -- foi o que aconteceu com o <h1> de SEO da home, que trazia
   a classe .label (do hamburguer, margin: 10px 0) e afastava o slider 20px
   do header: 10px a colapsar para fora do <main> + 10px por baixo. */
.seo-only.seo-only.seo-only{
    color: transparent;
    font-size: 0;
    height: 0;
    line-height: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 0;
}
.sr-only{
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}
section {
    scroll-margin-top: 50px;
}
/* width */
::-webkit-scrollbar {
    width: 11px;
}
/* Track */
::-webkit-scrollbar-track {
    background: rgba(66, 74, 60, .2);
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #424A3C;
    border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #424A3C;
    opacity: 0.2;
}
/* Botao hamburguer do menu mobile (o <label for="chk">). Nao usar noutro
   lado: traz margens proprias. */
/* Hamburguer do menu mobile.

   ⚠️ O alvo tactil vem do PADDING, nunca da margem -- margem nao recebe
   cliques. Antes o <label> era `display: inline` sem padding nenhum: a caixa
   media 40x32 e colava-se a tinta, por isso so os tracos (e o vao entre eles)
   respondiam ao dedo. Com `padding: 6px` a caixa passa a 52x44, acima do
   minimo de 44x44 (WCAG 2.5.5), sem mexer no desenho.

   O `margin: 4px -6px` compensa o padding: verticalmente mantem os mesmos 52px
   de altura total que a regra antiga ocupava no header (10+32+10), e
   horizontalmente puxa a caixa 6px para cada lado para a tinta ficar
   exactamente onde estava. */
.label {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 6px;
  margin: 4px -6px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  position: relative;
   
}
.label .bar{
    box-sizing: border-box;
    width: 32px;
    height: 4px;
    background: #000000;
    /* O espaco entre barras passou para o `gap` do flex: como margem ficava
       fora da area clicavel de cada barra e dentro de uma caixa que nao tinha
       area propria. */
    margin: 0;
    border-radius: 5px;
    transition: background, opacity, transform .8s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    }
.label .bar.bar:nth-child(1){
        width: 35px;
      }
.label .bar.bar:nth-child(2){
        width: 40px;
      }
#chk{
  display: none;
}
#chk#chk:checked  ~ .label > .bar {
    background: #000000;
    width: 32px;
    height: 4px;
  }
/* O X faz-se so com `transform`, sem `position: absolute`.
       A versao antiga tirava as barras do fluxo e punha a terceira em `top: 0`
       -- que e o topo do padding-box, portanto passaria a ficar 6px acima da
       primeira e o X saia torto. Deslocar 14px (4 da barra + 10 do gap) junta
       as duas no centro, seja qual for o padding. */
#chk#chk:checked  ~ .label > .bar.bar:nth-child(1){
      transform: translateY(14px) rotate(45deg);
    }
#chk#chk:checked  ~ .label > .bar.bar:nth-child(2){
      background: transparent;
      opacity: 0;
    }
#chk#chk:checked  ~ .label > .bar.bar:nth-child(3){
      transform: translateY(-14px) rotate(-45deg);
    }
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-VariableFont_wght.woff2') format('woff2-variations'),
         url('/fonts/Inter-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Italic-VariableFont_wght.woff2') format('woff2-variations'),
         url('/fonts/Inter-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay-Extralight.otf') format('opentype');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay-Light.otf') format('opentype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay-Medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay-Semibold.otf') format('opentype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/fonts/ClashDisplay-Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}
.filter-white{
    filter: brightness(0) invert(1);
}
.filter-black{
    filter: brightness(0) invert(0);
}
.uderline-animated {
    position: relative;
}
.uderline-animated::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #424A3C;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }
.uderline-animated:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
.uderline-animated.active::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
/* ---------------------------------------------------------------------------
   .cms-content -- tipografia do rich-text que vem do CKEditor

   O preflight do Tailwind zera o font-size e as margens dos h1-h6, zera as
   margens dos <p> e tira `list-style` e `padding` das listas. Resultado: tudo
   o que o cliente escreve no CMS sai colado, com os titulos de seccao do
   tamanho do corpo e as listas sem marcadores nem indentacao.

   Estas regras devolvem o ritmo. Ficam presas a `.cms-content` (e nao soltas
   em h2/p/ul) porque o SCSS do front serve todos os tenants do CMS e ha
   headings e listas noutros sitios -- cards, menus, rodape -- que dependem
   do reset do Tailwind.

   ⚠️ O espacamento entre paragrafos vem DAQUI. O `title-content.blade.php`
   filtra os `<p>&nbsp;</p>` que o CKEditor deixa como espacadores manuais;
   sem esse filtro as duas coisas somam-se.
   --------------------------------------------------------------------------- */
/* Titulos de seccao. A familia (ClashDisplay) ja vem do base.scss, que a
       impoe com !important em todos os h1-h6 -- aqui so o tamanho e o ritmo.
       O <h2> do proprio bloco esta fora deste wrapper e mantem os 40px. */
.cms-content h2, .cms-content h3, .cms-content h4, .cms-content h5, .cms-content h6 {
        font-weight: 500;
        line-height: 1.3;
    }
.cms-content h2 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 12px;
    }
.cms-content h3 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 10px;
    }
.cms-content h4, .cms-content h5, .cms-content h6 {
        font-size: 17px;
        margin-top: 24px;
        margin-bottom: 8px;
    }
.cms-content p {
        margin-bottom: 16px;
    }
.cms-content ul, .cms-content ol {
        margin-bottom: 16px;
        /* Indentacao suficiente para o marcador ficar fora do bloco de texto
           sem sair da coluna. `outside` mantem as linhas seguintes alinhadas
           com a primeira, que e o que se espera de texto legal numerado. */
        padding-left: 22px;
        list-style-position: outside;
    }
.cms-content ul { list-style-type: disc; }
.cms-content ol { list-style-type: decimal; }
.cms-content li {
        margin-bottom: 8px;
    }
.cms-content li::marker {
            /* Sem isto o marcador herda o 17px do corpo e fica pesado ao lado
               do texto a 60% de contraste. */
            color: inherit;
        }
/* O ultimo item nao acumula a sua margem com a da lista. */
.cms-content li:last-child { margin-bottom: 0; }
/* Listas encaixadas: circulo/letras, e sem margem a fechar por dentro. */
.cms-content ul ul { list-style-type: circle; }
.cms-content ul ul ul { list-style-type: square; }
.cms-content ol ol { list-style-type: lower-alpha; }
.cms-content ol ol ol { list-style-type: lower-roman; }
.cms-content ul ul, .cms-content ul ol, .cms-content ol ol, .cms-content ol ul {
        margin-top: 8px;
        margin-bottom: 0;
    }
/* Um <li> pode trazer paragrafos la dentro; o ritmo do <p> desalinhava-o
       do marcador. */
.cms-content li > p { margin-bottom: 8px; }
.cms-content li > p:last-child { margin-bottom: 0; }
/* O base.scss so sublinha `p a`; dentro de listas e titulos o link ficava
       indistinguivel do texto. */
.cms-content a { text-decoration: underline; }
.cms-content strong, .cms-content b { font-weight: 600; }
/* O bloco nao pode abrir com margem nem fechar com ela -- o espaco de fora
       e do componente (o mb-8 do titulo e o gap do flex), nao do conteudo. */
.cms-content > :first-child { margin-top: 0; }
.cms-content > :last-child { margin-bottom: 0; }
/* Seta do submenu do drawer mobile.

   O `peer-checked:` do Tailwind so alcanca IRMAOS do input, e a seta esta dentro
   do <label>. Em vez de inventar uma utility, a regra fica aqui, explicita.

   ⚠️ Roda-se um <span>, nao o <svg>. Um <svg> tem `transform-box: view-box` e o
   `transform` do CSS nao lhe pega da mesma maneira -- ficava sempre na matriz
   identidade. E nao se roda o <label>: quando o item nao tem url proprio, o
   label envolve a LINHA INTEIRA (para o clique no titulo abrir a lista) e
   rodar 180 graus poria o texto de pernas para o ar.
   Ver `menus/desktop/menu-desktop-item.blade.php`. */
.submenu-check:checked ~ .submenu-toggle .submenu-arrow {
    transform: rotate(180deg);
}
article.card {
        position: relative;
        border-radius: 0rem;
        height: 100%;
    }
article.card .card-title{
            line-height: 23px;
            width: 100%;
        }
article.card .card-title h3 {
                font-size: 12px;
            }
article.card .card-title h2 {
                display: -webkit-box;
                -webkit-box-orient: vertical;  
                -webkit-line-clamp: 4;
                overflow: hidden;
                transition: color 0.25s;
            }
article.card .card-title h2.hidden-skeleton.hidden{
                display: none;
            }
article.card .card-title small {
                font-size:0.75rem;
            }
article.card .card-media {
            width: 100%;
            height: auto;
            transition: box-shadow 0.25s;
            overflow: hidden;
            aspect-ratio: 1 / 1;    
        }
@supports not (aspect-ratio: 1 / 1) {
article.card .card-media {
                width: 100%;
                height: calc(100% * 9 / 16);
                transform: translateY(calc((100% * 9 / 16 - 55%) / -2))    
        }    
            }
article.card .card-media.width-auto {
                width: auto;
            }
article.card .card-media .flex-media {
                position: relative;
                height: 100%;
                overflow: hidden;
                background: transparent;
                display: block;
                border-top-left-radius: 0rem;
                border-top-right-radius: 0rem;
            }
article.card .card-media .flex-media figure {
                    position: relative;
                    height: 100%;
                    width: 100%;
                }
article.card .card-media .flex-media figure img{
                        height: 100%;
                        width: 100%;
                        background-color: hsl(200, 20%, 80%);
                        background-position: center;
                        max-width: none;
                        -o-object-fit: cover;
                        object-fit: cover;
                        font-family: "object-fit: cover";
                        transition: transform 0.3s ease-in;
                    }
article.card .card-media .flex-media figure figcaption{
                        display: none;
                    }
article.card .article-overflow{
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 0%;
            transition: all 0.15s ease-in;

        }
article.card .card-header {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            transition: all 0.3s ease-in;

            height: auto;
        }
article.card.primary-card .card-title {
                position: absolute;
                left: 0;
                bottom: 0;
                color: white;
                padding: 16px;
            }
article.card.primary-card .card-title h2 {
                    font-family: 'blacker-regular';
                    letter-spacing: 0.01rem;
                }
article.card.primary-card .card-title span{
                    font-family: 'Poppins', sans-serif;
                }
article.card.primary-card .card-media {
                overflow: inherit
            }
article.card.primary-card .card-header {
                height: 70%;
            }
article.card.primary-card .exclusivo {
                display: none;
            }
article.card.primary-card .exclusive-main {
                display: inline;
            }
article.card.secondary-card .card-header {
                position: relative;
            }
article.card.secondary-card .card-header .card-title h3 {
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 22px;
                    }
@media (min-width: 1024px) {
article.card.secondary-card .card-header .card-title h3 {
                            font-size: 14px;
                            font-weight: 600;
                            line-height: 18px
                    }
                        }
@media (min-width: 1280px) {
article.card.secondary-card .card-header .card-title h3 {
                            font-size: 16px;
                            font-weight: 600;
                            line-height: 22px
                    }
                        }
article.card.secondary-card .card-header .card-title h2 {
                        letter-spacing: 0.01rem;
                        font-size: 20px;
                        line-height: 27px;
                        font-weight: 500;
                    }
@media (min-width: 834px) {
article.card.secondary-card .card-header .card-title h2 {
                            font-size: 20px;
                            line-height: 30px;
                            font-weight: 400
                    }
                        }
@media (min-width: 1280px) {
article.card.secondary-card .card-header .card-title h2 {
                            font-size: 14px;
                            line-height: 22px
                    }
                        }
@media (min-width: 1920px) {
article.card.secondary-card .card-header .card-title h2 {
                            font-size: 20px;
                            line-height: 30px
                    }
                        }
article.card.xl-image .card-media {
                height: 350px;
            }
@media (min-width: 750px) {
article.card.xl-image .card-media {
                    height: 350px
            }
                }
@media (min-width: 834px) {
article.card.xl-image .card-media {
                    height: 513px
            }
                }
@media (min-width: 1280px) {
article.card.xl-image .card-media {
                    height: 513px
            }
                }
@media (min-width: 1920px) {
article.card.xl-image .card-media {
                    height: 780px
            }
                }
article.card.lg-image .card-media {
                height: 280px;
                aspect-ratio: unset;
            }
@media (min-width: 834px) {
article.card.lg-image .card-media {
                    height: 380px
            }
                }
@media (min-width: 1280px) {
article.card.lg-image .card-media {
                    height: 440px
            }
                }
@media (min-width: 1920px) {
article.card.lg-image .card-media {
                    height: 580px
            }
                }
article.card.md-image .card-media {
                aspect-ratio: unset;
                height: 300px;
            }
article.card.sm-image .card-media {
                height: 280px;
                aspect-ratio: unset;
            }
@media (min-width: 750px) {
article.card.sm-image .card-media {
                    height: 120px
            }
                }
@media (min-width: 834px) {
article.card.sm-image .card-media {
                    height: 175px
            }
                }
@media (min-width: 1280px) {
article.card.sm-image .card-media {
                    height: 200px
            }
                }
@media (min-width: 1920px) {
article.card.sm-image .card-media {
                    height: 270px
            }
                }
article.card.xs-image .card-media {
                height: 240px;
                aspect-ratio: unset;
            }
article.card.circle-image.tiny .card-media {
                    height: auto;
                    box-shadow: none;
                    height: 100px;
                    width: 100px;
                }
@media (min-width: 834px) {
article.card.circle-image.tiny .card-media {
                        height: 200px;
                        width: 200px
                }
                    }
@media (min-width: 1280px) {
article.card.circle-image.tiny .card-media {
                        height: 200px;
                        width: 200px
                }
                    }
@media (min-width: 1920px) {
article.card.circle-image.tiny .card-media {
                        height: 200px;
                        width: 200px
                }
                    }
article.card.circle-image .card-media {
                height: auto;
                box-shadow: none;
                height: 200px;
                width: 200px;
            }
article.card.circle-image .card-media .flex-media figure {
                        border-radius: 50%;
                        overflow: hidden;
                    }
article.card.circle-image .card-media .flex-media figure img{
                            margin: auto;
                            max-width: none;
                            -o-object-fit: cover;
                            object-fit: cover;
                            font-family: "object-fit: cover";
                            border-radius: 9999px;
                        }
article.card.circle-image .card-media .exclusivo {
                    display: none;
                }
article.card.circle-image .loading-skeleton .cover-img {
                border-radius: 50%;
            }
article.card:hover{
            /*
            .card-media .flex-media figure img {
                will-change: transform;
                transform: scale(1.3,1.3);
            }
            */
        }
article.card:hover h2{
                opacity: 0.72;
            }
article.card:hover.animated.main-card .card-title  h2 {
                    opacity: 1;
                }
article.card:hover.animated .card-header {
                    margin-top: -50px;
                }
article.card:hover.animated .article-overflow {
                    height: 100%;
                    background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 80%);
                }
article.card:hover.animated .card-media .flex-media figure img {
                    will-change: transform;
                    transform: scale(1.3,1.3);
                }
article.card:hover .card-title  h3 {
                color: #424A3C;
            }
article .content h1 {
            font-size: 2em;
            margin-top: 40px;
            margin-bottom: 20px;
        }
article .content h2{
            font-size: 1.5em;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 2.5rem;
        }
article .content h3 {
            font-size: 1.17em;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 2rem;
        }
article .content h4 {
            font-size: 1em;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.5rem;
        }
article .content h5 {
            font-size: .83em;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.25rem;
        }
article .content h6{
            font-size: .75em;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.25rem;
        }
article .content p{
            margin-bottom: 20px;
            letter-spacing: 0.2px;   
        }
article .content p span{
                font-family: 'blacker-regular'!important;
                font-size: 18px;
                line-height: 26px;
                color: #555555;
            }
article .content p a {
                -webkit-text-decoration-color: #000000;
                        text-decoration-color: #000000;
                color: #000000;
            }
article .content img {
            border-radius: 0.375rem;
            width: 100%;
            height: auto;
            margin: 20px 0px;
        }
article .content iframe {
            border-radius: 0.375rem;
            margin: 20px 0px;
        }
article .content span{
            font-family: 'blacker-regular'!important;
        }
article .content .column img {
            margin-top: 10px!important;
            margin-bottom: 10px!important;
        }
article .content ul {
            list-style: disc!important;
            padding-left: 25px;
        }
article .content ol {
            list-style: decimal!important;
            padding-left: 25px;
        }
article .content blockquote {
            display: block;
            margin-top: 1em;
            margin-bottom: 1em;
            margin-left: 40px;
            margin-right: 40px;
            border-left: 5px solid  #424A3C;
            padding-left: 10px;
        }
article .content blockquote.twitter-tweet {
                display: inline-block;
                font-size: 12px;
                font-weight: bold;
                line-height: 16px;
                border-color: #eee #ddd #bbb;
                border-radius: 5px;
                border-style: solid;
                border-width: 1px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
                margin: 10px 5px;
                padding: 0 16px 16px 16px;
                max-width: 468px;
            }
article .content blockquote.twitter-tweet p {
                    font-size: 16px;
                    font-weight: normal;
                    line-height: 20px;
                }
article .content blockquote.twitter-tweet a {
                    color: inherit;
                    font-weight: normal;
                    text-decoration: none;
                    outline: 0 none;
                }
article .content blockquote.twitter-tweet a:hover,
                article .content blockquote.twitter-tweet a:focus {
                    text-decoration: underline;
                }
article .content sub {
            vertical-align: sub;
            font-size: smaller;
        }
article .content sup{
            vertical-align: super;
            font-size: smaller;
        }
article .content code {
            background-color: #E6E6E6;
            border-radius: 4px;
            color: white;
            padding: 0 10px;
        }
article .content tr {
            border-bottom: 1px solid black;
            border-top: 1px solid black;
            border-collapse: collapse;
        }
article .content strong {
            font-family: 'blacker-bold';
        }
article .card-link {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
article .article-date {
        color: rgb(100 116 139);
        margin-top: 0.75rem;
        font-size: 14px;
    }
figcaption {
    font-size: 10px;
}
.autor-photo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: hsl(200, 20%, 80%);
    background-size: cover;
    background-position: center;
}
@media (min-width: 834px) {
.autor-photo {
        height: 80px;
        width: 80px
}
    }
@media (min-width: 1280px) {
.autor-photo {
        height: 80px;
        width: 80px
}
    }
@media (min-width: 1920px) {
.autor-photo {
        height: 80px;
        width: 80px
}
    }
.autor-photo-large {
        height: 200px;
        width: 200px;
        border-radius: 50%;
        background-color: hsl(200, 20%, 80%);
        background-size: cover;
        background-position: center;
        overflow: hidden;
    }
.autor-photo-large img{
            height: 100%;
            width: 100%;
            background-color: hsl(200, 20%, 80%);
            background-position: center;
            max-width: none;
            -o-object-fit: cover;
            object-fit: cover;
            font-family: "object-fit: cover";
            transition: transform 0.3s ease-in;
        }
/* APP Theme */
body.gray-bg {
        background-color: #EFEFEF;
    }
body.gray-bg header #mainNavbar {
            background-color: #EFEFEF;
        }
body.yellow-bg {
        background-color: #F4F3EE;
    }
body.yellow-bg header #mainNavbar {
            background-color: #F4F3EE;
        }
body.dark-mode .uderline-animated::after {
            background-color: #0A0A0A;
        }
body.dark-mode.normal #mainNavbar #full-screen-menu-icon img,
                body.dark-mode.normal #mainNavbar #lkcom-logo {
                    filter: brightness(0) invert(0);
                }
body.dark-mode.normal #mainNavbar a {
                    color: #000000;
                }
body.dark-mode.normal #mainNavbar .microsite-name{
                    color: #000000;
                }
body.dark-mode.normal #secondaryNavbar {
                color: #000000;
            }
body.dark-mode.normal .mobile-menu-icon, body.dark-mode.normal .bg-red, body.dark-mode.normal .bg-primary, body.dark-mode.normal .mobile {
                background-color: #0A0A0A;
            }
body.dark-mode.normal .full.swiper .container,
                    body.dark-mode.normal .full.swiper .max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                        max-width: 100%!important;
                        
                    }
@media (min-width: 1920px) {
body.dark-mode.normal .full.swiper .container,
                    body.dark-mode.normal .full.swiper .max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                            max-width: 100%!important
                        
                    }
                        }
@media (min-width: 1600px) {
body.dark-mode.normal .full.swiper .container,
                    body.dark-mode.normal .full.swiper .max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                            max-width: 100%!important
                        
                    }
                        }
@media (min-width: 1280px) {
body.dark-mode.normal .full.swiper .container,
                    body.dark-mode.normal .full.swiper .max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                            max-width: 100%!important
                        
                    }
                        }
@media (min-width: 1124px) {
body.dark-mode.normal .full.swiper .container,
                    body.dark-mode.normal .full.swiper .max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                            max-width: 100%!important
                        
                    }
                        }
@media (min-width: 1024px) {
body.dark-mode.normal .full.swiper .container,
                    body.dark-mode.normal .full.swiper .max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                    body.dark-mode.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                            max-width: 100%!important
                        
                    }
                        }
body.dark-mode.normal .full.swiper .sm\:px-10 {
                        padding-left: 0!important;
                        padding-right: 0!important;
                    }
body.dark-mode.superCompact #mainNavbar a {
                    color: #000000!important;
                }
body.dark-mode.superCompact #mainNavbar a.uderline-animated::after {
                        background-color: #0A0A0A!important;
                    }
body.dark-mode.superCompact #mainNavbar #lkcom-logo {
                    filter: brightness(0) invert(0)!important;  
                }
body.dark-mode.superCompact #mainNavbar .microsite-name{
                    color: #000000;
                }
body.dark-mode.superCompact #mainNavbar .border-primary {
                    border-color: #000000!important;
                }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar {
            background-color: transparent;
        }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar .border-primary {
                border-color: #000000;
            }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar #lkcom-logo {
                filter: brightness(0) invert(0);
            }
@media screen and (min-width: 1024px) {
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar #lkcom-logo {
                    filter: brightness(0) invert(0)
            }
                }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar .microsite-name{
                color: #000000;
            }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar a {
                color: #000000;
            }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar a.uderline-animated::after {
                    background-color: #0A0A0A;
                }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar a:hover {
                    color: #424A3C;
                }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar.is-open .border-primary {
                    border-color: #424A3C;
                }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar.is-open #full-screen-menu-icon img,
                body.dark-mode div.fixed-header div.desktop-menu #mainNavbar.is-open #lkcom-logo {
                    filter: none;
                }
body.dark-mode div.fixed-header div.desktop-menu #mainNavbar.is-open a,
                body.dark-mode div.fixed-header div.desktop-menu #mainNavbar.is-open .microsite-name {
                    color: #424A3C;
                }
body.dark-mode .no-background .swiper.swiper-news-carousel-component .swiper-button-next .icon{
                filter: brightness(0) invert(0);
            }
body.dark-mode .no-background #mainNavbar {
                background-color: transparent;
            }
body.dark-mode .no-background #mainNavbar .border-primary {
                    border-color: white;
                }
body.dark-mode .no-background #mainNavbar #lkcom-logo {
                    filter: brightness(0) invert(1);
                }
body.dark-mode .no-background #mainNavbar .microsite-name{
                    color: white;
                }
body.dark-mode .no-background #mainNavbar a {
                    color: white;
                }
body.dark-mode .no-background #mainNavbar a.uderline-animated::after {
                        background-color: white;
                    }
body.dark-mode .no-background #mainNavbar a:hover {
                        color: #424A3C;
                    }
body.dark-mode .no-background #mainNavbar.is-open .border-primary {
                        border-color: #424A3C;
                    }
body.dark-mode .no-background #mainNavbar.is-open #full-screen-menu-icon img,
                    body.dark-mode .no-background #mainNavbar.is-open #lkcom-logo {
                        filter: none;
                    }
body.dark-mode .no-background #mainNavbar.is-open a,
                    body.dark-mode .no-background #mainNavbar.is-open .microsite-name {
                        color: #424A3C;
                    }
body.dark-mode .no-background footer .uderline-animated::after {
                    background-color: white;
                }
body.dark-mode a,
        body.dark-mode .one-column .title-block{
            color: #000000;
        }
body.dark-mode hr {
            border-color: #000000;
        }
body.dark-mode .lkcom-filter select, body.dark-mode .lkcom-filter input {
                color: #000000!important;
            }
body.dark-mode .lkcom-filter select::-moz-placeholder, body.dark-mode .lkcom-filter input::-moz-placeholder {
                    color: #000000;
                }
body.dark-mode .lkcom-filter select:-ms-input-placeholder, body.dark-mode .lkcom-filter input:-ms-input-placeholder {
                    color: #000000;
                }
body.dark-mode .lkcom-filter select::placeholder, body.dark-mode .lkcom-filter input::placeholder {
                    color: #000000;
                }
body.dark-mode .lkcom-filter select::-ms-input-placeholder, body.dark-mode .lkcom-filter input::-ms-input-placeholder { /* Edge 12 -18 */
                    color: #000000;
                }
body.dark-mode .lkcom-filter div:not(:first-child){
                    border-left: 1px solid #000000!important;
                }
body.dark-mode .search-icon-btn img{
            filter: brightness(0) invert(0);
        }
body.dark-mode .swiper.swiper-slide-component .swiper-pagination-bullet {
            background: #0A0A0A!important;
        }
body.dark-mode .hover\:bg-black:hover {
            background-color: #fff;
            color: #000000;
        }
body.dark-mode .hover\:bg-primary:hover {
            background-color: #fff;
            color: #000000;
        }
body.dark-mode .text-primary,
        body.dark-mode #secondaryNavbar,
        body.dark-mode .text-red  {
            color: #000000;
        }
body.dark-mode .text-primary .hoveredimg, body.dark-mode #secondaryNavbar .hoveredimg, body.dark-mode .text-red .hoveredimg {
                filter: brightness(0) invert(0);
            }
body.dark-mode .border-primary,
        body.dark-mode .border-red {
            border-color: #000000;
        }
body.dark-mode .hover\:text-primary:hover {
            color: #000000; 
        }
body.dark-mode .hover\:bg-white:hover {
            background-color: #fff;
        }
body.dark-mode .bg-red\/75 {
            background-color: #0A0A0A;
        }
body.dark-mode .icon-person,
        body.dark-mode .weather-icon,
        body.dark-mode .search-icon {
            filter: brightness(0) invert(0);
        }
body.dark-mode .swiper-pagination-bullet-active{
            background-color: #424A3C!important;
        }
body.dark-mode .swiper.swiperImportantNews .swiper-pagination-bullet-active{
            background-color: #424A3C!important;
        }
body.dark-mode .bg-primary {
            background-color: #424A3C!important;
        }
body.dark-mode a.bg-primary {
                background-color: #424A3C!important;
                color: white!important;
            }
body.dark-mode nav#fullScreenMenu.full-screen-menu a{
            color: #424A3C;
        }
/* Handle */
body.dark-mode::-webkit-scrollbar-thumb {
            background: #0A0A0A!important;
        }
body.dark-mode ::-webkit-scrollbar-thumb {
            background: #0A0A0A!important;
        }
/* Handle on hover */
body.dark-mode::-webkit-scrollbar-thumb:hover {
            background: #0A0A0A!important;
        }
body.dark-mode ::-webkit-scrollbar-thumb:hover {
            background: #0A0A0A!important;
        }
body.dark-mode .event-list .event-list-card {
            border-color: #000000;
        }
body.dark-mode ::-moz-selection { /* Code for Firefox */
            background: #0A0A0A;
          }
body.dark-mode ::selection {
            background: #0A0A0A;
        }
body.dark-mode footer{
            background-color: #0A0A0A!important;
        }
body.dark-mode footer .uderline-animated::after {
                background-color: white;
            }
/* APP Layout */
@media (max-width: 1023px) {
body.normal .mobile-desktop-margin {
                margin-top: 6rem
        }
            }
@media (min-width: 1024px) {
body.normal .swiper h2.lg\:px-8 {
                    padding-left: 0px!important;
                    padding-right: 0px!important
            }
                }
body.normal .full.swiper .container,
                body.normal .full.swiper .max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                    max-width: 100%!important;
                    
                }
@media (min-width: 1920px) {
body.normal .full.swiper .container,
                body.normal .full.swiper .max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                        max-width: 100%!important
                    
                }
                    }
@media (min-width: 1600px) {
body.normal .full.swiper .container,
                body.normal .full.swiper .max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                        max-width: 100%!important
                    
                }
                    }
@media (min-width: 1280px) {
body.normal .full.swiper .container,
                body.normal .full.swiper .max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                        max-width: 100%!important
                    
                }
                    }
@media (min-width: 1124px) {
body.normal .full.swiper .container,
                body.normal .full.swiper .max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                        max-width: 100%!important
                    
                }
                    }
@media (min-width: 1024px) {
body.normal .full.swiper .container,
                body.normal .full.swiper .max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl,
                body.normal .full.swiper .swiper-wrapper > .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl{
                        max-width: 100%!important
                    
                }
                    }
body.normal .full.swiper .sm\:px-10 {
                    padding-left: 0!important;
                    padding-right: 0!important;
                }
body.normal .full.swiper .swiper-pagination.px-8 {
                    padding-left: 0px;
                    padding-right: 0px;
                }
body.normal .full .absolute div.lg\:px-8 {
                    padding-left: 0px;
                    padding-right: 0px;
                }
body.normal footer .uderline-animated::after {
                background-color: white;
            }
/* Header */
@media (min-width: 1024px) {
body.full-screen header .fixed-header {
                    height: 0px
            }
                }
body.full-screen header .no-background #mainNavbar {
                    background-color: transparent;
                }
body.full-screen header .no-background #mainNavbar .border-primary {
                        border-color: white;
                    }
body.full-screen header .no-background #mainNavbar #lkcom-logo {
                        filter: brightness(0) invert(1);
                    }
body.full-screen header .no-background #mainNavbar .microsite-name{
                        color: white;
                    }
body.full-screen header .no-background #mainNavbar a {
                        color: white;
                    }
@media (min-width: 1024px) {
body.full-screen header .no-background #mainNavbar a {
                            color: white
                    }
                        }
body.full-screen header .no-background #mainNavbar a.uderline-animated::after {
                            background-color: white;
                        }
body.full-screen header .no-background #mainNavbar a:hover {
                            color: #424A3C;
                        }
body.full-screen header .no-background #mainNavbar.is-open .border-primary {
                            border-color: #424A3C;
                        }
body.full-screen header .no-background #mainNavbar.is-open #lkcom-logo {
                            filter: none;
                        }
body.full-screen header .no-background #mainNavbar.is-open .microsite-name,
                        body.full-screen header .no-background #mainNavbar.is-open a {
                            color: white;
                        }
body.full-screen.right .is-open #lkcom-logo {
                    filter: brightness(0) invert(1)!important;
                }
body.full-screen.right .is-open .microsite-name{
                    color: white!important;
                }
body.full-screen.superCompact #mainNavbar a.uderline-animated::after {
                        background-color: #424A3C!important;
                    }
body.full-screen .mobile-desktop-margin {
            margin-top: 6rem;
            
        }
@media (min-width: 1024px) {
body.full-screen .mobile-desktop-margin {
                margin-top: 168px
            
        }
            }
body.full-screen .swiper .container,
            body.full-screen .swiper .max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .slider-text > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl {
                    max-width: 100%!important;
            }
@media (min-width: 1920px) {
body.full-screen .swiper .container,
            body.full-screen .swiper .max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .slider-text > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl {
                    max-width: 100%!important
            }
                }
@media (min-width: 1600px) {
body.full-screen .swiper .container,
            body.full-screen .swiper .max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .slider-text > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl {
                    max-width: 100%!important
            }
                }
@media (min-width: 1280px) {
body.full-screen .swiper .container,
            body.full-screen .swiper .max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .slider-text > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl {
                    max-width: 100%!important
            }
                }
@media (min-width: 1124px) {
body.full-screen .swiper .container,
            body.full-screen .swiper .max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .slider-text > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl {
                    max-width: 100%!important
            }
                }
@media (min-width: 1024px) {
body.full-screen .swiper .container,
            body.full-screen .swiper .max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .slider-text > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .swiper-no-swiping > .\33xl\:max-w-screen-2xl,
            body.full-screen .swiper .swiper-slide > .slider-text > .\33xl\:max-w-screen-2xl {
                    max-width: 100%!important
            }
                }
body.full-screen .swiper .sm\:px-10 {
                padding-left: 0!important;
                padding-right: 0!important;
            }
body.full-screen .static-header,
        body.full-screen .fixed-header   {
            width: 100%;
        }
@media (min-width: 1024px) {
body.full-screen .static-header,
        body.full-screen .fixed-header   {
                position: absolute;
                top: 0
        }
            }
/* Footer */
body.full-screen footer {
            background-color: #424A3C;
        }
body.full-screen footer .uderline-animated::after {
                background-color: white;
            }
/* Header colado ao topo durante o scroll.

   `sticky` e nao `fixed` de proposito: em sticky o header continua a ocupar
   espaco no fluxo, portanto nao e preciso compensar a altura com padding no
   <main> -- altura essa que varia entre mobile e desktop (o logo e
   max-w-[95px] / md:max-w-[100px]) e que teria de ser mantida a mao.

   O fundo e obrigatorio: o #mainNavbar e transparente, e sem fundo no
   wrapper via-se o conteudo a passar por tras do menu. Nos temas gray-bg /
   yellow-bg o proprio #mainNavbar traz a sua cor e tapa este branco.

   z-index 40 porque as seccoes do front usam ate z-20; o submenu (z-50) e o
   drawer mobile (z-50 / z-[60]) vivem dentro deste stacking context e
   continuam a ordenar-se correctamente entre si.

   A regra tem de ficar no <header> e NAO no .fixed-header: um elemento sticky
   so viaja dentro do bloco do pai, e o pai do .fixed-header e o proprio
   <header>, que tem 102px de altura -- nao havia por onde colar e a barra
   saia do ecra com o scroll na mesma, apesar de o computed style dizer
   `position: sticky`. O <header> e filho directo do <body>, esse sim alto.

   `.full-screen` fica de fora: nesse layout o header sobrepoe-se ao hero com
   fundo transparente e texto branco, e ja e posicionado em absolute. */
body:not(.full-screen) header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 40;
        background-color: #FFFFFF;
    }
/* Gradiente do hero (Figma node 31:1496, "Rectangle 181"): escurece a parte
   de baixo da imagem para o titulo branco ter contraste. No Figma sao 422px
   sobre 890 de hero (~47%), daqui a altura de 50%. As cores sao as do design:
   rgba(0,0,0,.6) em baixo a esvair para rgba(102,102,102,0).

   E incondicional de proposito. O bloco do CMS pode marcar "overlay-darq" ou
   "overlay-white", que renderizam <div class="overlay"> / <div
   class="overlay-white"> -- mas **nenhuma dessas duas classes existe em CSS
   nenhum do front**, portanto sao divs sem estilo e nunca escureceram nada. */
.slider-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    z-index: 10;
    pointer-events: none;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, rgba(102, 102, 102, 0) 100%);
}
/* Botao CTA unico. No Figma todos os CTA da home sao exactamente a mesma
   caixa -- nodes 3:24, 4:80, 4:84, 4:88 ("Saiba mais"), 13:23 ("Ver mais
   projetos") e 18:17 ("mais noticias"), todos 233x49. No codigo havia sete
   variantes de padding e tipografia, uma por componente.

   `min-width` em vez de largura fixa: o Figma fixa 233px porque todas as
   legendas la cabem (a maior, "Ver mais projetos", tem 155px). Com min-width
   uma legenda mais longa -- outra lingua, outro tenant -- cresce em vez de
   rebentar a caixa.

   **Nao define `display` de proposito.** Ha call-sites com `hidden
   xl:inline-flex`, e um `display` aqui competiria com o `.hidden` do Tailwind
   pela mesma especificidade, ficando a visibilidade dependente da ordem do
   ficheiro. Quem chama poe `inline-flex`.

   Fora deste padrao fica so o submit do formulario de contactos, que tem
   especificacao propria no Figma da pagina de contactos (largura total,
   16.8px) -- ver a nota em [[blart-figma]]. */
.btn-cta {
    align-items: center;
    justify-content: center;
    min-width: 233px;
    height: 49px;
    padding-left: 32px;
    padding-right: 32px;
    background-color: #424A3C;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.3px;
    text-align: center;
    text-transform: uppercase;
    /* A borda existe sempre, da cor do fundo -- invisivel em repouso. Sem ela,
       o hover teria de a criar e a caixa saltava 1px (o box-sizing e border-box,
       portanto a borda vive dentro dos 233x49). */
    border: 1px solid #424A3C;
    transition: background-color .25s ease, color .25s ease;
}
/* Hover: inverte para branco com o texto e a borda a verde. */
.btn-cta:hover {
        background-color: #FFFFFF;
        color: #424A3C;
    }
/* A imagem da seccao text-image e 621x624 no Figma (node 3:21), quase
   quadrada; o ficheiro carregado no CMS e paisagem (1113x768). Forca-se o
   racio do design e corta-se pelo centro.
   Classe propria e nao `.secondary-heading .cover img`: o `.secondary-heading`
   tambem embrulha o banner, o banner-new e o form-newsletter, que tambem tem
   `.cover` e nao devem ser cortados.
   O plugin aspectRatio esta desligado no tailwind-front.config.js, por isso
   nao ha utility `aspect-[621/624]` -- tem de ser aqui. */
.text-image-cover img {
    width: 100%;
    aspect-ratio: 621 / 624;
    -o-object-fit: cover;
       object-fit: cover;
}
/* Imagem principal do detalhe de noticia. O Figma (node 30:1185) tem 621x696,
   retrato; os ficheiros do CMS vem em paisagem. Forca-se o racio e corta-se
   pelo centro, como na imagem da seccao text-image da home.
   O plugin aspectRatio esta desligado no tailwind-front.config.js, por isso nao
   ha utility `aspect-[621/696]` -- tem de ser aqui. */
.post-cover img {
    width: 100%;
    aspect-ratio: 621 / 696;
    -o-object-fit: cover;
       object-fit: cover;
}
/* Animação das imagens dos cards (section "o que fazemos") */
.card-media .image-container {
        overflow: hidden;
    }
.card-media .image-container img {
            transition: transform 0.5s ease;
        }
.card-media:hover .image-container img {
        transform: scale(1.08);
    }
/* Zoom no hover (imagens do title-content, ex: "o que fazemos") */
.img-hover-zoom {
    overflow: hidden;
}
.img-hover-zoom img {
        transition: transform 0.5s ease;
        will-change: transform;
    }
.img-hover-zoom:hover img {
        transform: scale(1.08);
    }
/* Fade-in ao entrar no ecra. So opacidade: o utilizador pediu (2026-08-28) que
   as imagens do "o que fazemos" apenas aparecam e facam o zoom no hover, sem
   deslocacao nenhuma. Saiu daqui o translateY(24px) do reveal e a regra do
   .parallax-on, e saiu do custom.js o parallax ligado ao scroll. */
.img-reveal {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.img-reveal.revealed {
        opacity: 1;
    }
/* ! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
::-webkit-backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}
@media (min-width: 835px) {
    .container {
        max-width: 835px;
    }
}
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1124px) {
    .container {
        max-width: 1124px;
    }
}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}
@media (min-width: 1920px) {
    .container {
        max-width: 1920px;
    }
}
/* Gutter por PADDING, nao por max-width com centragem.
       A escada de max-width anterior (640/768/1024) fazia a margem oscilar
       entre 22px e 150px dentro do mesmo breakpoint, e nunca coincidia com o
       header nem com o footer, que usam padding fixo. Escala: 24 / 48 / 120,
       sendo 120px o valor do Figma (desktop 1512px).
       Header e footer usam esta mesma classe. */
.content {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }
@media (min-width: 768px) {
        .content {
            padding-left: 48px;
            padding-right: 48px;
        }
    }
@media (min-width: 1280px) {
        .content {
            /* A moldura do Figma e 1512px: 1272 de conteudo + 2x120 de gutter.
               Ate 1512px de viewport o elemento ocupa tudo e a margem fica nos
               120px; acima disso o conteudo para de esticar e as margens
               crescem. Era 2040 (1800 de conteudo), o que a 1920 dava 1669px de
               linha -- muito mais largo do que o desenho e mau para leitura.
               Reduzido a pedido do utilizador em 2026-08-28. */
            max-width: 1512px;
            padding-left: 120px;
            padding-right: 120px;
        }
    }
/* Um .content dentro de outro nao volta a aplicar o gutter. Sem isto,
       componentes que trazem .content (title-content, title, ...) somam um
       segundo padding quando sao renderizados dentro de uma seccao que ja o
       tem, e o conteudo desalinha do header e do footer. */
.content .content {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.static {
    position: static;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.inset-0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.left-0 {
    left: 0px;
}
.right-0 {
    right: 0px;
}
.top-0 {
    top: 0px;
}
.left-10 {
    left: 2.5rem;
}
.bottom-0 {
    bottom: 0px;
}
.top-5 {
    top: 1.25rem;
}
.left-5 {
    left: 1.25rem;
}
.top-16 {
    top: 4rem;
}
.-bottom-\[11\%\] {
    bottom: -11%;
}
.top-14 {
    top: 3.5rem;
}
.left-\[52px\] {
    left: 52px;
}
.bottom-14 {
    bottom: 3.5rem;
}
.top-full {
    top: 100%;
}
.left-20 {
    left: 5rem;
}
.z-0 {
    z-index: 0;
}
.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-50 {
    z-index: 50;
}
.z-\[60\] {
    z-index: 60;
}
.order-2 {
    order: 2;
}
.order-1 {
    order: 1;
}
.order-3 {
    order: 3;
}
.order-4 {
    order: 4;
}
.col-span-3 {
    grid-column: span 3 / span 3;
}
.col-span-1 {
    grid-column: span 1 / span 1;
}
.col-span-5 {
    grid-column: span 5 / span 5;
}
.col-span-4 {
    grid-column: span 4 / span 4;
}
.col-span-6 {
    grid-column: span 6 / span 6;
}
.col-span-2 {
    grid-column: span 2 / span 2;
}
.col-auto {
    grid-column: auto;
}
.col-span-8 {
    grid-column: span 8 / span 8;
}
.col-start-7 {
    grid-column-start: 7;
}
.float-right {
    float: right;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}
.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}
.mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}
.my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}
.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}
.mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}
.ml-3 {
    margin-left: 0.75rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.ml-2 {
    margin-left: 0.5rem;
}
.-ml-px {
    margin-left: -1px;
}
.mr-2 {
    margin-right: 0.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mb-5 {
    margin-bottom: 1.25rem;
}
.mt-5 {
    margin-top: 1.25rem;
}
.mt-16 {
    margin-top: 4rem;
}
.-mb-px {
    margin-bottom: -1px;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mb-20 {
    margin-bottom: 5rem;
}
.mb-7 {
    margin-bottom: 1.75rem;
}
.ml-1 {
    margin-left: 0.25rem;
}
.ml-4 {
    margin-left: 1rem;
}
.mt-8 {
    margin-top: 2rem;
}
.ml-12 {
    margin-left: 3rem;
}
.-mt-px {
    margin-top: -1px;
}
.mr-auto {
    margin-right: auto;
}
.mr-3 {
    margin-right: 0.75rem;
}
.-mt-5 {
    margin-top: -1.25rem;
}
.mt-auto {
    margin-top: auto;
}
.mb-0 {
    margin-bottom: 0px;
}
.mt-0 {
    margin-top: 0px;
}
.ml-auto {
    margin-left: auto;
}
.mr-0 {
    margin-right: 0px;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mt-20 {
    margin-top: 5rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mr-1 {
    margin-right: 0.25rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-\[5px\] {
    margin-bottom: 5px;
}
.mt-\[54px\] {
    margin-top: 54px;
}
.mt-14 {
    margin-top: 3.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mt-\[30px\] {
    margin-top: 30px;
}
.mt-\[84px\] {
    margin-top: 84px;
}
.mt-\[49px\] {
    margin-top: 49px;
}
.mb-14 {
    margin-bottom: 3.5rem;
}
.mb-\[30px\] {
    margin-bottom: 30px;
}
.mr-5 {
    margin-right: 1.25rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mb-11 {
    margin-bottom: 2.75rem;
}
.mb-\[50px\] {
    margin-bottom: 50px;
}
.mb-44 {
    margin-bottom: 11rem;
}
.mb-120 {
    margin-bottom: 120px;
}
.mr-10 {
    margin-right: 2.5rem;
}
.-mr-2 {
    margin-right: -0.5rem;
}
.ml-5 {
    margin-left: 1.25rem;
}
.mr-8 {
    margin-right: 2rem;
}
.-mb-10 {
    margin-bottom: -2.5rem;
}
.mb-24 {
    margin-bottom: 6rem;
}
.mb-\[22px\] {
    margin-bottom: 22px;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-\[120px\] {
    margin-top: 120px;
}
.ml-10 {
    margin-left: 2.5rem;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.inline {
    display: inline;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.grid {
    display: grid;
}
.hidden {
    display: none;
}
.\!hidden {
    display: none !important;
}
.h-5 {
    height: 1.25rem;
}
.h-400 {
    height: 400px;
}
.h-full {
    height: 100%;
}
.h-auto {
    height: auto;
}
.h-250 {
    height: 250px;
}
.h-8 {
    height: 2rem;
}
.h-16 {
    height: 4rem;
}
.h-11 {
    height: 2.75rem;
}
.h-7 {
    height: 1.75rem;
}
.h-450 {
    height: 450px;
}
.h-\[400px\] {
    height: 400px;
}
.h-12 {
    height: 3rem;
}
.h-\[200px\] {
    height: 200px;
}
.h-\[300px\] {
    height: 300px;
}
.h-\[32px\] {
    height: 32px;
}
.h-4 {
    height: 1rem;
}
.h-600 {
    height: 600px;
}
.h-\[540px\] {
    height: 540px;
}
.h-\[420px\] {
    height: 420px;
}
.h-\[280px\] {
    height: 280px;
}
.h-36 {
    height: 9rem;
}
.h-5\/6 {
    height: 83.333333%;
}
.h-96 {
    height: 24rem;
}
.h-width {
    height: 100vw;
}
.h-10 {
    height: 2.5rem;
}
.h-60 {
    height: 15rem;
}
.h-3 {
    height: 0.75rem;
}
.h-20 {
    height: 5rem;
}
.h-\[220px\] {
    height: 220px;
}
.max-h-32 {
    max-height: 8rem;
}
.max-h-500 {
    max-height: 500px;
}
.min-h-600 {
    min-height: 600px;
}
.min-h-screen {
    min-height: 100vh;
}
.min-h-80 {
    min-height: 320px;
}
.min-h-\[550px\] {
    min-height: 550px;
}
.w-5 {
    width: 1.25rem;
}
.w-full {
    width: 100%;
}
.w-auto {
    width: auto;
}
.w-32 {
    width: 8rem;
}
.w-40 {
    width: 10rem;
}
.w-8 {
    width: 2rem;
}
.w-\[32px\] {
    width: 32px;
}
.w-1\/2 {
    width: 50%;
}
.w-4 {
    width: 1rem;
}
.w-\[80\%\] {
    width: 80%;
}
.w-60 {
    width: 15rem;
}
.w-3\/12 {
    width: 25%;
}
.w-5\/12 {
    width: 41.666667%;
}
.w-24 {
    width: 6rem;
}
.w-screen {
    width: 100vw;
}
.w-11 {
    width: 2.75rem;
}
.w-52 {
    width: 13rem;
}
.w-12 {
    width: 3rem;
}
.w-7\/12 {
    width: 58.333333%;
}
.w-16 {
    width: 4rem;
}
.w-4\/5 {
    width: 80%;
}
.w-28 {
    width: 7rem;
}
.min-w-\[220px\] {
    min-width: 220px;
}
.min-w-\[180px\] {
    min-width: 180px;
}
.max-w-xl {
    max-width: 36rem;
}
.max-w-6xl {
    max-width: 72rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-\[723px\] {
    max-width: 723px;
}
.max-w-\[500px\] {
    max-width: 500px;
}
.max-w-\[30px\] {
    max-width: 30px;
}
.max-w-5xl {
    max-width: 64rem;
}
.max-w-800 {
    max-width: 800px;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-\[95px\] {
    max-width: 95px;
}
.max-w-\[120px\] {
    max-width: 120px;
}
.max-w-\[300px\] {
    max-width: 300px;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-none {
    flex: none;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.shrink-0 {
    flex-shrink: 0;
}
.grow {
    flex-grow: 1;
}
.translate-x-full {
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-default {
    cursor: default;
}
.cursor-not-allowed {
    cursor: not-allowed;
}
.cursor-pointer {
    cursor: pointer;
}
.select-none {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.resize {
    resize: both;
}
.grid-flow-col {
    grid-auto-flow: column;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.flex-col {
    flex-direction: column;
}
.flex-col-reverse {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.place-content-center {
    place-content: center;
}
.place-content-end {
    place-content: end;
}
.place-content-between {
    place-content: space-between;
}
.content-center {
    align-content: center;
}
.content-end {
    align-content: flex-end;
}
.content-between {
    align-content: space-between;
}
.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}
.items-center {
    align-items: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-items-start {
    justify-items: start;
}
.justify-items-end {
    justify-items: end;
}
.justify-items-center {
    justify-items: center;
}
.gap-4 {
    gap: 1rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-12 {
    gap: 3rem;
}
.gap-\[30px\] {
    gap: 30px;
}
.gap-20 {
    gap: 5rem;
}
.gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
}
.gap-y-5 {
    row-gap: 1.25rem;
}
.gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
}
.gap-y-4 {
    row-gap: 1rem;
}
.gap-x-4 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
}
.space-x-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-10 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.divide-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
}
.self-start {
    align-self: flex-start;
}
.overflow-auto {
    overflow: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-y-auto {
    overflow-y: auto;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.rounded-md {
    border-radius: 0.375rem;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded {
    border-radius: 0.25rem;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-none {
    border-radius: 0px;
}
.rounded-l-md {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}
.rounded-r-md {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}
.rounded-t {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.rounded-l-full {
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
}
.rounded-r-full {
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}
.rounded-t-md {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.border {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-t {
    border-top-width: 1px;
}
.border-r {
    border-right-width: 1px;
}
.border-b {
    border-bottom-width: 1px;
}
.border-b-2 {
    border-bottom-width: 2px;
}
.border-l {
    border-left-width: 1px;
}
.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity));
}
.border-primary {
    --tw-border-opacity: 1;
    border-color: rgb(66 74 60 / var(--tw-border-opacity));
}
.border-button {
    --tw-border-opacity: 1;
    border-color: rgb(66 74 60 / var(--tw-border-opacity));
}
.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-black\/10 {
    border-color: rgb(0 0 0 / 0.1);
}
.border-gray {
    --tw-border-opacity: 1;
    border-color: rgb(230 230 230 / var(--tw-border-opacity));
}
.border-black\/20 {
    border-color: rgb(0 0 0 / 0.2);
}
.border-black\/60 {
    border-color: rgb(0 0 0 / 0.6);
}
.bg-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(66 74 60 / var(--tw-bg-opacity));
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-background {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-soft-gray {
    --tw-bg-opacity: 1;
    background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.bg-gray {
    --tw-bg-opacity: 1;
    background-color: rgb(230 230 230 / var(--tw-bg-opacity));
}
.bg-button {
    --tw-bg-opacity: 1;
    background-color: rgb(66 74 60 / var(--tw-bg-opacity));
}
.bg-transparent {
    background-color: transparent;
}
.bg-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.bg-backFooter {
    --tw-bg-opacity: 1;
    background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.bg-blue {
    --tw-bg-opacity: 1;
    background-color: rgb(0 105 167 / var(--tw-bg-opacity));
}
.bg-cover {
    background-size: cover;
}
.bg-contain {
    background-size: contain;
}
.bg-center {
    background-position: center;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}
.stroke-1 {
    stroke-width: 1;
}
.object-contain {
    -o-object-fit: contain;
       object-fit: contain;
}
.object-cover {
    -o-object-fit: cover;
       object-fit: cover;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-10 {
    padding: 2.5rem;
}
.p-14 {
    padding: 3.5rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-8 {
    padding: 2rem;
}
.p-4 {
    padding: 1rem;
}
.p-7 {
    padding: 1.75rem;
}
.py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-0 {
    padding-left: 0px;
    padding-right: 0px;
}
.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-\[19px\] {
    padding-top: 19px;
    padding-bottom: 19px;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-\[32px\] {
    padding-top: 32px;
    padding-bottom: 32px;
}
.pt-10 {
    padding-top: 2.5rem;
}
.pt-2 {
    padding-top: 0.5rem;
}
.pb-10 {
    padding-bottom: 2.5rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.pb-3 {
    padding-bottom: 0.75rem;
}
.pt-5 {
    padding-top: 1.25rem;
}
.pb-5 {
    padding-bottom: 1.25rem;
}
.pt-8 {
    padding-top: 2rem;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pt-3 {
    padding-top: 0.75rem;
}
.pb-0 {
    padding-bottom: 0px;
}
.pr-3 {
    padding-right: 0.75rem;
}
.pr-10 {
    padding-right: 2.5rem;
}
.pl-3 {
    padding-left: 0.75rem;
}
.pr-2 {
    padding-right: 0.5rem;
}
.pb-16 {
    padding-bottom: 4rem;
}
.pl-2 {
    padding-left: 0.5rem;
}
.pt-20 {
    padding-top: 5rem;
}
.pt-120 {
    padding-top: 120px;
}
.pt-16 {
    padding-top: 4rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.pl-4 {
    padding-left: 1rem;
}
.pl-5 {
    padding-left: 1.25rem;
}
.pl-8 {
    padding-left: 2rem;
}
.pr-1 {
    padding-right: 0.25rem;
}
.pt-4 {
    padding-top: 1rem;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.align-baseline {
    vertical-align: baseline;
}
.\!font-inter {
    font-family: Inter, sans-serif !important;
}
.font-clash {
    font-family: ClashDisplay, sans-serif;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-\[20px\] {
    font-size: 20px;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.\!text-\[17px\] {
    font-size: 17px !important;
}
.text-\[17px\] {
    font-size: 17px;
}
.\!text-\[15px\] {
    font-size: 15px !important;
}
.text-\[14\.7px\] {
    font-size: 14.7px;
}
.text-\[28px\] {
    font-size: 28px;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-\[15px\] {
    font-size: 15px;
}
.text-\[13px\] {
    font-size: 13px;
}
.text-\[30px\] {
    font-size: 30px;
}
.text-\[40px\] {
    font-size: 40px;
}
.text-\[19px\] {
    font-size: 19px;
}
.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-bold {
    font-weight: 700;
}
.uppercase {
    text-transform: uppercase;
}
.leading-5 {
    line-height: 1.25rem;
}
.leading-7 {
    line-height: 1.75rem;
}
.\!leading-\[normal\] {
    line-height: normal !important;
}
.leading-\[normal\] {
    line-height: normal;
}
.\!leading-\[25px\] {
    line-height: 25px !important;
}
.leading-\[1\.15\] {
    line-height: 1.15;
}
.leading-\[1\.25\] {
    line-height: 1.25;
}
.leading-\[25px\] {
    line-height: 25px;
}
.leading-\[1\.6\] {
    line-height: 1.6;
}
.leading-\[1\.4\] {
    line-height: 1.4;
}
.leading-\[1\.1\] {
    line-height: 1.1;
}
.leading-\[1\.2\] {
    line-height: 1.2;
}
.leading-none {
    line-height: 1;
}
.leading-\[31\.5px\] {
    line-height: 31.5px;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-\[-0\.03em\] {
    letter-spacing: -0.03em;
}
.tracking-\[1\.3px\] {
    letter-spacing: 1.3px;
}
.text-primary {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-secondary {
    --tw-text-opacity: 1;
    color: rgb(240 240 240 / var(--tw-text-opacity));
}
.text-black-soft {
    color: #00000099;
}
.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-black\/60 {
    color: rgb(0 0 0 / 0.6);
}
.text-\[\#3E3E3E\] {
    --tw-text-opacity: 1;
    color: rgb(62 62 62 / var(--tw-text-opacity));
}
.text-\[\#181818\] {
    --tw-text-opacity: 1;
    color: rgb(24 24 24 / var(--tw-text-opacity));
}
.text-terciary {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-gray {
    --tw-text-opacity: 1;
    color: rgb(230 230 230 / var(--tw-text-opacity));
}
.text-button {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.text-smoth-gray {
    --tw-text-opacity: 1;
    color: rgb(132 132 132 / var(--tw-text-opacity));
}
.text-blue {
    --tw-text-opacity: 1;
    color: rgb(0 105 167 / var(--tw-text-opacity));
}
.underline {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
}
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.placeholder-slate-400::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(148 163 184 / var(--tw-placeholder-opacity));
}
.placeholder-slate-400:-ms-input-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(148 163 184 / var(--tw-placeholder-opacity));
}
.placeholder-slate-400::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(148 163 184 / var(--tw-placeholder-opacity));
}
.opacity-30 {
    opacity: 0.3;
}
.opacity-100 {
    opacity: 1;
}
.opacity-60 {
    opacity: 0.6;
}
.opacity-20 {
    opacity: 0.2;
}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-150 {
    transition-duration: 150ms;
}
.duration-300 {
    transition-duration: 300ms;
}
.duration-200 {
    transition-duration: 200ms;
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.placeholder\:text-sm::-moz-placeholder {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.placeholder\:text-sm:-ms-input-placeholder {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.placeholder\:text-sm::placeholder {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.placeholder\:text-xl::-moz-placeholder {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.placeholder\:text-xl:-ms-input-placeholder {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.placeholder\:text-xl::placeholder {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.placeholder\:text-white::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.placeholder\:text-white:-ms-input-placeholder {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.placeholder\:text-white::placeholder {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.placeholder\:text-primary::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.placeholder\:text-primary:-ms-input-placeholder {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.placeholder\:text-primary::placeholder {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.hover\:border:hover {
    border-width: 1px;
}
.hover\:border-primary:hover {
    --tw-border-opacity: 1;
    border-color: rgb(66 74 60 / var(--tw-border-opacity));
}
.hover\:bg-black:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.hover\:bg-primary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(66 74 60 / var(--tw-bg-opacity));
}
.hover\:bg-red-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity));
}
.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.hover\:bg-secondary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(240 240 240 / var(--tw-bg-opacity));
}
.hover\:bg-button\/50:hover {
    background-color: rgb(66 74 60 / 0.5);
}
.hover\:text-primary:hover {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:text-button:hover {
    --tw-text-opacity: 1;
    color: rgb(66 74 60 / var(--tw-text-opacity));
}
.hover\:opacity-60:hover {
    opacity: 0.6;
}
.hover\:opacity-100:hover {
    opacity: 1;
}
.focus\:z-10:focus {
    z-index: 10;
}
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.group:focus-within .group-focus-within\:flex {
    display: flex;
}
.group:hover .group-hover\:block {
    display: block;
}
.group:hover .group-hover\:flex {
    display: flex;
}
.peer:checked ~ .peer-checked\:flex {
    display: flex;
}
.peer:checked ~ .peer-checked\:translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (prefers-contrast: more) {
    .contrast-more\:border-slate-400 {
        --tw-border-opacity: 1;
        border-color: rgb(148 163 184 / var(--tw-border-opacity));
    }
    .contrast-more\:placeholder-slate-500::-moz-placeholder {
        --tw-placeholder-opacity: 1;
        color: rgb(100 116 139 / var(--tw-placeholder-opacity));
    }
    .contrast-more\:placeholder-slate-500:-ms-input-placeholder {
        --tw-placeholder-opacity: 1;
        color: rgb(100 116 139 / var(--tw-placeholder-opacity));
    }
    .contrast-more\:placeholder-slate-500::placeholder {
        --tw-placeholder-opacity: 1;
        color: rgb(100 116 139 / var(--tw-placeholder-opacity));
    }
}
@media (min-width: 640px) {
    .sm\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .sm\:col-span-3 {
        grid-column: span 3 / span 3;
    }
    .sm\:my-10 {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .sm\:my-14 {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
    .sm\:my-20 {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    .sm\:mt-0 {
        margin-top: 0px;
    }
    .sm\:mt-10 {
        margin-top: 2.5rem;
    }
    .sm\:mt-12 {
        margin-top: 3rem;
    }
    .sm\:mb-11 {
        margin-bottom: 2.75rem;
    }
    .sm\:flex {
        display: flex;
    }
    .sm\:inline-flex {
        display: inline-flex;
    }
    .sm\:hidden {
        display: none;
    }
    .sm\:h-\[120px\] {
        height: 120px;
    }
    .sm\:w-2\/3 {
        width: 66.666667%;
    }
    .sm\:w-28 {
        width: 7rem;
    }
    .sm\:max-w-800 {
        max-width: 800px;
    }
    .sm\:flex-1 {
        flex: 1 1 0%;
    }
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sm\:flex-row {
        flex-direction: row;
    }
    .sm\:items-center {
        align-items: center;
    }
    .sm\:items-baseline {
        align-items: baseline;
    }
    .sm\:justify-start {
        justify-content: flex-start;
    }
    .sm\:justify-center {
        justify-content: center;
    }
    .sm\:justify-between {
        justify-content: space-between;
    }
    .sm\:gap-8 {
        gap: 2rem;
    }
    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse));
    }
    .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0.75rem * var(--tw-space-x-reverse));
        margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.25rem * var(--tw-space-x-reverse));
        margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .sm\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .sm\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .sm\:pt-20 {
        padding-top: 5rem;
    }
    .sm\:pl-6 {
        padding-left: 1.5rem;
    }
    .sm\:pt-0 {
        padding-top: 0px;
    }
    .sm\:pt-10 {
        padding-top: 2.5rem;
    }
    .sm\:pb-10 {
        padding-bottom: 2.5rem;
    }
    .sm\:text-left {
        text-align: left;
    }
    .sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .sm\:font-normal {
        font-weight: 400;
    }
}
@media (min-width: 768px) {
    .md\:absolute {
        position: absolute;
    }
    .md\:bottom-\[-55px\] {
        bottom: -55px;
    }
    .md\:bottom-0 {
        bottom: 0px;
    }
    .md\:-top-\[10px\] {
        top: -10px;
    }
    .md\:top-0 {
        top: 0px;
    }
    .md\:order-2 {
        order: 2;
    }
    .md\:order-1 {
        order: 1;
    }
    .md\:col-span-1 {
        grid-column: span 1 / span 1;
    }
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .md\:my-5 {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .md\:mx-0 {
        margin-left: 0px;
        margin-right: 0px;
    }
    .md\:mt-4 {
        margin-top: 1rem;
    }
    .md\:mt-8 {
        margin-top: 2rem;
    }
    .md\:mb-14 {
        margin-bottom: 3.5rem;
    }
    .md\:mt-\[25px\] {
        margin-top: 25px;
    }
    .md\:mt-10 {
        margin-top: 2.5rem;
    }
    .md\:mt-3 {
        margin-top: 0.75rem;
    }
    .md\:mt-\[19px\] {
        margin-top: 19px;
    }
    .md\:ml-5 {
        margin-left: 1.25rem;
    }
    .md\:mb-0 {
        margin-bottom: 0px;
    }
    .md\:mt-12 {
        margin-top: 3rem;
    }
    .md\:mt-16 {
        margin-top: 4rem;
    }
    .md\:mt-\[100px\] {
        margin-top: 100px;
    }
    .md\:mt-20 {
        margin-top: 5rem;
    }
    .md\:mb-20 {
        margin-bottom: 5rem;
    }
    .md\:mb-4 {
        margin-bottom: 1rem;
    }
    .md\:mr-auto {
        margin-right: auto;
    }
    .md\:ml-0 {
        margin-left: 0px;
    }
    .md\:mr-0 {
        margin-right: 0px;
    }
    .md\:ml-auto {
        margin-left: auto;
    }
    .md\:mt-2 {
        margin-top: 0.5rem;
    }
    .md\:mt-0 {
        margin-top: 0px;
    }
    .md\:mt-5 {
        margin-top: 1.25rem;
    }
    .md\:mt-\[200px\] {
        margin-top: 200px;
    }
    .md\:block {
        display: block;
    }
    .md\:\!block {
        display: block !important;
    }
    .md\:flex {
        display: flex;
    }
    .md\:grid {
        display: grid;
    }
    .md\:hidden {
        display: none;
    }
    .md\:h-auto {
        height: auto;
    }
    .md\:h-\[453px\] {
        height: 453px;
    }
    .md\:h-full {
        height: 100%;
    }
    .md\:h-\[220px\] {
        height: 220px;
    }
    .md\:h-\[470px\] {
        height: 470px;
    }
    .md\:h-\[49px\] {
        height: 49px;
    }
    .md\:h-\[550px\] {
        height: 550px;
    }
    .md\:h-\[420px\] {
        height: 420px;
    }
    .md\:h-\[500px\] {
        height: 500px;
    }
    .md\:h-400 {
        height: 400px;
    }
    .md\:max-h-\[600px\] {
        max-height: 600px;
    }
    .md\:min-h-\[180px\] {
        min-height: 180px;
    }
    .md\:w-full {
        width: 100%;
    }
    .md\:w-auto {
        width: auto;
    }
    .md\:w-\[49px\] {
        width: 49px;
    }
    .md\:w-\[400px\] {
        width: 400px;
    }
    .md\:w-\[220px\] {
        width: 220px;
    }
    .md\:max-w-\[513px\] {
        max-width: 513px;
    }
    .md\:max-w-\[540px\] {
        max-width: 540px;
    }
    .md\:max-w-\[100px\] {
        max-width: 100px;
    }
    .md\:max-w-800 {
        max-width: 800px;
    }
    .md\:flex-1 {
        flex: 1 1 0%;
    }
    .md\:flex-auto {
        flex: 1 1 auto;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
    .md\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .md\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .md\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:flex-wrap {
        flex-wrap: wrap;
    }
    .md\:place-content-between {
        place-content: space-between;
    }
    .md\:items-center {
        align-items: center;
    }
    .md\:justify-center {
        justify-content: center;
    }
    .md\:justify-between {
        justify-content: space-between;
    }
    .md\:justify-around {
        justify-content: space-around;
    }
    .md\:gap-12 {
        gap: 3rem;
    }
    .md\:gap-\[21px\] {
        gap: 21px;
    }
    .md\:gap-10 {
        gap: 2.5rem;
    }
    .md\:gap-\[30px\] {
        gap: 30px;
    }
    .md\:gap-8 {
        gap: 2rem;
    }
    .md\:gap-0 {
        gap: 0px;
    }
    .md\:gap-y-12 {
        row-gap: 3rem;
    }
    .md\:gap-x-12 {
        -moz-column-gap: 3rem;
             column-gap: 3rem;
    }
    .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .md\:p-10 {
        padding: 2.5rem;
    }
    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .md\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .md\:py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .md\:py-\[120px\] {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .md\:pb-10 {
        padding-bottom: 2.5rem;
    }
    .md\:pr-\[80px\] {
        padding-right: 80px;
    }
    .md\:pt-20 {
        padding-top: 5rem;
    }
    .md\:pr-10 {
        padding-right: 2.5rem;
    }
    .md\:text-left {
        text-align: left;
    }
    .md\:text-center {
        text-align: center;
    }
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .md\:text-\[22px\] {
        font-size: 22px;
    }
    .md\:text-\[34px\] {
        font-size: 34px;
    }
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-\[42px\] {
        font-size: 42px;
    }
    .md\:text-\[17px\] {
        font-size: 17px;
    }
    .md\:text-\[44px\] {
        font-size: 44px;
    }
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:text-\[40px\] {
        font-size: 40px;
    }
    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .lg\:container {
        width: 100%;
    }
    @media (min-width: 640px) {
        .lg\:container {
            max-width: 640px;
        }
    }
    @media (min-width: 768px) {
        .lg\:container {
            max-width: 768px;
        }
    }
    @media (min-width: 835px) {
        .lg\:container {
            max-width: 835px;
        }
    }
    @media (min-width: 1024px) {
        .lg\:container {
            max-width: 1024px;
        }
    }
    @media (min-width: 1124px) {
        .lg\:container {
            max-width: 1124px;
        }
    }
    @media (min-width: 1280px) {
        .lg\:container {
            max-width: 1280px;
        }
    }
    @media (min-width: 1600px) {
        .lg\:container {
            max-width: 1600px;
        }
    }
    @media (min-width: 1920px) {
        .lg\:container {
            max-width: 1920px;
        }
    }
    .lg\:order-2 {
        order: 2;
    }
    .lg\:order-1 {
        order: 1;
    }
    .lg\:order-3 {
        order: 3;
    }
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }
    .lg\:mx-0 {
        margin-left: 0px;
        margin-right: 0px;
    }
    .lg\:my-0 {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .lg\:mt-8 {
        margin-top: 2rem;
    }
    .lg\:mt-0 {
        margin-top: 0px;
    }
    .lg\:mt-5 {
        margin-top: 1.25rem;
    }
    .lg\:mt-10 {
        margin-top: 2.5rem;
    }
    .lg\:mb-150 {
        margin-bottom: 150px;
    }
    .lg\:mt-28 {
        margin-top: 7rem;
    }
    .lg\:mr-20 {
        margin-right: 5rem;
    }
    .lg\:block {
        display: block;
    }
    .lg\:flex {
        display: flex;
    }
    .lg\:grid {
        display: grid;
    }
    .lg\:hidden {
        display: none;
    }
    .lg\:h-500 {
        height: 500px;
    }
    .lg\:w-1\/2 {
        width: 50%;
    }
    .lg\:min-w-\[135px\] {
        min-width: 135px;
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:grid-rows-4 {
        grid-template-rows: repeat(4, minmax(0, 1fr));
    }
    .lg\:justify-start {
        justify-content: flex-start;
    }
    .lg\:gap-20 {
        gap: 5rem;
    }
    .lg\:gap-0 {
        gap: 0px;
    }
    .lg\:gap-y-5 {
        row-gap: 1.25rem;
    }
    .lg\:gap-x-10 {
        -moz-column-gap: 2.5rem;
             column-gap: 2.5rem;
    }
    .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.25rem * var(--tw-space-x-reverse));
        margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
    }
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lg\:py-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    .lg\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .lg\:px-\[22px\] {
        padding-left: 22px;
        padding-right: 22px;
    }
    .lg\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .lg\:pr-\[160px\] {
        padding-right: 160px;
    }
    .lg\:pt-0 {
        padding-top: 0px;
    }
    .lg\:pt-138 {
        padding-top: 138px;
    }
    .lg\:pb-10 {
        padding-bottom: 2.5rem;
    }
    .lg\:text-left {
        text-align: left;
    }
    .lg\:text-center {
        text-align: center;
    }
    .lg\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .lg\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .lg\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .lg\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .lg\:font-semibold {
        font-weight: 600;
    }
}
@media (min-width: 1280px) {
    .xl\:container {
        width: 100%;
    }
    @media (min-width: 640px) {
        .xl\:container {
            max-width: 640px;
        }
    }
    @media (min-width: 768px) {
        .xl\:container {
            max-width: 768px;
        }
    }
    @media (min-width: 835px) {
        .xl\:container {
            max-width: 835px;
        }
    }
    @media (min-width: 1024px) {
        .xl\:container {
            max-width: 1024px;
        }
    }
    @media (min-width: 1124px) {
        .xl\:container {
            max-width: 1124px;
        }
    }
    @media (min-width: 1280px) {
        .xl\:container {
            max-width: 1280px;
        }
    }
    @media (min-width: 1600px) {
        .xl\:container {
            max-width: 1600px;
        }
    }
    @media (min-width: 1920px) {
        .xl\:container {
            max-width: 1920px;
        }
    }
    .xl\:order-none {
        order: 0;
    }
    .xl\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .xl\:col-span-5 {
        grid-column: span 5 / span 5;
    }
    .xl\:col-span-7 {
        grid-column: span 7 / span 7;
    }
    .xl\:col-span-3 {
        grid-column: span 3 / span 3;
    }
    .xl\:col-start-6 {
        grid-column-start: 6;
    }
    .xl\:col-start-1 {
        grid-column-start: 1;
    }
    .xl\:col-start-3 {
        grid-column-start: 3;
    }
    .xl\:col-start-2 {
        grid-column-start: 2;
    }
    .xl\:row-span-1 {
        grid-row: span 1 / span 1;
    }
    .xl\:row-start-1 {
        grid-row-start: 1;
    }
    .xl\:row-end-3 {
        grid-row-end: 3;
    }
    .xl\:row-end-4 {
        grid-row-end: 4;
    }
    .xl\:my-5 {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .xl\:my-20 {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    .xl\:mt-\[24px\] {
        margin-top: 24px;
    }
    .xl\:mt-\[97px\] {
        margin-top: 97px;
    }
    .xl\:mt-\[50px\] {
        margin-top: 50px;
    }
    .xl\:mt-24 {
        margin-top: 6rem;
    }
    .xl\:mt-\[120px\] {
        margin-top: 120px;
    }
    .xl\:mb-\[120px\] {
        margin-bottom: 120px;
    }
    .xl\:mt-12 {
        margin-top: 3rem;
    }
    .xl\:mt-\[49px\] {
        margin-top: 49px;
    }
    .xl\:mb-8 {
        margin-bottom: 2rem;
    }
    .xl\:mt-\[150px\] {
        margin-top: 150px;
    }
    .xl\:mr-5 {
        margin-right: 1.25rem;
    }
    .xl\:mt-0 {
        margin-top: 0px;
    }
    .xl\:mt-10 {
        margin-top: 2.5rem;
    }
    .xl\:mt-20 {
        margin-top: 5rem;
    }
    .xl\:block {
        display: block;
    }
    .xl\:inline {
        display: inline;
    }
    .xl\:inline-flex {
        display: inline-flex;
    }
    .xl\:grid {
        display: grid;
    }
    .xl\:hidden {
        display: none;
    }
    .xl\:h-auto {
        height: auto;
    }
    .xl\:h-\[190px\] {
        height: 190px;
    }
    .xl\:h-\[575px\] {
        height: 575px;
    }
    .xl\:h-\[642px\] {
        height: 642px;
    }
    .xl\:h-\[817px\] {
        height: 817px;
    }
    .xl\:h-\[453px\] {
        height: 453px;
    }
    .xl\:h-600 {
        height: 600px;
    }
    .xl\:h-\[220px\] {
        height: 220px;
    }
    .xl\:max-h-\[642px\] {
        max-height: 642px;
    }
    .xl\:w-full {
        width: 100%;
    }
    .xl\:w-\[513px\] {
        width: 513px;
    }
    .xl\:w-\[504px\] {
        width: 504px;
    }
    .xl\:w-\[40\.33\%\] {
        width: 40.33%;
    }
    .xl\:w-20 {
        width: 5rem;
    }
    .xl\:w-36 {
        width: 9rem;
    }
    .xl\:max-w-\[504px\] {
        max-width: 504px;
    }
    .xl\:max-w-\[513px\] {
        max-width: 513px;
    }
    .xl\:max-w-\[286px\] {
        max-width: 286px;
    }
    .xl\:shrink-0 {
        flex-shrink: 0;
    }
    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .xl\:grid-cols-\[1fr_auto_auto\] {
        grid-template-columns: 1fr auto auto;
    }
    .xl\:grid-cols-\[auto_auto_1fr\] {
        grid-template-columns: auto auto 1fr;
    }
    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .xl\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .xl\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .xl\:grid-rows-\[auto_auto_auto\] {
        grid-template-rows: auto auto auto;
    }
    .xl\:gap-20 {
        gap: 5rem;
    }
    .xl\:gap-\[132px\] {
        gap: 132px;
    }
    .xl\:gap-\[137px\] {
        gap: 137px;
    }
    .xl\:gap-\[30px\] {
        gap: 30px;
    }
    .xl\:gap-0 {
        gap: 0px;
    }
    .xl\:gap-10 {
        gap: 2.5rem;
    }
    .xl\:gap-x-\[10\.85\%\] {
        -moz-column-gap: 10.85%;
             column-gap: 10.85%;
    }
    .xl\:rounded-md {
        border-radius: 0.375rem;
    }
    .xl\:p-20 {
        padding: 5rem;
    }
    .xl\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .xl\:py-\[120px\] {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .xl\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .xl\:pb-20 {
        padding-bottom: 5rem;
    }
    .xl\:pb-0 {
        padding-bottom: 0px;
    }
    .xl\:pr-\[304px\] {
        padding-right: 304px;
    }
    .xl\:pr-\[120px\] {
        padding-right: 120px;
    }
    .xl\:pl-\[120px\] {
        padding-left: 120px;
    }
    .xl\:pt-\[206px\] {
        padding-top: 206px;
    }
    .xl\:pb-\[151px\] {
        padding-bottom: 151px;
    }
    .xl\:pt-\[150px\] {
        padding-top: 150px;
    }
    .xl\:pb-\[30px\] {
        padding-bottom: 30px;
    }
    .xl\:pt-20 {
        padding-top: 5rem;
    }
    .xl\:pt-10 {
        padding-top: 2.5rem;
    }
    .xl\:pb-10 {
        padding-bottom: 2.5rem;
    }
    .xl\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .xl\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
    .xl\:text-\[25px\] {
        font-size: 25px;
    }
    .xl\:\!text-\[17px\] {
        font-size: 17px !important;
    }
    .xl\:text-\[42px\] {
        font-size: 42px;
    }
    .xl\:text-\[40px\] {
        font-size: 40px;
    }
    .xl\:text-\[50px\] {
        font-size: 50px;
    }
    .xl\:text-\[55px\] {
        font-size: 55px;
    }
    .xl\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .xl\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .xl\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .xl\:leading-\[1\.2\] {
        line-height: 1.2;
    }
}
@media (min-width: 1600px) {
    .\32xl\:h-800 {
        height: 800px;
    }
    .\32xl\:w-32 {
        width: 8rem;
    }
    .\32xl\:w-28 {
        width: 7rem;
    }
    .\32xl\:w-44 {
        width: 11rem;
    }
    .\32xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .\32xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .\32xl\:p-16 {
        padding: 4rem;
    }
    .\32xl\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}
@media (min-width: 1920px) {
    .\33xl\:max-w-screen-2xl {
        max-width: 1600px;
    }
    .\33xl\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .\33xl\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
}

