@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Trip Sans';
    src: url('fonts/TripSans-Bold.woff2') format('woff2'),
        url('fonts/TripSans-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans';
    src: url('fonts/TripSans-Medium.woff2') format('woff2'),
        url('fonts/TripSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans Mono';
    src: url('fonts/TripSansMono-Regular.woff2') format('woff2'),
        url('fonts/TripSansMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans';
    src: url('fonts/TripSans-Regular.woff2') format('woff2'),
        url('fonts/TripSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trip Sans';
    src: url('fonts/TripSans-Ultra.woff2') format('woff2'),
        url('fonts/TripSans-Ultra.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*********************
 * PALETA DE COLORES *
 ********************/
:root{
    --fondo: #edf2f6;
    --ocre: #a69f87;
    --beige: #e5ddca;
    --azul-oscuro: #004378;
    --azul-cielo: #dceffc;
    --azul-foso: #3589f5;
    --azul-claro: #7d9fbc;
    --turquesa: #00abb5;
    --verde: #015256;
    --verde-whatsapp: #47c857;
    --texto: #02234e;
    --boton: #f6f3e7;
    --roboto: "Roboto", sans-serif;
    --playfair: "Playfair", serif;
    --trip: 'Trip Sans';
}

/*********************
 * 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(--roboto);
    -webkit-font-smoothing:antialiased;
    background-color: #FFF;
    color: var(--azul-oscuro);
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 3vw;
    padding-bottom: 3vw;
    padding-right: 1.5%;
    padding-left: 1.5%;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/*section > *{
    padding-left: 2%;
    padding-right: 2%;
}*/
h1{
    font-size: 4vw;
    line-height: .75;
    text-align: center;
    font-family: var(--trip);
    color: var(--turquesa);
    font-weight: 900;
}
h2{
    font-size: 1.5vw;
    line-height: 1.1;
    font-weight: 600;
}
h3{
    font-size: 1.3vw;
    line-height: 1.1;  
}
p{
    font-size: 1.1vw;
    font-weight: 400;
    line-height: 1.2;
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 16;
    background-color: rgba(255,255,255,.5);
}
header > a{
    width: 180px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
header > a > img{
    height: 80%
}
header > article{
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header > article > p{
    font-size: 10px;
    color: #000;
}
header > nav{
    width: calc(100% - 300px);
    display: flex;
    justify-content: center;
    align-items: center;
}
header > nav > a{
    font-size: 13px;
    padding-right: 20px;
    padding-left: 20px;
    font-family: var(--trip);
    color: #000;
}
header > nav > a.red{
    padding-left: 5px;
    padding-right: 5px;
}
header > nav > a.red:nth-child(5){
    margin-left: 60px;
}
header > nav > a.boton{
    padding: 0px;
    background-color: var(--turquesa);
    border-radius: 30px;
    display: flex;
    border-left: solid 20px var(--turquesa);
    margin-left: 70px;
}
header > nav > a.boton > p{
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #FFF;
    border: solid 1px var(--turquesa);
    border-radius: 30px;
    color: var(--azul-oscuro);
    font-weight: 500;

}


/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
label{
    display: flex;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    right: 5%;
    position:relative;
    z-index: 20;
    box-sizing: content-box;
    padding: 10px;
    /*display: none;*/
}
label span{
    background: #000;
    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);
}
.abierto{
    /*background-color: #000;*/
}




/*********************
 *        MENU       *
 *********************/
.menu{
    position: fixed;
    height: 100vh;
    z-index: 13;
    background-color: rgba(0, 171, 181, .3);
    display: none;
}
.menu > nav{
  position: relative;
  top: 0px;
  width: 800px;
  height: 430px;
  background-color: #FFF;
  border-radius: 15px;
  border: solid 1px var(--azul-oscuro);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--trip);
}
.menu > nav > aside{
    width: 50%;
    height: 100%;
    padding-right: 10%;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 50px;
    padding-bottom: 50px;
}
.menu > nav > aside > div{
    margin-bottom: 10px;
}
.menu > nav > aside > div > a{
    width: 100%;
    display: block;
    font-size: 12px;
    color: var(--turquesa);
}
.menu > nav > aside > div > a:nth-child(1){
    color: #000;
    font-weight: 800;
    font-size: 16px;
}
.menu > nav aside > div > a:hover{}


/*********************
 *       INICIO      *
 *********************/
.inicio{
    height: 39vw;
}
.inicio h1{
    font-size: 6vw;
    width: 35%;

}
.inicio > iframe{
    position: absolute;
    top: 0px;
    letter-spacing: 0px;
    width: 100%;
    height: 56vw;
    top: -5vw;
}


/*********************
 *   QUIENES SOMOS   *
 *********************/
.quienes-somos{
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: row;
    padding-top: 10vw;
}
.quienes-somos > div{
    width: 45%;
    padding-left: 8%;
    padding-right: 5%;
}
.quienes-somos > div > h1{
    text-align: left;
    width: 45%;
}
.quienes-somos > div > p{
    padding-top: 2.5vw;
}
.quienes-somos > div > ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
    padding-top: 2vw;
}
.quienes-somos > div > ul > li{
    margin-bottom: 1vw;
}
.quienes-somos > div > ul > li > h2{
    font-weight: 500;
    font-family: var(--trip);
    font-size: 1.2vw;
    cursor: pointer;
}
.quienes-somos > div > ul > li > h2:hover{
    color: var(--azul-foso);
}
.quienes-somos > div > ul > li > p{
    display: none;
}
.quienes-somos > aside{
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 7%;
}
.quienes-somos > aside > article{
    width: 14vw;
    height: 20vw;
    padding-left: 2%;
    padding-right: 2%;
    border-radius: 1.2vw;
    background-color: var(--azul-cielo);
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.4);
    -webkit-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.4);
}
.quienes-somos > aside > article:nth-child(1){
    background-image: url(images/tomografo.png);
}
.quienes-somos > aside > article:nth-child(3){
    background-image: url(images/dr.JPG);
}
.quienes-somos > aside > article:nth-child(4){
    background-image: url(images/foto3_hospital_andalucia.png);
}
.quienes-somos > aside > article > h2{
    color: #FFF;
    font-size: 2.8vw;
    font-weight: 500;
    font-family: var(--trip);
}
.quienes-somos > aside > article > h3{
    color: #FFF;
    font-size: 1.3vw;
    font-weight: 900;
    font-family: var(--trip);
    color: var(--azul-oscuro);
}
.quienes-somos > aside > article > p{
    font-size: 1.5vw;
    font-weight: 300;
    font-family: var(--trip);
    color: var(--azul-oscuro);
}

.quienes-somos > aside > article:nth-child(2){
    margin-left: -7%;
    margin-top: 5vw;
    z-index: 3;
}
.quienes-somos > aside > article:nth-child(3){
    margin-left: -6vw;
    margin-top: -5vw;
    z-index: 2;
}
.quienes-somos > aside > article:nth-child(4){
    margin-left: -2vw;
    z-index: 1;
}

/*********************
 *     NOSOTROS      *
 *********************/
.nosotros{
    flex-direction: row;
}
.nosotros > aside{
    width: 45%;
    height: 40vw;
    background-position: center center;
    background-size: 90%;
    background-repeat: no-repeat;
    background-image: url(images/nosotros.png);
}
.nosotros > article{
    width: 55%;
    padding-right: 3%;
}
.nosotros > article > h1{
    font-family: var(--playfair);
    font-weight: 400;
    color: var(--azul-oscuro);
    font-size: 6vw;
    text-align: left;
    padding-right: 50%;
}
.nosotros > article > h2{
    padding-top: 2vw;
    font-size: 1.7vw;
    font-weight: 900;
    color: var(--turquesa);
}
.nosotros > article > p{
    padding-top: 1vw;
}
/*********************
 *       FRASE       *
 ********************/
.frase > h1{
    /*font-weight: 300;
    font-size: 6vw;
    color: var(--azul-oscuro);
    font-family: var(--playfair);
    width: 70%;*/

    font-weight: 700;
    font-size: 4vw;
    color: var(--turquesa);
    width: 70%;
    line-height: 1;
}
.frase > a{
    font-size: .9vw;
    letter-spacing: .1vw;
    background-color: var(--boton);
    padding: .5vw;
    padding-left: 1vw;
    padding-right: 1vw;
    border-radius: 2vw;
    margin-top: 4vw;
}
.frase > a:hover{
    background-color: var(--azul-oscuro);
    color: #FFF;
}

/*********************
 *      BANNER       *
 ********************/
.banner > img{
    width: 100%;
}

/*********************
 *     SERVICIOS     *
 ********************/
.servicios{
    padding-bottom: 7vw;
}
.servicios > h1{
    
    padding-left: 35%;
    padding-right: 35%;
}
.servicios > aside{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 4vw;
    flex-direction: row;
}
.servicios > aside > a{
    width: 25%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    height: 23vw;
    border-radius: 1.5vw;
    padding: 2.5vw;
    border: solid 1px var(--azul-oscuro);
    box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.75);
}
.servicios > aside > a:hover{
    background-color: var(--azul-cielo);
}
.servicios > aside > a > div{
    width: 5vw;
    height: 4vw;
    background-position: center center;
    background-size: 90%;
    background-repeat: no-repeat;
}
.servicios > aside > a:hover .cls-1, .servicios > aside > a:hover .cls-2, .servicios > aside > a:hover .cls-3 {
    fill: var(--turquesa);
}
.servicios > aside > a .cls-1, .servicios > aside > a .cls-2, .servicios > aside > a .cls-3 {
    fill: #000;
}
/*.servicios > aside > a:nth-child(1) > div{
    background-image: url(images/icono1_hospital_andalucia.png);
}
.servicios > aside > a:nth-child(2) > div{
    background-image: url(images/icono2_hospital_andalucia.png);
}
.servicios > aside > a:nth-child(3) > div{
    background-image: url(images/icono3_hospital_andalucia.png);
}*/
.servicios > aside > a > h2{
    font-size: 1.2vw;
    font-weight: 900;
    color: var(--azul-foso);
    padding-bottom: .5vw;
}
.servicios > aside > a > ul{
    list-style: none;
    padding: 0px;
    font-size: 1vw;
}
.servicios > aside > a > p{
    position: absolute;
    bottom: 3vw;
    font-size: .8vw;
    border:solid 1px var(--azul-oscuro);
    height: 2vw;
    text-align: center;
    line-height: 2vw;
    width: 2vw;
    display: block;
    border-radius: 3vw;
    background-color: #FFF;
}
.servicios > aside > a:hover > p{
    background-color: var(--azul-oscuro);
    color: #FFF;
}


/*********************
 *     SERVICIO      *
 *********************/
.servicio{
    padding-left: 12%;
    padding-right: 12%;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 10vw;
    background-color: var(--fondo);
}
.servicio > h4{
    width: 100%;
    color: var(--azul-foso);
    font-size: 1.2vw;
    font-weight: 900;
}
.servicio > nav{
    width: 100%;
    display: flex;
    padding-top: 2vw;
    padding-bottom: 2vw;
    justify-content: space-between;
    align-items: center;
}
.servicio > nav > a{
    font-size: .9vw;
}
.servicio > aside{
    width: 50%;
    padding-right: 7%;
}
.servicio > aside > h1{
    line-height: 1;
    text-align: left;
    padding-bottom: 1vw;
    border-bottom: dotted 1px var(--azul-oscuro);
    margin-bottom: 2vw;
    font-size: 3.5vw;
}
.servicio > aside > p, .servicio > div > p{
    font-size: 1vw;
}
.servicio > div{
    width: 100%;
    padding: 0px;
}
.servicio > aside > p > span, .servicio > div > p > span{
    font-weight: 800;
    font-family: var(--trip);
    font-size: 1.4vw;
    padding-top: 1vw;
    padding-bottom: 0vw;
    display: inline-block;
}
.servicio > article{
    width: 50%;
    height: 35vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicio > article > div{
    width: 100%;
    height: 24vw;
    border-radius: 2vw;
    background-position: center center;
    background-size: cover;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.4);
    -webkit-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.4);
    margin-top: 10vw;
}
.servicio > nav > a.activo{
    font-weight: 800;
}
.servicio > aside > ul > li, .servicio > div > ul > li{
    font-size: 1vw;
}

