@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --amarillo : #fbda63;
    --rosa: #f8a198;
    --naranja: #f39f5f;
    --azul: #a9dcde;
    --turqueza: #4a8a9e;
    --verde: #cbcd00;
    --fondo: #fdf6ec;
    --guinda: #b74b46;
    --nunito: "Nunito", sans-serif;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
.top{
    width: 100%;
    height: 120px;
    background-color: var(--fondo);
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
body{
    margin: 0 auto;
    font-family: var(--nunito);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 8vw;
    padding-bottom: 8vw;
    padding-right: 8%;
    padding-left: 8%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
section > aside{
	display: flex;
	justify-content: center;
	align-items: center;
}
h1{
    font-size: 3vw;
    font-family: var(--work);
    font-weight: 500;
    line-height: .9;
    text-align: center;
  	font-variation-settings: "wdth" 75;
    width: 100%;
}
h2{
    font-size: 2.2vw;
    font-variation-settings: "wdth" 75;
    font-weight: 500;
    width: 100%;
}
h3{
    font-size: 1.3vw;
}
p{
    font-size: 1.3vw;
    font-weight: 400;
    line-height: 1.2;
}
a{
    text-decoration: none;
    color: inherit;
}
.tope{
    position: relative;
    width: 100%;
    /*height: 90px;*/
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    height: 115px;
    padding-top: 25px;
    top: 0px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 16;
    /*background-color: rgba(255,255,255,1);*/
    /* box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
    background-color: var(--fondo);
}
header > a{
    width: 120px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border-right: solid 1px #ccc;*/
    background-image: url(images/Bee-Logo.png);
    background-size: auto 150%;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: -25px;
}
nav{
    width:735px;
    height: 50%;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    background-color: var(--amarillo);
    z-index: 10;
}
nav > a:nth-child(1){
    padding-left: 20px;
}
nav > a{
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
    height: 100%;
    line-height: 45px;
    cursor: pointer;
    border-radius: 30px;
}
nav > a:hover{
    background-color: var(--rosa);
    color: #FFF;
}

header > ul{
    padding: 0px;
    list-style: none;
    display: flex;
    width: 100px;
    justify-content: space-between;
}
header > ul > li{
    color: var(--rosa);
    border-radius: 50px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
header > ul > li:hover{
    background-color: var(--guinda);
    color: #FFF;
}
header > p > a{
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 30px;
    background-color: var(--rosa);
    color: var(--guinda);
}
header > p > a:hover{
    background-color: var(--guinda);
    color: #FFF;
}

/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:fixed;
    top: 26px;
    z-index: 20;
    box-sizing: content-box;
    padding: 10px;
    display: none;
}
label span{
    background: #fff;
    height:2px;
    margin: 3px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label span:nth-of-type(1){
    width:50%;
}
label span:nth-of-type(2){
    width:100%;
}
label span:nth-of-type(3){
    width:75%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(2px,0px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(12px, -4px) rotatez(45deg);
}
.solo-movil{
    display: none;
}

body > a{
    position: fixed;
    bottom: 60px;
    right: 50px;
    width: 60px;
    height: 60px;
    z-index: 5;
    border:solid 2px #FFF;
    border-radius: 50px;
    background-image: url(images/E3AFA6EBF74AB28B.png);
    background-position: center center;
    background-size: 145%;
}
body > a > img{
    width: 100%;
}
/*********************
 *      INICIO       *
 ********************/
.inicio{
    background-image: url(images/bg_home.png);
    background-position: center center;
    background-size: 100%;
    /*padding-left: 0px;*/
    padding-right: 0px;
    height: 70vw;
    z-index: 2;
    flex-direction: row;
}
.inicio > img{
    width: 55%;
}
.inicio > article{
    width: 45%;
}
.inicio > article > h1{
    font-size: 5vw;
    text-align: left;
    padding-top: 5vw;
}
.inicio > article > h1 > span{
    color: var(--rosa);
    font-weight: 700;
}
.inicio > article > p{
    font-weight: 500;
    padding-top: 1vw;
    width: 57%;
}
.inicio > article > a {
    /*position: fixed;
    z-index: 3;
    bottom: 100px;*/
    background-color: var(--azul);
    border:solid 3px #FFF;
    font-weight: 500;
    font-size: 14px;
    color: var(--turqueza);
    padding: 1vw;
    border-radius: 3vw;
    display: block;
    width: fit-content;
    margin-top: 10vw;
    padding-right: 2vw;
}
.inicio > article > a > span{
    background-color: var(--turqueza);
    color: var(--azul);
    padding: .5vw;
    border-radius: 3vw;
    margin-right: 1vw;
}
.inicio > article > a:hover{
    background-color: var(--rosa);
    color: var(--guinda);
}
.inicio > article > a:hover > span{
    background-color: var(--guinda);
    color: var(--rosa);
}

/*********************
 *     NOSOTROS      *
 ********************/
.nosotros{
    background-image: url(images/bg_nosotros-04.svg);
    background-position: center center;
    background-size: cover;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    z-index: 1;
    margin-top: -16vw;
    padding-top: 16vw;
    padding-bottom: 15vw;
}
.nosotros > h1{
    font-size: 1.6vw;
    color: #FFF;
}
.nosotros > h2{
    margin-top: 1vw;
    text-align: center;
    padding-left: 30%;
    padding-right: 30%;
}
.nosotros > h2 > span{
    color: var(--naranja);
}
.nosotros > article{
    width: 27%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.nosotros > article > div{
    width: 10vw;
    height: 10vw;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.nosotros > article > div{
    background-image: url(images/Web-Bee-04.svg);
}
.nosotros > article:nth-child(5) > div{
    background-image: url(images/Web-Bee-05.svg);
}
.nosotros > article > p > span{
    font-weight: 700;
}
.nosotros > img{
    width: 32%;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 5vw;
}

/*********************
 *      EQUIPO       *
 ********************/
.equipo{
    background-image: url(images/bg_equipo.png);
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 31vw;
    padding-top: 20vw;
    margin-top: -10vw;
    z-index: 2;
}
.equipo > img{
    width: 52%;
    margin-left: 3%;
}
.equipo > aside{
    width: 38%;
    flex-direction: column;
    align-items: flex-start;
}
.equipo > aside > h1{
    text-align: left;
    font-size: 2vw;
    color: var(--naranja);
}
.equipo > aside > h2 > span{
    font-weight: 700;
}
.equipo > aside > p{
    font-weight: 700;
    font-size: 1.6vw;
    padding-top: 2.5vw;
}
.equipo > aside > ul{
    padding: 0px;
}
.equipo > aside > ul > li{
    font-size: 1.4vw;
    margin-top: 1.5vw;
    margin-left: 2vw;
    font-weight: 600;
}
.equipo > article{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 8vw;
}
.equipo > article > div:nth-child(1){
    width: 14vw;
    height: 14vw;
    border-radius: 8vw;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: var(--amarillo);
    color: var(--naranja);
    z-index: 2;
}
.equipo > article:nth-child(3) > div:nth-child(1){
    background-image: url(images/equipo/nury-maynez.jpg);
    background-position: center center;
}
.equipo > article:nth-child(4) > div:nth-child(1){
    background-image: url(images/equipo/citlali-casas.jpg);
    background-position: center center;
}
.equipo > article:nth-child(5) > div:nth-child(1){
    background-image: url(images/equipo/citlali-salazar.jpg);
    background-size: 120%;
    background-position: center center;
}
.equipo > article:nth-child(6) > div:nth-child(1){
    background-image: url(images/equipo/diana-pacheco.jpg);
}
.equipo > article:nth-child(7) > div:nth-child(1){
    background-image: url(images/equipo/laura-veyna.jpg);
}
.equipo > article > div:nth-child(2){
    background-color: #fff;
    border-radius: 1.5vw;
    padding: 2vw;
    width: 90%;
    margin-top: -3vw;
    z-index: 1;
    padding-top: 4vw;
}
.equipo > article > div:nth-child(2) > h2{
    font-size: 1.6vw;
    font-weight: 700;
    text-align: center;
}
.equipo > article > div:nth-child(2) > p{
    font-size: 1.4vw;
    font-weight: 500;
    text-align: center;
}

/*********************
 *    METODOLOGIA    *
 ********************/
.metodologia{
     background-image: url(images/bg_metodologia.png);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 0px;
    margin-top: -16vw;
    z-index: 3;
}
.metodologia > aside{
    width: 100%;
    padding-left: 5%;
    flex-direction: column;
    padding: 12vw;
    padding-left: 14vw;
    padding-top: 8vw;
    padding-bottom: 2vw;

   
}
.metodologia > aside > h1{
    font-size: 2vw;
    padding-left: 15%;
    color: var(--naranja);
}
.metodologia > aside > h2{
    font-size: 1.6vw;
    font-weight: 700;
    line-height: 1;
    margin-top: 2vw;
    margin-bottom: 2vw;
    width: 100%;
    padding-left: 13%;
    padding-right: 1%;
    text-align: center;
}
.metodologia > aside > article{
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
    width: 90%;
    padding-left: 10%;
}
.metodologia > aside > article > div{
    width: 7vw;
    height: 7vw;
    border-radius: 5vw;
    background-position: center center;
    background-size: 150%;
    background-color: var(--amarillo);
}
.metodologia > aside > article > p{
    width: calc(100% - 7vw);
    padding-left: 3%;
}
.metodologia > aside > article > p > span{
    font-weight: 800;
}
.metodologia > aside > h3{
    text-align: center;
    font-weight: 500;
    margin-top: 2vw;
    padding-left: 15%;
    padding-right: 10%;
}
.metodologia > aside > article:nth-child(3) > div{
    background-image: url(images/Web-Bee-11.svg);
}
.metodologia > aside > article:nth-child(4) > div{
    background-image: url(images/Web-Bee-12.svg);
}
.metodologia > aside > article:nth-child(5) > div{
    background-image: url(images/Web-Bee-13.svg);
}
.metodologia > aside > article:nth-child(6) > div{
    background-image: url(images/Web-Bee-14.svg);
}

/*********************
 *     BENEFICIOS    *
 ********************/
.beneficios{
    background-image: url(images/bg_beneficios.png);
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 25vw;
    padding-bottom: 23vw;
    margin-top: -15vw;
}
.beneficios > h1{
    font-size: 2.4vw;
    padding-bottom: 5vw;
}
.beneficios > h1 > span{
    font-weight: 700;
}
.beneficios > article{
    width: 25%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    /*background-color: #F00;*/
}
.beneficios > article > div:nth-child(1){
    width: 100%;
    height: 34vw;
    background-image: url(images/web-beneficios-forma-10.svg);
    background-position: center center;
    background-size: auto 100%;
    padding: 2vw;
    padding-top: 5vw;
    padding-bottom: 0px;
}
.beneficios > article > div:nth-child(1) > h2{
    color: #FFF;
    font-weight: 700;
    text-align: center;
    line-height: .9;
    padding-bottom: 1vw;
}
.beneficios > article > div:nth-child(1) > ul{
    padding: 0px;
    list-style: none;
}
.beneficios > article > div:nth-child(1) > ul > li{
    color: #FFF;
    font-size: 1.4vw;
    text-align: center;
    line-height: 1;
    margin-bottom: 1vw;
}
.beneficios > article > div:nth-child(1) > ul > li > span{
    font-size: 3vw;
    line-height: .2;
}
.beneficios > article > div:nth-child(2){
    width: 14vw;
    height: 14vw;
    border-radius: 10vw;
    border:solid 3px #FFF;
    margin-top: -4vw;
    background-position: center center;
    background-size: cover;
    background-color: var(--azul);
}

.beneficios > article:nth-child(2) > div:nth-child(2){
    background-image: url(images/equipo/cognitivo.JPG);
}
.beneficios > article:nth-child(3) > div:nth-child(2){
    background-image: url(images/equipo/socio.JPG);
}
.beneficios > article:nth-child(4) > div:nth-child(2){
    background-image: url(images/equipo/leguaje.JPG);
}
.beneficios > article:nth-child(5) > div:nth-child(2){
    background-image: url(images/equipo/fisico.JPG);
}

/*********************
 *     SERVICIOS     *
 ********************/
.servicios{
    background-image: url(images/web-servicios.png);
    background-position: center center;
    background-size: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 19vw;
    padding-bottom: 19vw;
    margin-top: -7vw;
}
.servicios > h1{
    font-size: 2.4vw;
    margin-bottom: 4vw;
}
.servicios > h1 > span{
    font-weight: 700;
}
.servicios > p{
    width: 51%;
    font-size: 1.4vw;
    border-radius: 5vw;
    height: 7.5vw;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #fff;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border:solid 1px #FFF;
}
.servicios > p:nth-child(odd){
    margin-left: -2%;
}
.servicios > p:nth-child(2){
    background-color: var(--amarillo);
    transform: rotate(-5deg);
}
.servicios > p:nth-child(3){
    background-color: var(--verde);
    transform: rotate(5deg);
    margin-top: 5vw;
}
.servicios > p:nth-child(4){
    background-color: var(--rosa);
    margin-top: -2vw;
    transform: rotate(5deg);
}
.servicios > p:nth-child(5){
    background-color: var(--azul);
    transform: rotate(-10deg);
    margin-top: 2vw;
}
.servicios > p:nth-child(6){
    background-color: var(--naranja);
    transform: rotate(-5deg);
    margin-top: 1vw;
}

/*********************
 *    TESTIMONIOS    *
 ********************/
.testimonios{
    background-image: url(images/bg_testimonios-12.svg);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    flex-direction: row;
    flex-wrap: wrap;
    /*align-items: flex-start;*/
}
.testimonios > h1{
    font-size: 2.4vw;
    margin-bottom: 5vw;
}
.testimonios > article{
    width: 30%;
    border-radius: 3vw;
    background-color: var(--fondo);
    padding: 3vw;
    padding-top: 4vw;
    margin: 1vw;
    height: 30vw;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.3);
-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.3);
}
.testimonios > article > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonios > article > div > p{
    width: 4vw;
    height: 4vw;
    border-radius: 3vw;
    background-color: var(--rosa);
    background-size: cover;
    background-position: top center;

}
.testimonios > article:nth-child(2) > div > p{
    background-image: url(images/equipo/testimonio-1.jpg);
}
.testimonios > article:nth-child(4) > div > p{
    background-image: url(images/equipo/testimonio-3.jpg);
}
.testimonios > article > div > h2{
    font-size: 1.6vw;
    font-weight: 700;
    line-height: 1;
    padding-left: 3%;
    width: calc(100% - 4vw);
}
.testimonios > article > div > h2 > span{
    font-weight: 400;
}
.testimonios > article > p{
    margin-top: 2vw;
    font-weight: 500;
    text-align: center;
    font-size: 1.1vw;
}
.testimonios > aside{
    width: 50%;
    flex-direction: column;
}
.testimonios > aside > h2{
    color: var(--rosa);
    font-weight: 700;
    font-size: 2.8vw;
}
.testimonios > aside > h3{
    color: var(--rosa);
    font-weight: 400;
    padding-top: 2vw;
    font-size: 2.4vw;
    color: #000;
    text-align: left;
    width: 100%;
    margin-bottom: 1vw;
}
.testimonios > aside > p{
    width: 100%;
    text-align: left;
    margin-top: 1vw;
}
.testimonios > aside > p > .fa-solid{
    color: var(--rosa);
}
.testimonios > img{
    width: 50%;
}

/*********************
 *       FOOTER      *
 ********************/
footer{
    padding-left: 5%;
    padding-right: 8.5%;
    height: 13vw;
    background-color: var(--fondo);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
footer > img{
    width: 10%;
    height: auto;
}
footer > div{
    width: 80px;
    display: flex;
    justify-content: space-between;
}
footer > div > a{
    font-size: 1.4vw;
    color: var(--rosa);
}

.solo-movil{
    display: none;
}
@media (max-width: 480px){
    .no-movil{
        display: none;
    }
    section{
        padding-left: 10% !important;
        padding-right: 10% !important;
        height: auto !important;
    }
    p{
        font-size: 4vw;
    }
    h2{
        font-size: 7vw;
    }
    header{
        top: 0px;
        height: 150px;
        padding-right: 18%;
        background-image: url(images/bg_menu-16.svg);
        background-position: top center;
        background-size: auto 100%;
        padding-bottom: 50px;
        background-color: transparent;
        padding-top: 0px;
    }
    header > a{
        background-size: auto 130%;
        margin-top: 0px;
    }
    nav{
        position: fixed;
        top: 0px;
        width: 100%;
        padding-top: 50px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        display: none;
        background-image: url(images/bg_menumovil-15.svg);
        background-position: center center;
        background-size: cover;
        left: 0px;
    }
    nav > a{
        height: auto;
        font-size: 5vw;
        margin-top: 2vw;
        margin-bottom: 2vw;
    }
    nav > a{
        /*background-color: var(--azul);*/
    }
    .inicio{
        flex-direction: column;
        background-size: auto 100%;
        padding-top: 35vw;
    }
    .inicio > article > a{
        font-size: 4vw;
        border-radius: 5vw;
    }
    .inicio > article, .inicio > img, .nosotros > article, .equipo > aside{
        width: 100%;
    }
    .inicio > img{
        left: 13%;
    }
    .inicio > article > p{
        padding-top: 3vw;
    }
    .inicio > article > h1{
        font-size: 10vw;
    }
    .nosotros{
        margin-top: 0px;
        padding-top: 32vw;
        margin-top: -23vw;
    }
    .nosotros > h1, .equipo > aside > h1{
        font-size: 5vw;
    }
    .nosotros > h2{
        padding: 0px;
        line-height: 1;
    }
    .nosotros > article{
        margin-top: 5vw;
        margin-bottom: 5vw;
    }
    .nosotros > article > div{
        width: 20vw;
        height: 20vw;
    }
    .equipo{
        padding-bottom: 55vw;
        padding-top: 35vw;
        margin-top: -20vw;
    }
    .equipo > aside > h2{
        line-height: 1;
        margin-top: 2vw;
    }
    .equipo > aside > p{
        font-size: 5vw;
    }
    .equipo > aside > ul > li{
        font-size: 4vw;
    }
    .equipo > img{
        width: 100%;
        margin: 0px;
    }
    .equipo > article{
        width: 50%;
    }
    .equipo > article > div:nth-child(1){
        width: 28vw;
        height: 28vw;
        border-radius: 14vw;
    }
    .equipo > article > div:nth-child(2) > h2{
        font-size: 4vw;
    }
    .equipo > article > div:nth-child(2) > p{
        font-size: 4vw;
    }
    .metodologia{
        background-image: url(images/bg_metodologia_movil.png);
        background-size: 100% 100%;
    }
    .metodologia{
        margin-top: -36vw;
    }
    .metodologia > aside{
        padding: 0px;
        padding-top: 25vw;
        padding-bottom: 10vw;
    }
    .metodologia > aside > h1{
        font-size: 5vw;
    }
    .metodologia > aside > h2{
        font-size: 5vw;
        padding: 0px;
        margin-bottom: 5vw;
    }
    .metodologia > aside > article{
        padding: 0px;
        margin-top: 3vw;
        margin-bottom: 3vw;
    }
    .metodologia > aside > article > div{
        width: 14vw;
        height: 14vw;
        border-radius: 9vw;
    }
    .metodologia > aside > h3{
        font-size: 4vw;
        padding-left: 5%;
    }
    .beneficios{
        padding-top: 50vw;
        margin-top: -40vw;
    }
    .beneficios > h1{
        font-size: 5vw;
    }
    .beneficios > article{
        width: 100%;
        margin-bottom: 5vw;
    }
    .beneficios > article > div:nth-child(1) > h2{
        padding-bottom: 4vw;
    }
    .beneficios > article > div:nth-child(1) > ul > li{
        font-size: 4vw;
    }
    .beneficios > article > div:nth-child(1){
        height: 102vw;
        padding: 17vw;
        padding-top: 20vw;
        background-size: 100%;
    }
    .beneficios > article > div:nth-child(2){
        width: 34vw;
        height: 34vw;
        border-radius: 18vw;
        margin-top: -12vw;
    }
    .servicios{
        background-size: 250% 100%;
        margin-top: -18vw;
        padding-top: 30vw;
        padding-bottom: 30vw;
    }
    .servicios > h1{
        font-size: 5vw;
        padding-bottom: 8vw;
    }
    .servicios > p{
        width: 100%;
        font-size: 3.5vw;
        border-radius: 13vw;
        height: 22vw;
    }
    .testimonios > h1{
        font-size: 5vw;
    }
    .testimonios > article{
        width: 100%;
        border-radius: 5vw;
        padding: 8vw;
        height: auto;
        margin-bottom: 10vw;
        padding-top: 14vw;
        padding-bottom: 14vw;
    }
    .testimonios > article > div > h2{
        font-size: 5vw;
        width: calc(100% - 10vw);
    }
    .testimonios > article > div > p {
        width: 10vw;
        height: 10vw;
        border-radius: 6vw;
    }
    .testimonios > article > p{
        margin-top: 5vw;
        font-size: 4vw;
        text-align: left;
    }
    .testimonios > aside{
        width: 100%;
        padding-top: 18vw;
        padding-bottom: 5vw;
    }
    .testimonios > aside > h2{
        font-size: 10vw;
        line-height: 1;
    }
    .testimonios > aside > h3{
        font-size: 7vw;
        margin-bottom: 4vw;
    }
    .testimonios > aside > p{
        margin-top: 4vw;
    }
    .testimonios > img{
        width: 100%;
    }
    .testimonios > article > div{
        flex-wrap: wrap;
    }
    footer{
        height: auto;
        /*flex-direction: column;*/
        padding-top: 8vw;
        padding-bottom: 8vw;
        padding-left: 10%;
        padding-right: 10%;
        align-items: center;
    }
    footer > img{
        width: 30%;
    }
    footer > div{
        width: 60%;
        /*margin-top: 10vw;*/
    }
    footer > div > a{
        font-size: 5vw;
    }
    body > a{
        bottom: 150px;
        right: 8%;
    }
    label{
        display: flex;
    }
    label span{
        background-color: var(--rosa);
    }
    header > ul > li{
        font-size: 4vw;
    }
    .nosotros > img{
        width: 75%;
    }

}


