



.master-form-grid {
    display: grid;
    grid-template-rows: repeat(3, auto); 
    grid-template-columns: repeat(20, 1fr); 
    gap: 20px;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------
1) Become a model Form
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.form-step-hidden {
    display: none !important;
}

.invisible-index {
    display: none !important;
} 

.contact-section {
    width: 100%;
    height: 100%;
    grid-area: 2 / 1 / 2 / 21; /* row-start, column-start, row-end, column-end */

    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: 310px 240px 245px;
    grid-gap: 20px;
    /*background-color: #343a40;*/
}

.contact-title {
    width: 100%;
    height: 100%;
    grid-area: 2 / 2 / 2 / 13; /* row-start, column-start, row-end, column-end */
    background-color: var(--Black-2);
    color: var(--White-1);
    white-space: nowrap;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    font-size: inherit; /* Asegura que el tamaño de la fuente sea el mismo que el del contenedor */
    font-weight: inherit; /* Mantiene el grosor de la fuente */
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------
4) Footer
----------------------------------------------------------------------------------------------------------------------------------------------------*/

.footer {
    width: 100%;
    height: 110px; /* Solo necesitas especificar la altura una vez */
    grid-area: 3 / 1 / 3 / 21; /* row-start, column-start, row-end, column-end */
    background-color: var(--Black-2);
}

.footer-grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: auto;
    grid-gap: 20px;
}

.contact-email {
    grid-column: 2 / 7; /* Inicia en la columna 2, termina antes de la columna 7 */
    display: flex;
    justify-content: flex-start; /* Esto separa los elementos uniformemente a lo largo del eje principal */
    align-items: flex-start; /* Alinea los elementos verticalmente en el centro */
}

.contact-email a {
    text-decoration: none;
    color: inherit;
}


.social-links {
    grid-column: 16 / 20; /* Inicia en la columna 16, termina al final de la columna 19 */
    display: flex;
    justify-content: space-between; /* Esto separa los elementos uniformemente a lo largo del eje principal */
    align-items: flex-start; /* Alinea los elementos verticalmente en el centro */
}

.social-links a {
    color: var(--White-1); /* Establece el color de los enlaces a #fefefe */
    text-decoration: none; /* Quita el subrayado de los enlaces */
}

.social-links a:hover {
    text-decoration: underline; /* Añade subrayado al hacer hover */
}