/*********************
 *     CLINICAS      *
 ********************/
.clinicas{
    padding-left: 17%;
    padding-top: 7vw;
    padding-bottom: 7vw;
    align-items: flex-start;
    background-color: var(--fondo);
}
.clinicas > h2{
    font-weight: 400;
    font-size: 1.5vw;
    width: 100%;
    padding-right: 50%;
}
.clinicas > h2 > span{
    font-weight: 800;
}
.clinicas > div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clinicas > div > aside > h1{
    width: 100%;
    padding-right: 50%;
    text-align: left;
    margin-top: 2vw;
    padding-bottom: 2vw;
    padding-left: .75vw;
}
.clinicas > div > h2 > span{
    font-weight: 700;
}
.clinicas > div > aside{
    width: 40%;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
}
.clinicas > div > aside > article{
    width: 90%;
    margin-right: 10%;
    padding-left: .75vw;
}
.clinicas > div > aside > article > h3{
    font-size: 1.8vw;
    font-family: var(--trip);
    border-bottom: dotted 1px var(--azul-oscuro);
    padding-bottom: .5vw;
}
.clinicas > div > aside > article > p{
    color: var(--azul-claro);
    padding-top: .5vw;
}
.clinicas > div > aside > ul{
    padding: 0px;
    list-style: none;
    margin-top: 4vw;
}
.clinicas > div > aside > ul > li{
    font-size: 1.1vw;
    font-family: var(--trip);
    color: var(--azul-oscuro);
    line-height: 1.2;
    margin-bottom: 1.2vw;
    padding-left: .5vw;
    border-left: solid 5px var(--fondo);
    cursor: pointer;
}
.clinicas > div > aside > ul > li:hover{
    border-color: var(--azul-oscuro);
}
.clinicas > div > aside > ul > li:nth-child(1){
    border-color: var(--azul-oscuro);
}
.clinicas > div > article{
    width: 60%;
}
.clinicas > div > article > img{
    width: 85%;
    height: 30vw;
}


