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

.Main{
    background-color: #ffffff;
}

.Banner{
   background-image: url(../assets/about/background.jpg);
   height: 40vh;
   margin-top: 5rem;

   display: flex;
   flex-flow:column nowrap;
   justify-content: center;
   align-items: flex-start;
   border-radius: 0rem 0rem 18.1875rem 0rem;
}

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

    color: white;

    width: 92%;
    margin: auto;
}

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

.Banner-p{
    font-size: var( --p-size);
    line-height: 1.875rem;
    width: 80%;
}

.Banner-button{
    white-space: nowrap;
    background-color: var(--color-white);
    padding: 1rem 3rem;
    border-radius: 1rem;
    display: inline-block;
    width: auto;
    font-weight: 600;
    font-size: var(--h5-size);
                
    color: var(--color-primary); 
} 

.Banner-button:hover{
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transition: all 1s ease;
    font-weight: 500;
}

.Banner-button:active{
    white-space: nowrap;
    background-color: aqua ;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 6px 6px 12px lightgrey,
                -6px -6px 50px white;
                
    color: var(--color-white);
}


/* ――――――――― Sección Profiles ――――――――― */
/* Descripción: Estilos para la sección de perfiles, descripción de Marina y Álvaro */ 

.Profiles-ul{
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 8rem;
    width: 60%;
    padding: 5rem 0 5rem 0;  
}

.Profiles-li{
    border-color: white;
    border-radius: 9rem 0rem 9rem 0rem;
    height: 50vh;
    
    position:relative;
    object-fit: cover;
    transition: all 1s ease;
    overflow: hidden;

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

    box-shadow: 10px 10px 60px #bebebe;
}

.Profiles .Profiles-li:hover{
    transform: scale(1.1);
    border-color: white;
}

.Profiles-p{
    opacity: 100%;
    transition: all 1s ease; 
    background-color: white;
    width: 25vw;
    font-size: var(--p-size);
    line-height: 2rem;
    text-align: center;
}

.Profiles-p:not(:first-child)::before{
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    background: url(../assets/about/Vector.svg) center center no-repeat;
    margin: auto;
}


.Profiles .Profiles-li:hover .Profiles-p{
    opacity: 100%;
}

