header {
	background-color: var(--color-gray);
	color: var(--color-white);
    max-height: 700px;
    width: 100%;
}

.header_section-top {
	display: flex;
	justify-content: space-between;
    padding: 0 var(--panding);
	border-bottom: 4px solid var(--color-blue);
	width: 100%;
    height: 80px;
    align-items: center;
    align-content: center;
}

.header_h1 {
	width: 30%;
}

.header-nav_ul{
    display: flex;
    justify-content: space-around;
    gap: 30px;
    width: 100%;
}

.header_section-baner {
    background: url(../images/cabecera.jpg) no-repeat center;
	height: 360px;   
}

.section_baner-text{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
    width: 70%;
    height: 100%;
    margin: 0 auto;

    h2{
        font-size: 3rem;
        width: 100%;
    }

    p{
        width: 100%;
    }
}

.header_section-buttom {
    display: flex;
	justify-content: space-between;
    padding: 0 var(--panding);
    align-items: center;
    align-content: center;
    height: 80px;
    input {
        width: 250px;
        height: 30px;
    }
}


/*footer*/

footer {
	background-color: var(--color-blue);
	color: var(--color-white);
	padding: 20px;
	text-align: center;
	height: 10vh;
	width: 100%;
}
