@charset "UTF-8";
.clear {
	clear: both;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

img {
	width: 100%;
	height: auto;
}

button, a {
	cursor: pointer;
}

a {
	align-items: flex-start;
	vertical-align: middle;
	line-height: 3.7em;
	text-decoration: none;
}
#menu{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.logo{
    height: auto;
    max-width: 380px;
    flex: auto;
    margin-block: 0;
    display: flex;
    align-items: center;
}
.logo a{
    width: auto;
    height: 100%;
}
.logo img{
    margin-block: auto;
    width: auto;
    height: 90px;
}
#nav{
    width: 50%;
    margin-inline: 40px;
    font-family: 'rubikmedium';
    font-size: .8em;
    display: flex;
    justify-content: space-around;
}
#menu a{
    color: #FFF;
    clear: none;
}
#menu a:hover{
    color: #e46054;
    clear: none;
}
.card{
    width: 90%;
    padding: 0 5%;
    background-image: url(img/bg_01.png);
    background-position: bottom;
    background-repeat: no-repeat;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}
.service{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    justify-content: space-evenly;
}
.card_active{
    width: calc(33% - 80px);
    height: 100%;
    max-height: 250px;
    min-width: 250px;
    min-height: 250px;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0px 10px 10px rgba(136, 136, 136, 0.23);
    text-align: center;
    margin: 30px;
    padding: 0 10px;
    color: #515254;
    font-family: 'rubikbold';
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card_active p{
    text-align: center;
    font-size: 2em;
}
.card_active img{
    position: static    ;
    width: 50%;
    max-width: 100px;
    max-height: 100px;
    display: none;
}
.card_active:hover{
    background-color: #e46054;
    color: #FFF;
    font-family: 'rubikmedium'!important;
}
.tittle{
    width: auto;
    align-self: flex-start;
}
.tittle p{
    width: auto;
    color: #FFF;
    font-size: 3em;
    border-top: 6px solid #e46054;
    font-family: 'rubikmedium';
    margin-block-end: 20px;
    
}
.nosotros{
    display: flex;
    flex-direction: row;
}
.nosotros .info{
    width: 50%;
    margin: 0 5% 0 5%;
    display: flex;
    flex-direction: column;
}
.info .text{
    font-family: 'rubikregular';
    font-size: 1.5em;
}
.nosotros .image{
    width: 40%;
    margin: 0;

}
.contacto{
    background-color: black;
    display: flex;
}
.contacto .info{
    width: 90%;
    margin: 0 5% 0 5%;
    display: flex;
    flex-direction: column;
}
.btns{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.card_info{
    width: 100%;
    height: 100%;
    max-height: 250px;
    min-width: 250px;
    min-height: 250px;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0px 10px 10px rgba(136, 136, 136, 0.23);
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 25px 0;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.card_info img{
    width: 30%;
    height: auto;
    max-width: 113px;
    max-height: 100px;

}
.card_info p{
    font-family: 'rubikbold';
    text-align: center;
    font-size: 2em;
    color: #e46054;
    line-height: 1.2em;
    margin: 32px 0 0 0;
}
.cnt_form{
    width: 60%;
    margin: 5%;
    display: flex;
    flex-direction: column;
    background-color: #e8e8e8;
    border-radius: 25px;
    align-items: center;
}
.cnt_form p{
    align-self: flex-start;
    margin-left: 10%;
    font-size: 3em;
    font-family: 'rubikbold';

}
.cnt_form p>span{
    font-size: .8em;
    font-family: 'rubikregular';
}
.cnt_form form{
    width: 80%;
    min-width: 380px;
    display: flex;
    flex-direction: column;
}
form input, textarea{
    height: 3em;
    margin: 0 0 20px 0;
    padding: 0 15px;;
    font-size: 1em;
    font-family: 'rubikbold';
    border: none;
    border-radius: 5px;
}

form textarea{
    padding: 15px 15px 0 15px;
}
form .card_btn{
    background-color: #e46054;
    color: #fff;
    font-family: 'rubikbold';
    border: none;
    font-size: 1.2em;
    padding: 10px 20px;
    box-sizing: border-box;
    line-height: normal;
    border-radius: 5px;

}
footer{
    height: 55px;
    text-align: center;
    font-size: 1em;
    font-family: 'rubikregular';
    color: #FFF;
    background-color: #e46054;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}