/*********************
 *     TALENTO      *
 ********************/
.talento{
    padding-top: 9vw;
    padding-bottom: 5vw;
    flex-direction: row;
}
.talento > aside{
    width: 50%;
    padding-left: 3%;
}
.talento > aside > div{
    width: 32vw;
    height: 32vw;
    background-image: url(images/circulo1_hospital_andalucia.png);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.talento > aside > div > div{
    width: 28vw;
    height: 28vw;
    margin-left: 2vw;
    background-image: url(images/circulo2_hospital_andalucia.png);
    background-position: center center;
    background-size: 70%;
    background-repeat: no-repeat;
}
.talento > article{
    width: 40%;
    padding-right: 2%;
    text-align: right;
}
.talento > article > h1{
    width: 100%;
    padding-left: 45%;
    text-align: right;
    padding-bottom: 2vw;
}
.talento > article > p{
    font-size: 1.1vw;
    margin-bottom: 2vw;
    color: var(--azul-claro);
}
.talento > article > p > span{
    font-weight: 800;
}
.talento > article > h3{
    font-size: 1.3vw;
    margin-top: 1vw;
    color: var(--azul-oscuro);
    font-family: var(--trip);
    letter-spacing: .05vw;
    border-right: solid 5px #FFF;
    padding-right: 1vw;
    cursor: pointer;
}
.talento > article > h3:hover{
    border-right: solid 5px var(--azul-oscuro);
}
.talento > article > a{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1vw;
    left: 5%;
}
.talento > article > a > p{
    color: var(--verde-whatsapp);
    font-family: var(--trip);
    font-weight: 800;
    font-size: 1.3vw;
}
.talento > article > a > img{
    height: 3vw
}
.talento > article > h3:nth-child(3){
    border-right: solid 5px var(--azul-oscuro);
}

/*********************
 *       BOLSA       *
 ********************/
.bolsa{
    flex-direction: row;
}
.bolsa > p{
    width: 22%;
    text-align: center;
    text-align: right;
    margin-left: -2%;
}
.bolsa > article{
    width: 44%;
    height: 35vw;
    background-image: url(images/img_diseno_hospital_andalucia.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}
.bolsa > form{
    width: 28%;
    margin-left: 7%;
}
.bolsa > form > h1{
    font-family: var(--playfair);
    font-weight: 400;
    font-size: 3.4vw;
    color: var(--azul-oscuro);
    text-align: left;
    width: 100%;
    line-height: 1;
    letter-spacing:-.1vw;
    padding-bottom: 1vw;
}
.bolsa > form > input, .bolsa > form > textarea{
    width: 65%;
    margin-right: 35%;
    border: 0px;
    background-color: #FFF;
    line-height: 3;
    border-radius: .3vw;
    margin-bottom: .5vw;
    font-family: var(--roboto);
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.2);
    padding-left: 5%;
    padding-right: 5%;
}
.bolsa > form > textarea{
    line-height: 1.2;
    padding-top: 1vw;
}
.bolsa > form > input[type=submit]{
    background-color: var(--turquesa);
    color: #FFF;
    cursor: pointer;
    width: 30%;
    font-weight: 700;
}
.bolsa > form > input[type=submit]:hover{
    background-color: var(--azul-oscuro);
}


/*********************
 *     UNIDADES      *
 ********************/
.unidades > h1{
    padding-left: 35%;
    padding-right: 35%;
}
.unidades > aside{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2vw;
}
.unidades > aside > article{
    width: 27%;
    margin-left: .75%;
    margin-right: .75%;
    margin-bottom: 1.5vw;
    height: 20vw;
    border-radius: 1.5vw;
    background-color: var(--fondo);
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.3);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    /*cursor: pointer;*/
}
.unidades > aside > article:nth-child(1){
    background-image: url(images/fachada.jpg);
}
.unidades > aside > article:nth-child(2){
    background-image: url(images/2022.jpeg);
}
.unidades > aside > article:nth-child(3){
    background-image: url(images/2023_uma.jpeg);
}
.unidades > aside > article:nth-child(4){
    background-image: url(images/2021.jpg);
}
.unidades > aside > article:nth-child(5){
    background-image: url(images/2021.png);
}
.unidades > aside > article:nth-child(6){
    background-image: url(images/luxemburgo.jpg);
}
.unidades > aside > article:nth-child(6) > p{
    color: #FFF;
}
.unidades > aside > article{
    background-size: cover;
}
.unidades > aside > article> a{
    display: block;
}
.unidades > aside > article> p{
    font-size: 3vw;
    color: var(--azul-oscuro);
}
.unidades > aside > article > p{
    /*font-size: 1.6vw;*/
    color: var(--azul-oscuro);
    font-family: var(--trip);
    font-weight: 900;
    color: #FFF;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    padding: 2.5vw;
}
.unidades > aside > article > a{
    position: absolute;
    bottom: 2vw;
    font-size: .8vw;
    border:solid 1px var(--azul-oscuro);
    height: 2vw;
    text-align: center;
    line-height: 2vw;
    width: 2vw;
    display: block;
    border-radius: 3vw;
    display: none;
    background-color: rgba(255,255,255,.7)
}



