﻿
.container-banner {
    margin-top: 1rem;
}

@media only screen and (min-width: 768px) {

    .container-banner {
        margin-top: 1.7rem;
    }
}

@media only screen and (min-width: 1200px) {

    .container-banner {
        margin-top: 2.3rem;
    }

}

.imagen-banner {
    max-width: 53.5rem;
}

.font-extrabold {
    font-weight: 700;
}

.leading-tight {
    line-height: 1.25;
}

.font-bold {
    font-weight: 700;
}

/* #region Misión Visión Socios */

.socios {
    max-width: 1200px;
}

.card {
    margin: 10px;
    border: none;
    --bs-card-inner-border-radius: unset;
}

.socios .card-body {
    background-color: white;
}

.socios .under-line {
    border-bottom: 3px solid black;
    width: 60px;
    /*margin-bottom: 30px;*/
    margin-bottom: 8px;
}

@media only screen and (min-width: 992px) {
    .mision {
        border-right: 1px solid black;
        padding: 50px;
    }

    .vision {
        padding: 50px;
    }

    .socios .card-body {
        /*transform: translateY(-35%) !important;*/
        margin-top: -40%;
        width: 90%;
    }

    .socios .card-title {
        /*min-height: 115px;*/
        font-size: 1.125rem;
    }
}


@media (max-width: 991px) {
    .card {
        margin-bottom: 0px !important;
    }

    .card-body {
        padding-bottom: 0px;
    }

    .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .font-medium {
        font-weight: 500;
    }

    .block-line-image {
        align-items: center;
    }

    .mision {
        border-bottom: 1px solid black;
        padding-bottom: 15px;
    }

    .vision {
        padding-top: 30px;
    }

    .w-20 {
        width: 5rem;
    }
}


/* #endregion */

/* #region marquee */

.marquee {
    font-size: 15px;
    padding-block: 8px;
    overflow: hidden;
    user-select: none;
    --gap: 20px;
    display: flex;
    gap: var(--gap);
}

    .marquee ul {
        list-style: none;
        flex-shrink: 0;
        min-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        animation: scroll 10s linear infinite;
    }

        .marquee ul.alianzas {
            animation: scroll 12s linear infinite;
        }

    .marquee:hover ul {
        animation-play-state: paused;
    }

@keyframes scroll {
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* #endregion */