* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.page1 {
    background-image: url(../images/Artboard\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}


.letterhead-rojo {
    width: 100%;
    background-color: #b0090a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 5px;
}

.logo-size {
    width: 7rem;
    height: 7rem;
    padding-left: 3rem;
}
.grid-menu {
    display: flex;
    justify-content: space-evenly;
    font-size: 1.25rem;
}


a,
ul {
    color: #ffffff;
    text-decoration: none;
    list-style: none;
}

a:hover {
    color: #a69898;

}    


h1,
h2  {
   color: #000;
   text-align: center;
}

p   {
    color: #000;
    text-align: justify;
    font-weight: 450;
}

.grid-txt {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    padding-block: 2rem;
    font-size: 1.25rem;
}

.grid-elements {
    padding: 1rem;
}

.grid-row-span-2 {
    grid-row: span  2;
    
}
/* AQUI EMPIEZA EL CSS DE PRODUCTOS*/

.grid-productos {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    padding: 1rem;
}

.img-products,
.img-proyecto {
    height: 350px;
    aspect-ratio: 1 / 1;
    display: block;
    margin: auto;
    border-radius: 3rem;
}

.logo-fab {
    height: 7rem;
    aspect-ratio: 1 / 1;
    padding-left: 3rem;
    display: block;
    margin: auto;

}

.wrapper {
    text-align: center;
}

.factory-txt {
    text-align: center;
    font-size: 1.3rem;
}

/* AQUI EMPIEZA EL CSS DE PROYECTOS */

.cont-proyecto {
    padding: 1rem;
}

.grid-proyectos-actual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    
}

@media (max-width: 768px) {
    .grid-proyectos-actual {
        grid-template-columns: 1fr;
    }
    .grid-menu {
        display: grid;
        grid-template-columns: 1fr;
    }
    .grid-txt {
        display: grid;
        grid-template-columns: 1fr;

    }
}

@media (min-width:768px) and (max-width: 1235px) {
    .grid-proyectos-actual {
        grid-template-columns: 1fr 1fr;
    }
}


/* AQUI EMPIEZA EL CSS DE CLIENTES */

.img-clientes {
    max-height: 10rem;
    display: block;
    margin: auto;
    padding: 3rem;
}

.wrapper-clientes-nacional,
.wrapper-clientes-internacional,
.wrapper-arquitectos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* AQUI EMPIEZA EL CSS DE CONTACTO */

.img-contacto {
    display: block;
    margin: auto;
    padding: 5rem;
    max-height: 65vh;
    border-radius: 15rem ;
}

.wrapper-contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
}

.txt-contacto {
    font-size: 1.5rem;

}

footer {
    background-color: #b0090a;
    padding: .25rem;
}

.wh-txt {
    text-decoration: none;
    color: #ffffff;
    text-align: center;

}