/*********************
 *       LINEA       *
 ********************/
.linea > div {
    display: flex;
}
.linea > div > aside > h1{
    font-size: .8vw;
    color: var(--azul-oscuro);
    letter-spacing: .4vw;
    text-align: left;
    width: 80%;
    padding-bottom: 2vw;
}
.linea > div > aside > h2{
    font-weight: 400;
    font-size: 1.5vw;
    width: 100%;
    padding-right: 50%;
}
.linea > div > aside > h2 > span{
    font-weight: 800;
    border-bottom: solid 2px var(--turquesa);
}
.linea div > article{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.linea > div > article > p{
    font-size: .8vw;
    width: 3vw;
    background-color: var(--azul-oscuro);
    height:3vw;
    border-radius: 2vw;
    color: #FFF;
    text-align: center;
    line-height: 3vw;
    margin: .5vw;
    cursor: pointer;
}
.linea > div > article > p:hover{
    background-color: var(--turquesa);
}

/*********************
 *      HISTORIA     *
 ********************/
.historia{
    background-color: var(--fondo);
}
.historia > aside{
    width: 100%;
}
.historia article{
    width: 50%;
    height: 28vw;
    border-radius: 1.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #FFF;
    padding-left: 5%;
    padding-right: 2.5%;
}
.historia article > div:nth-child(1){
    width: 55%;
    padding-right: 5%;
}
.historia article > div:nth-child(2){
    width: 45%;
    height: 20vw;
    border-radius: 1.5vw;
    background-size: cover;
    background-position: center center;
}
.historia article > div:nth-child(1) > h3{
    color: var(--turquesa);
    font-family: var(--trip);
    font-size: 2vw;
    font-weight: 900;
    padding-bottom: .5vw;
}
.historia article > div:nth-child(1) > h2{
    font-weight: 400;
    font-family: var(--trip);
    color: #000;
    padding-bottom: 1vw;
}

/*********************
 *  CERTIFICACIONES  *
 ********************/
.certificaciones > h1{
    /*font-family: var(--playfair);*/
    color: var(--turquesa);
    /*font-weight: 400;*/
    font-size: 3.5vw;
    letter-spacing: -.1vw;
    text-align: left;
    width: 100%;
    padding-left: 39%;
    padding-right: 39%;
    padding-top: 2vw;
    padding-bottom: 2vw;
}
.certificaciones > aside{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vw;
}
.certificaciones > aside > article{
    width: 20vw;
    height: 13vw;
    background-position: center center;
    background-size: auto 60%;
    background-repeat: no-repeat;
}

/*********************
 *      FOOTER       *
 ********************/
footer{
    background-color: var(--fondo);
    display: flex;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 7vw;
    padding-bottom: 7vw;
}
footer > iframe{
    width: 37%;
    height: 25vw;
    border:0px
}
footer > form{
    width: 30%;
    padding-left: 6%;
    padding-right: 6%;
}
footer > form > h3{
    font-family: var(--playfair);
    color: var(--azul-oscuro);
    font-weight: 500;
    font-size: 2.3vw;
    letter-spacing: -.1vw;
    line-height: .8;
    margin-bottom: 2vw;
}
footer > form > input, footer > form > textarea{
    width: 100%;
    border: 0px;
    background-color: #FFF;
    line-height: 3;
    border-radius: .3vw;
    margin-bottom: .5vw;
    font-family: var(--roboto);
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.2);
    padding-left: 5%;
    padding-right: 5%;
}
footer > form > textarea{
    line-height: 1.2;
    padding-top: 1vw;
}
footer > form > input[type=submit]{
    background-color: var(--turquesa);
    color: #FFF;
    cursor: pointer;
    width: 30%;
    font-weight: 700;
}
footer > form > input[type=submit]:hover{
    background-color: var(--azul-oscuro);
}
footer > article{
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-right: 2%;
}
footer > article > img{
    width: 35%;
    margin-bottom: 3vw;
}
footer > article > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer > article > div > p{
    text-align: right;
    font-size: 1.2vw;
    font-family: var(--trip);
}
footer > article > div > ul{
    padding: 0px;
    list-style: none;
    margin-left: 3vw;
}
footer > article > div > ul > li{
    font-size: 1.2vw;
    color: var(--azul-foso);
    margin-bottom: 1vw;
    margin-top: 1vw;
}

