@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Jost", sans-serif;
}
.header {
    min-height: 100vh;
    width: 100vw;
    position: relative;
}
.about-us{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem 10rem;
}

.about-us h1 {
    color: var(--dark-blue);
    font-size: 28px;
    font-weight: var(--bold);
    overflow: hidden;
}

.about-us p {
    margin-top: 1rem;
    color: var(--black);
    font-size: 16px;
    font-weight: var(--regular);
    overflow: hidden;
    text-align: justify;
}

.slogan{
    margin-top: 3rem;
}

.about-us p span {
    color: var(--dark-blue);
    font-weight: 600;
    font-style: italic;
}
.about-us .large{
    width: 100%;
    height: 350px;
    margin: 1.5rem 0;
    background-image: url("../images/globos_multiples.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.double{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.double .two-images{
    width: 37vw;
    margin-top: 1rem;
}

/* Estilos para pantallas medianas (tablets) */
@media (max-width: 768px) {
    .about-us{
        padding: 1rem 2rem;
    }
    .double .two-images{
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .slogan{
        margin-top: 0;
    }
    .about-us .large{
        background-image: url("../images/globos_multiples_cuadrado.jpg");
    }
}