:root {
    --negro: #000000;
    --blanco: #ffffff;
    --negroginda: #170000;
    --gindanegro: #350a06;
    --ginda: #56070c;
    --rosaNegro: #8f3d38;
    --rosa: #cb7169;
    --gris: #A6A09B;
    --gris2: #E7E5E4;

}


/*About Us*/
.parallax-1 {
    background-image: url('../img/medium-vecteezy_city-of-new-york-government-building_18715195_medium.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.about-h2 p{
    padding-bottom: 1rem;
    font-size: 5.25rem;
}
.about-txt-content {
    color: var(--blanco);
    padding-top: 15%;
    position: relative;
    z-index: 2;
    text-align: center;
    
    p {
        margin: 0 20% 2rem 20%;
        font-size: 1.15rem;
    }
}



/*Fin About ud*/

/*Our Vlaues*/
.ourvls {
    height: 50rem;
    background: var(--blanco);
}

.ourvls-content {
    display: grid;
    grid-template-rows: 20% 80%;
    align-items: start;
    justify-items: center;
}

.ourvls-h1 {
    margin-top: 2rem ;
    margin-bottom: 10rem;
}

.ourvls-card-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    justify-items: center;
}

.ourvls-card {
    width: 23.5rem;
    height: 31rem;
    padding: 1rem;
    display: grid;
    grid-template-rows: 0.45fr 0.5fr;
    gap: 25px;
    text-align: center;
    color: var(--blanco);
    background: var(--rosa);
    border-radius: 10px;
    margin: 0 0.5rem 0 0.5rem;
}

.ourvls-card-txt span {
    font-weight: bold;
    text-decoration: underline;
}

.ourvls-img img {
    margin-top: 1rem;
    border-radius: 5px;
    height: 13rem;
    width: 20.5rem;
}


.parallax-2 {
    background-image: url('../img/city4.jpg');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.562);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.823);
}

.oursrvcs {
    height: 50rem;
}

.no-bg {
    background: none;
}

.parallax-3 {
    background-image: url('../img/ourmv.jpg');
    min-height: 75vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.562);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.823);
}

.ourvm {
    display: grid;
    grid-template-rows: 20% 80%;
    justify-items: center;
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.ourvm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18rem;
}

.ourvm-card {
    border-radius: 5% 5% 0 0;
    margin: 1rem;
    background: var(--gris2);
    max-width: 30rem;
    text-align: center;

    img {
        border-radius: 15px 15px 0 0;
        width: 100%;
        height: 18rem;
    }
    .ourvm-txt{
        
        margin: 1rem 2rem;
        h3{
            font-size: 24px;
        }
    }
}

.oursvcs-h1 h2{
    color: var(--blanco);
}