.quienes-somos > div > p, .quienes-somos > div > ul > li > p, .clinicas > div > aside > article > p, .talento > article > p, .bolsa > p, .historia article > div:nth-child(1) p, .servicio > aside > p, .servicio > div > p{
    text-align: justify;
}

a{
    text-decoration: none;
    color: inherit;
}

@media (max-width: 480px){
    .tope{
        width: 100%;
        height: 80px;
    }
    .menu{
        padding-top: 5vw !important;
        padding-right: 5% !important;
        padding-left: 5% !important;
        display: flex;
        top: 80px;
        background-color: #FFF;
        display: none;
    }
    .menu > nav{
        width: 100%;
        border:0px;
        height: 100%;
        /*background-color: #FA0;*/
        /*flex-direction: column !important;*/
    }
    .menu > nav > aside{
        width: 50%;
        padding: 0px;
    }
    .menu > nav > aside{
        justify-content: flex-start;
    }
    header{
        justify-content: space-between;
        height: 80px;
        top: 0px;
        background-color: #FFF;
    }
    header > article > p{
        font-size: 3vw !important;
    }
    header > a{
        width: 120px;
    }
    header > nav{
        display: none;
    }
    header > a > img{
        height: 80% !important;
        width: auto !important;
    }
    h1{
        font-size: 10vw !important;
        width: 100% !important;
        padding: 0px !important;
        margin-bottom: 5vw !important;
        /*text-align: center !important;*/
    }
    h2{
        font-size: 5vw !important;
        padding: 0px !important;
        margin-bottom: 4vw;
    }
    h3{
        font-size: 4vw !important;
    }
    p{
        font-size: 4vw !important;
    }
    li{
        font-size: 4vw !important;
    }
    section{
        flex-direction: column !important;
        padding-top: 15vw !important;
        padding-bottom: 15vw !important;
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
    section > div{
        flex-direction: column !important;
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
    }
    section > aside{
        flex-direction: column !important;
        display: flex;
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
    }
    section > div > aside, .clinicas > div > article{
         width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
    }
    img{
        width: 100% !important;
        height: auto !important;
    }
    .inicio{
        height: auto;
    }
    .inicio > iframe{
        width: 200%;
    height: 100vw;
    }
    .banner{
        padding: 0px !important;
    }
    .quienes-somos > aside > article > h2{
        font-size: 8vw !important;
    }
    .quienes-somos > aside > article > h3{
        font-size: 5vw !important;
    }
    .quienes-somos > aside > article > p{
        font-size: 5vw !important;
    }
    .quienes-somos > aside{
        flex-direction: row !important;
        margin-top: 8vw !important;
    }
    .quienes-somos > aside > article {
        width: 43vw;
        height: 50vw;
    }
    .frase > a{
        font-size: 4vw;
        letter-spacing: .3vw;
        padding: 2vw;
        padding-left: 4vw;
        padding-right: 4vw;
        border-radius: 7vw;
    }
    .clinicas > div > aside > article > p{
        padding-top: 4vw;
    }
    .servicios > aside > a{
        width: 100%;
        height: auto;
        padding: 6vw;
        margin-bottom: 3vw;
    }
    .servicios > aside > a > div{
        width: 14vw;
        height: 14vw;
    }
    .servicios > aside > a > p{
        position: relative;
        bottom: 0px;
        margin-top: 5vw;
        height: 8vw;
        width: 8vw;
        line-height: 8vw;
        border-radius: 9vw;
    }
    .talento > aside{
        margin-bottom: 4vw !important;
    }
    .talento > aside > div{
        width: 80vw;
        height: 80vw;
    }
    .talento > aside > div > div{
        width: 76vw;
        height: 70vw;
    }
    .talento > article{
        padding: 0px;
        width: 100%;
    }
    .talento > article > a > img{
        width: auto !important;
        height: 5vw;
    }
    .bolsa > form, footer > form{
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .bolsa > form > input, .bolsa > form > textarea, footer > form > input, footer > form > textarea{
        width: 100%;
        margin-bottom: 2vw;
        font-size: 4vw;
    }
    .bolsa > p{
        width: 100%;
        margin-top: 4VW;
    }
    .bolsa > article{
        width: 100%;
        height: 70VW;
        margin-top: 5VW;
    }
    .unidades > aside, .certificaciones > aside{
        flex-wrap: wrap;
        flex-direction: row !important;
    }
    .unidades > aside > article{
        width: 48%;
        height: 40VW;
    }
    .linea > div > article > p{
        width: 7vw;
        height: 7vw;
        line-height: 7vw;
        border-radius: 7vw;
    }
    .certificaciones > aside > article{
        width: 25vw;
        height: 25vw;
    }
    footer{
        flex-direction: column-reverse;
        padding-top: 15vw;
        padding-bottom: 15vw;
        padding-right: 10%;
        padding-left: 10%;
    }
    footer > iframe {
        width: 100%;
        height: 65vw;
        margin-top: 5vw;
    }
    footer > form > h3{
        margin-top: 5vw;
        font-size: 5vw !important;
    }
    footer > article{
        width: 100%;
        align-items: center;
        padding: 0px;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }
    footer > article > img{
        width: 30% !important;
    }
    footer > article > div{
        flex-direction: column;
    }
    footer > article > div > ul{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 70%;
        margin-top: 4vw;
    }
    footer > article > div > p{
        text-align: center;
    }
    footer > article > div > ul > li{
        font-size: 6vw !important;
    }
    .servicio > aside{
        padding-top: 5vw !important;
    }
    .servicio > aside > h1{
        padding-bottom: 3vw !important;
    }
    .servicio > h4{
        font-size: 6vw;
    }
    .servicio > article{
        width: 100%;
        height: auto;
    }
    .servicio > article > div{
        height: 48vw;
    }
    .servicio > nav{
        flex-direction: column;
    }
    .servicio > nav > a{
        font-size: 3.5vw;
        width: 100%;
        padding-bottom: 2vw;
        padding-top: 2vw;
        border-bottom: solid 1px rgba(0,0,0,.3);
    }
    .servicio > nav > a::before{
        content: "» ";
    }
    .historia article{
        height: auto;
        flex-direction: column;
    }
    .historia article > div:nth-child(1){
        padding: 5%;
        width: 100%;
    }
    .historia article > div:nth-child(2){
        width: 90%;
        height: 40vw;
    }
}