
body {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}

.text-fonktown {
    padding-top: 1rem;
    text-align: center;
    background-color: var(--color-white-primary);
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
}

.fonktown-marquee {
    overflow: hidden;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    /* border-block: 1px solid rgba(0, 0, 0, 0.08); */
    /* padding-block: clamp(0.5rem, 1.5vw, 0.85rem); */
    /* margin-bottom: clamp(1rem, 3vw, 1.5rem); */
    background-color: var(--color-white-primary);
}

.fonktown-marquee__track {
    display: flex;
    width: max-content;
    animation: fonktown-marquee-scroll 25s linear infinite;
}

.fonktown-marquee__segment {
    flex-shrink: 0;
    /* padding-inline: 2rem; */
    padding-left: 1rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    /* line-height: 1.05; */
    white-space: nowrap;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--color-black-primary);
}

@keyframes fonktown-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fonktown-marquee__track {
        animation: none;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-inline: auto;
    }

    .fonktown-marquee__segment[aria-hidden="true"] {
        display: none;
    }

    .fonktown-marquee__segment {
        white-space: normal;
        text-align: center;
    }
}

/* Typing effect (desactivado; descomentar junto al HTML y fonktown-text.js)
.fonktown-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white-primary);
    padding-inline: 1rem;
}

.fonktown-heading--typed {
    margin-top: 0;
}

#dynamic-text {
    transition: all 0.2s ease;
    color: var(--color-turquoise);
}

.text-fonktown .cursor {
    display: inline-block;
    margin-left: 0.05em;
    color: var(--color-turquoise);
    animation: fonktown-cursor-blink 0.9s step-end infinite;
}

@keyframes fonktown-cursor-blink {
    50% {
        opacity: 0;
    }
}
*/

.content-about{
    color: var(--color-white-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-section{
    min-height: calc(100dvh - var(--size-navbar));
}

.img-banner{
    max-height: calc(100dvh - var(--size-footer));
}

.content-title h2 {
    /* font-family: "Raleway", sans-serif; */
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1.75px #fefaf0;
    font-size: clamp(2.5rem, 5vw, 4.1rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}


.content-title p{
    opacity: 0;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.filter-video {
    position: absolute;
    z-index: 10;
    background-color: rgba(0, 0, 0, 88%);
    width: 100%;
    height: 100%;
}

.separador {
    height: 300px;
    width: 100%;
}

.title-descripcion{
    font-size: 33px;
    line-height: 1.6;
}

/* EFECTS */

/* ----------------------------------------------
  Generated by AnimatiSS
  Licensed under FreeBSD License
  URL: https://xsgames.co/animatiss
  Twitter: @xsgames_
---------------------------------------------- */

.tracking-in-expand {
    opacity: 1;
    animation: tracking-in-expand 0.5s linear both;
}

.blur {
    animation: blur 0.4s linear both
}


.scale-up-center {
    animation: scale-up-center 0.5s;
}

@keyframes blur {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scale-up-center {
    0% {
        transform: scale(.5)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -.2em;
        opacity: 0
    }

    40% {
        opacity: .6
    }

    100% {
        letter-spacing: 0;
        opacity: 1
    }
}

@media screen and (max-width: 768px) {

    .about_us h2:not(.title) {
        text-align: justify;
    }

}

@media screen and (max-width: 576px) {

    .content-about{
        padding: 1rem;
    }

    .about_us h2:not(.title) {
        text-align: left;
        font-size: 3.5rem;
    }

    .content-actions-text{
        flex-direction: column;
    }

}