/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

/* FONTS */
@font-face {
	font-family: 'flexReg';
    src: url(../fonts/Flexo-Regular.ttf);
    font-weight: 100;
}
@font-face {
	font-family: 'flexBold';
    src: url(../fonts/Flexo-Bold.otf);
    font-weight: 100;
}
@font-face {
	font-family: 'PopMedium';
    src: url(../fonts/Poppins-Medium.ttf);
    font-weight: 600;
}
@font-face {
	font-family: 'PopExtraBold';
    src: url(../fonts/Poppins-ExtraBold.ttf);
    font-weight: 800;
}
*{
	border: 0;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
body{
    font-family: 'PopMedium';
}
.back-enf{
    background: url(../images/back_enfermeria.png);
}
.back-far{
    background: url(../images/back_farmacia.png);
}
.back-fis{
    background: url(../images/back_fisioterapia.png);
}
.back-pro{
    background: url(../images/back_protesis.png);
}
.back-lab{
    background: url(../images/back_laboratorio.png);
}
.back{  
    background-size: cover;
    height: 500px;
    width: 100%;
}
.row{
    width: 100%;
    padding: 2rem 0;
}
.r-blanco{
    background: url(../images/fondo_blanco.png);
    background-attachment: fixed;
    background-size: contain;
}
.r-azul{
    background: url(../images/fondo_azul.png);
    background-size: cover;
}
.wrapp{
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}
    .logo{
        position: absolute;
        top: 1rem;
        width: 200px;
    }
    .carrera{
        position: absolute;
        top: 10rem;
    }
        .txt1{
            color: #03C3F4;
            font-size: 31px;
        }
        .txt2{
            color: #fff;
            font-family: 'PopExtraBold';
            font-size: 55px;
        }
        .matricula{
            background-color: #03C3F4;
            border-radius: .5rem;
            color: #fff;
            font-size: 17px;
            margin-top: 1rem;
            padding: .8rem;
            text-align: center;
            width: 250px;
        }
.formulario{
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    padding: 1.5rem;
    text-align: center;
    width: 25%;
    position: absolute;
    top: 3rem;
    right: 9%;
    z-index: 10;
}
    .formulario input, .formulario select{
        background: #ececec;
        border-radius: .3rem;
        font-family: 'PopMedium';
        font-size: 12px;
        padding: 1rem;
        margin-bottom: .5rem;
        width: 100%;
    }
    .boton{
        background: #0049AE!important;
        color: #fff;
        cursor: pointer;
        font-family: 'PopMedium';
        font-size: 15px!important;
        margin-bottom: 0!important;
    }
    .ponte{
        color: #0049AE;
        font-size: 15px;
    }
    .matri{
        color: #03C3F4;
        font-size: 19px;
        margin-bottom: .8rem;
    }
    .cbox{
        display: inline-block;
        font-size: 11px;
        margin-top: .5rem;
        margin-bottom: 2rem;
        text-align: left;
        width: auto!important;
    }

@media screen {
    .formulario{
        position: fixed;
    }
}

.grid-dos{
    display: grid;
    grid-template-columns: 68% 32%;
}
.grid-dos div{
    padding: 1rem;
}
    .anios img{
        width: 400px;
        display: block;
        margin: 0 auto;
    }

.beneficios{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: #fff;
    font-size: 12px;
}
    .beneficios div{
        text-align: center;
        margin-bottom: 2rem;
    }
    .beneficios i{
        font-size: 60px!important;
        margin-bottom: 2rem;
    }
    .porque{
        color: #fff;
        font-size: 35px;
        text-align: center;
        margin-bottom: 2rem;
    }

.locales{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
    .locales li{
        list-style: none;
        font-size: 12px;
        line-height: 2rem;
        color: #0049AE;
    }
    .locales i{
        color: #03C3F4;
    }

iframe{
    display: block;
}
footer{
    background: #0049AE;
    color: #fff;
    font-size: 20px;
    padding: 2rem;
    text-align: center;
}
    footer i{
        font-size: 35px;
        margin: 2rem 2rem 0 2rem;
    }

/*QUERIES*/
@media screen and (max-width: 834px){
    .back{
        padding: 0 1rem;        
    }
    .row{
        padding: 2rem 1rem;
    }
    .grid-dos{
        grid-template-columns: 100%;
    }
    .formulario{
        border-radius: 0;
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
    }
}

@media screen and (max-width: 667px){
    .back{
        height: 260px!important;
    }
    .carrera{
        top: 6rem;
    }
    .txt1{
        font-size: 1rem!important;
    }
    .txt2{
        font-size: 1.5rem!important;
    }
    .matricula{
        font-size: 13px;;
        padding: .5rem;
        width: 180px;
    }
    .anios img{
        width: 100%;
    }
    .beneficios{
        grid-template-columns: 50% 50%;
        padding: 0!important;
    }
    .beneficios div{
        margin-bottom: .5rem!important;
    }
    .porque{
        font-size: 19px;
    }
    .locales{
        grid-template-columns: 100%;
    }
    footer i{
        margin: 1rem 1rem 0 1rem;
    }
}