#home{
	padding-top: 17%;
	background: url(../imgs/home-bg.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	min-height: 100vh;
    padding-bottom: 20px;
}
header{
	display: block;
	position: absolute;
	top: 15px;
	background: rgba(255,255,255,.10);
	padding: 8px 5%;
	width: 100%;
	-webkit-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.06);
	-moz-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.06);
	box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.06);
    z-index: 20;
}
body{
	font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}
p{
	line-height: 1.2;
	margin: 0;
}
#logo{
	display: inline-block;
}
.menu{
	float: right;
}
#fb{
	display: inline-block;
	float: right;
	padding-top: 18px;
	padding-left: 1rem;
}
.blanco{
	color: #ffffff;
}
.azul{
	color: #071689;
}
.celeste{
	color: #009bde;
}
.big{
	font-size: 4rem;
}
h2{
    font-size: 2.5rem;
}
.subtitulo{
	font-size:1.9rem;
}
.texto{
    font-size: 1.5rem;
}
.text-right{
	text-align: right;
}
.text-center{
    text-align: center;
}
.row-home{
	padding: 0 3% 20%;
	width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.text-home{
	max-width: 55%;
	overflow: hidden;
	display: inline-block;
}
form{
    margin-top: 40px;
}
input, textarea {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    font-size: 1rem;
    color: #444444;
    padding: 10px 0;
}
textarea{
    height: 126px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="subject"], textarea{
    float: left;
    margin-bottom: 10px;
    padding-left: 3%;
    width: 100%;
    border-radius: 0;
}
input[type="submit"] {
    background-color: #009bde;
    border: 1px solid #009bde;
    color: white;
    padding: 10px 30px;
    text-align: center;
    line-height: 1;
    font-size: 1.1rem;
    cursor: pointer;
    -webkit-appearance: none;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 8px;
    transition:.5s;
    border-radius: 0;
}
input[type="submit"]:hover{
    background-color: #f4b2dc;
    border: 1px solid #f4b2dc;
}
input:focus, textarea:focus {
    outline: none !important;
    border:1px solid #f4b2dc;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #007bff;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #007bff;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #007bff;
}
:-moz-placeholder { /* Firefox 18- */
  color: #007bff;
}
.politicas{
    text-align: right;
    color: #ffffff;
    margin-bottom: 29px;
    margin-right: 5%;
    text-decoration: none;
    float: right;
    font-size: 1.1rem;
}
/*###################################
MENU
############################################
/*----- Toggle Button -----*/
.toggle-nav {
    display:none;
}
 
/*----- Menu -----*/
@media screen and (min-width: 860px) {
    
}
 
.menu ul {
    display:inline-block;
    margin: 0;
    padding-top: 20px;
}
 
.menu li {
    margin:0 1rem;
    float:left;
    list-style:none;
}

.menu a{
    color: #ffffff; 
    font-size: 1.3rem;
    line-height: 1.2;
    overflow: hidden;
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    text-decoration: none;
}
.menu a:hover{
    color: #f4b2dc;
}
#active-page:after{
    content:"";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    border-top: 6px solid #f4b2dc;
}
 
/*----- Responsive -----*/
@media screen and (max-width: 1150px) {
    .wrap {
        width:90%;
    }
}
 
 
@media screen and (max-width: 1090px) {

    .menu {
        position:relative;
        display:inline-block;
        box-shadow:0px 1px 1px rgba(0,0,0,0.15);
        border-radius:3px;
        background:#303030;
        margin-top: 7px;
    }
 
    .menu ul.active {
        display:none;
    }
 
    .menu ul {
        position:absolute;
        top:130%;
        right:0px;
        padding:13px 22px;
        box-shadow:0px 1px 1px rgba(0,0,0,0.15);
        border-radius:3px;
        background:#ffffff;
    }
 
    .menu ul:after {
        width:0px;
        height:0px;
        position:absolute;
        top:0%;
        right:16px;
        content:'';
        transform:translate(0%, -100%);
        border-left:7px solid transparent;
        border-right:7px solid transparent;
        border-bottom:7px solid #ffffff;
    }
 
    .menu li {
        margin:5px 0px 20px 0px;
        float:none;
        display:block;
    }
 
    .menu a {
        display:block;
        color: #2196F3;
        line-height: 1;
    }
    .menu a:hover{
        color: #2196F3;
    }
 
    .toggle-nav {
        padding:14px;
        float:left;
        display:inline-block;
        box-shadow:0px 1px 1px rgba(0,0,0,0.15);
        border-radius:3px;
        background:#ffffff;
        text-shadow:0px 1px 0px rgba(0,0,0,0.5);
        color:#777;
        font-size:1.3rem;
        transition:color linear 0.15s;
    }
 
    .toggle-nav:hover, .toggle-nav.active {
        text-decoration:none;
        color:#2196F3;
    }
}
/*###################################
MENU ENDS
############################################*/
footer{
    background-color: #f4b2dc;
    height: 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.holder{
    min-height: 100vh;
    position: relative;
    overflow: auto;
}
#quienes{
    background-color: #007bff;
}
#servis{
    background-color: #009bde;
}
#contacto{
    background-color: #162490;
}
.content-quienes{
    padding: 20% 0 20px;
    z-index: 10;
    position: relative;
}
.blue-box{
    background-color: #007bff;
    padding-top: 15px;
    padding-bottom: 15px;
}
.pink-underline{
    border-bottom: 5px solid #f4b2dc;
}
.quienes-bg{
    position: absolute;
    top: 17%;
    right: 50px;
    max-width: 68%;
    z-index: 5;
}
.mt20{
    margin-top: 60px;
}
.pb15{
    padding-bottom: 15%;
}
.row{
    padding-left:10px;
    padding-right: 10px;
}
.content-servicios{
    max-width: 55%;
    padding: 50px;
    position: relative;
    margin-bottom: 10%;
}
.content-servicios:before{
    content: '';
    width: 60px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.content-servicios:after{
    content: '';
    width: 60px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
ul.servis{
    color: #071689;
    font-size: 1.1rem;
    padding-left: 24px;
    display: inline-block;
    margin-right: 20px;
    max-width: 50%;
}
.content-form{
    width: 100%;
    padding: 50px;
    position: relative;
    margin-bottom: 13%;
}
.content-form:before{
    content: '';
    width: 60px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.content-form:after{
    content: '';
    width: 60px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
/*###################################
MEDIA QUERYS
############################################*/
/* Small only */
@media screen and (max-width: 39.9375em) {
    .row-home{
        padding: 0 20px 20%;
    }
    .text-home{
        width: 100%;
        max-width: 100%;
        padding-top: 30%;
        text-align: left;
    }
    .big{
        font-size: 2.8rem;
    }
    .subtitulo{
        font-size:1.3rem;
    }
    h2{
        font-size: 1.9rem;
    }
    .texto{
        font-size: 1rem;
    }
    .content-quienes{padding-top: 40%;}
    .content-servicios{
        max-width: 100%;
        padding: 50px 15px;
    }
    ul.servis{
        margin-right: 10px;
        font-size: 1rem;
    }
    .content-form{
        padding: 50px 10px;
    }
}

/* Medium and up */
@media screen and (min-width: 40em) {}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .content-servicios{
        max-width: 70%;
    }
    .content-form{
        padding: 30px;
    }
}

/* Large and up */
@media screen and (min-width: 64em) {}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {