
/* ――――――――― Contenido principal ――――――――― */
/* Descripción: Estilos para el contenido principal de la página */ 

.Main{
    background-color: #ffffff;
}

.Banner{
   height: auto;
   margin-top: 5rem;

   display: flex;
   flex-flow:column nowrap;
   justify-content: center;
   align-items: center;
}

.Banner-wrapper{
    display: flex;
    flex-flow:column nowrap;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 0;
    gap: 4.5rem;

    color: white;

    width: 92%;
    margin: auto;
}

.Banner-h2{
    font-size: var( --h2-size);
    font-weight: 500;
    color: #025B7B;
}

.Banner-p{
    font-size: 1rem;
    line-height: 1.875rem;
    width: 95%;
    color: black;
}

.link{
    color: #025B7B;
    font-weight: 600;
}

b{
    font-weight: 600;
}

.p-title{
    font-size: 1.2em;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th{
    border: 1px solid #d8d8d8;
    padding: 0.6rem;
    text-align: center;
    background-color: #025B7B;
    font-weight: 600;
}

td {
    border: 1px solid #d8d8d8;
    padding: 0.8rem;
    text-align: left;
    color: black;
}

/* ――――――――― Sección Contact ――――――――― */



/* ――――――――― Media Querys - 1200px――――――――― */
/* Descripción: Estilos para tablet */

@media  (max-width:1200px) {

    .Banner-wrapper{
        top: 20%;
    }
    
    .Burguer-svg{
        display: block;
        width: 2.6rem;
        height: 2.6rem;
    }

    .Mouse-wrapper{
        display: none;
    }
}

/* ――――――――― Media Querys - 1200px――――――――― */



/* ――――――――― Media Querys - 600px――――――――― */
/* Descripción: Estilos para mobile */

@media  (max-width:1100px) {

    .Banner{
        height: auto;
    }

    .Banner-h2{
        font-size: var( --h3-size);
        font-weight: 500;
    }
}

/* ――――――――― Media Querys - 600px――――――――― */