.Profiles-img{
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.Profiles .Profiles-img:hover{
    opacity: 0;
}

.Profiles-responsive{
    display: none;
}


.Profiles-p-responsive{
    display: none;
}

/* ――――――――― Sección Profiles ――――――――― */





/* ――――――――― Sección Presentation ――――――――― */
/* Descripción: Estilos para la sección de prsentación */ 
.Presentation{
    margin-top: 6rem;
}

.Presentation-wrapper{
    width: 90%;
    margin: 3rem auto;
    text-align: center;

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

.Presentation-h3{
    font-size: var(--h3-size);
    color: var(--color-primary);
    font-weight: 500;
}

.Presentation-p{
    font-size: var(--p-size);
}

/* ――――――――― Sección Presentation ――――――――― */



/* ――――――――― Sección Quotes ――――――――― */
/* Descripción: Estilos para la sección de prsentación */ 

.Quotes{
    width: 100%;
    background-color: #F7F7F7;
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat;
    height: auto;
    margin: 3.125rem 0;

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

.Quotes-ul{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;

    gap: 3rem;
    width: 90%;
    margin: auto;
}

.Quotes-li{
    width: 90%;
    margin: 3rem auto;
    text-align: center;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
}

.Quotes-li-img{
    box-shadow: -10px 10px 12px lightgrey,
                -6px -6px 50px white;
    background-color: pink;
    border-radius: 2rem;
    max-height: 50vh;
    object-fit: cover;
    object-position: top center;
    width: 80%;
}

.Quotes-li-img-2{
    box-shadow: 10px 10px 12px lightgrey,
                -6px -6px 50px white;
    background-color: pink;
    border-radius: 2rem;
    max-height: 50vh;
    object-fit: cover;
    object-position: top center;
    width: 80%;
}

.Quotes-h3{
    font-size: var(--h4-size);
    color: var(--color-primary);
    font-weight: 500;
    white-space: nowrap;
}

.Quotes-p{
    font-size: var(--p-size);
    color: black;
    font-weight: 300;
}

.Quotes-span{
    color: var(--color-secondary);
}

.Slider-quotes{
    display: none;
}

/* ――――――――― Sección Quotes ――――――――― */





/* ――――――――― Sección Valores ――――――――― */
/* Descripción: Estilos para la sección de valores */ 

.Valores{
    width: 90%;
    margin: 5rem auto 5rem auto;

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
    background-color: white;
}

.Valores-h3{
    font-size: var(--h3-size);
    text-align: center;
    color: #025B7B;
    font-weight: 500;
}

.Valores-text{
    font-size: var(--p-size);
    text-align: center;
    width: 80%;
}

.Valores-ul{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  
    grid-auto-rows:30vh; 
    gap: 4rem;
    justify-content: center;
}

.Valores-li{
  margin: auto;

  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.Valores-h6{
    font-size: var(--h6-size);
    font-weight: 500;
    color: var(--color-primary);
}

.Valores-p{
    text-align: center;
}

.Slider{
    display: none;
}


/* ――――――――― Sección Valores ――――――――― */






/* ――――――――― Sección Contact ――――――――― */
/* Descripción: Estilos para la sección de contacto de la página */ 

.Contact{
    background-color: #F7F7F7;
    padding: 3.125rem;
    margin-top: 7rem;
}

.Contact-wrapper{
    width: 85%;
    margin: auto;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.Contact-text{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3.125rem;
}

.Contact-h5{
    font-size: var(--h5-size);
}

.Contact-button{
    white-space: nowrap;
    background-color: var(--color-primary);
    padding: 1rem 3rem;
    border-radius: 10rem;
    box-shadow: 6px 6px 12px lightgrey,
                -6px -6px 50px white;
                
    color: var(--color-white); 
    font-weight: 600;
    width: auto;
}

.Contact-button:hover{
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transition: all 1s ease;
    font-weight: 500;
}

.Contact-button:active{
    white-space: nowrap;
    background-color: aqua ;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 6px 6px 12px lightgrey,
                -6px -6px 50px white;
                
    color: var(--color-white);
}

.Contact-icon{
    width: 12rem;
    height: 12rem;
}

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





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

@media  (max-width:1200px) {
    .Meet-p{
        width: 100%; 
    }

    .Banner-wrapper{
        top: 20%;
    }

    video{
        border-radius: 0rem 0rem 9rem 0rem;
    }
    
    .Burguer-svg{
        display: block;
        width: 2.6rem;
        height: 2.6rem;
    }

    .Mouse-wrapper{
        display: none;
    }


    .Profiles {
        display: none;
    }

    .Profiles-responsive{
        display: block;
    }
    

    .Profiles-ul{
        width: 80%;
    }

    .Profiles-li{
        position: relative;
    }
    
    .Contact-wrapper{
        width: 80%;
        margin: auto;

        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 5rem;
    }
}

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







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

@media  (max-width:1100px) {
    .Meet-p{
        width: 100%; 
    }

    .Banner{
        border-radius: 0rem 0rem 10rem 0rem;
        height: auto;
     }

     .Banner-h2{
        font-size: var( --h3-size);
        font-weight: 500;
    }
    
    .Burguer-svg{
        display: block;
        width: 2.6rem;
        height: 2.6rem;
    }

    .Profiles-ul{
        grid-template-columns: repeat(1, 1fr);
        width: 80%;
    }

    .Profiles-p{
        width: 60vw;
        font-size: 0.9em;
        line-height: 1.2rem;
    }

    .Profiles-p:not(:first-child)::before{
        content: "";
        display: block;
        width: 1.5rem;
        height: 1.5rem;
        background: url(../assets/about/Vector.svg) center center no-repeat;
        background-size: contain;
        margin: 0.5rem auto;
    }

    .Valores{
        display: none;
    }

    .Valores-li-responsive{
        display: none;
    }

    .Valores-li-responsive.isActive{
        margin: auto;

        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .Slider{
        width: 90%;
        margin: 4rem auto 4rem auto;
        
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 3.125rem;
    }

    .Slider-ul{
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        gap:1.5rem;
        padding: 1.25rem;
        background-color: var(--color-white);
        margin-top: 1.5rem;
    }

    .Slider-li{
        background-color: rgb(177, 176, 176);
        height: 0.8rem;
        width: 0.8rem;
        border-radius: 50%;
    }

    .Slider-li.isActive{
        background-color: var(--color-primary);
    }

    .Contact-icon{
       display: none;
    }

    .Quotes{
        display: none;
    }

    .Slider-quotes{
        width: 100%;
        background-image: url(../assets/about/AlvaroGonzalezSlider.jpg);
        background-size: cover; 
        background-position: top center; 
        background-repeat: no-repeat;
        height: 70vh;
        margin: 3.125rem 0;
    
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;  
        text-align: center;
    }

    .Quotes-li-responsive{
        display: none;
    }

    .Quotes-li-responsive.isActive{
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
        width: 90%;
        margin: auto;
        gap: 1.25rem;
    }

    .Quotes-h3{
        color: var(--color-white);
    }
    
    .Quotes-p{
        color: var(--color-white);
    }

    .Quotes-ul-dots{
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: center;
        gap:1.5rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .Quotes-li-dots{
        background-color: rgb(177, 176, 176);
        height: 0.8rem;
        width: 0.8rem;
        border-radius: 50%;
    }

    .Quotes-li-dots.isActive{
        background-color: var(--color-white);
    }
}

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




