*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body{
    width: 100%;
    background-color: #ece7e7;
    background:linear-gradient(to bottom,#2f2114,#1A0E0B,#ce751c,#502921,#1A0E0B,#ce751c,#1A0E0B);
    min-height: 100vh;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    padding: 0;
    margin: 0;
    padding-top: 160px;
    display: flex;
}

.contenido{
    width: 100%;
    max-width: 1680px;
    min-height: 100vh;
    margin: 10px auto;
}

header{
    width: 100%;
    max-width: 1680px;
    position: fixed;
    top: 0;
}

.encabezado{
    overflow: hidden;
    background: #000;
}

div#marca img{
    width: 150px;
    padding: 5px 20px;
}

nav{
    width: 100%;
    height: 40px;
    border-top: 4px solid burlywood;
    background: #000;
}

.menu-nav{
    width: 100%;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-nav li{
    padding: 5px 20px;
}

.menu-nav a{
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

ul a:hover{
    color: #ccc;
    cursor: pointer;
}

.banner{
    width: 100%;
    background: url(img/ab1.jpg) no-repeat ;
    background-size: 100% 100%;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: gray;
}

.banner h1{
    font-size: 3em;
}


.padre{
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 30px;
    padding-top: 30px;
    /* background: rgb(141, 138, 138); */
	overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.intro{
    margin: 2% 30%;
    text-align: justify;
}



.cantact_info{
    width: 500px;
	border-radius: 10px 10px 10px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cantact_info::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: burlywood;
    opacity: 0.7;
}

.info_title,
.info_items{
    position: relative;
    /* z-index: 2; */
    color: #fff;
}

.info_title{
    margin-bottom: 60px;
}

.info_title span{
    font-size: 100px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
	margin-top: 5px;
}

.info_title h2{
    font-size: 35px;
    text-align: center;
}

.info_items p{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info_items p:nth-child(1) span{
    font-size: 30px;
    margin-right: 10px;
}

.info_items p:nth-child(2) span{
    font-size: 50px;
    margin-right: 15px;
    margin-left: 4px;
}

form.form_contact{
    width: 700px;
    padding: 20px 40px;
    background-color: rgb(177, 134, 77);
    border-radius: 0px 10px 10px 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    color: crimson;
}

form.form_contact h2{
	font-size: 25px;
	font-weight: 600;
    color: silver;
	margin-bottom: 30px;
	text-align: center;
}

form.form_contact .user_info{
    display: flex;
    flex-direction: column;
    color: crimson;

}

form.form_contact label{
    font-weight: 600;
    color: silver;
    
}



form.form_contact input,form.form_contact textarea{
    width: 100%;
    padding: 8px 0px 5px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #D1D1D1;
    font-family: 'Open sans';
	font-size: 14px;
	font-weight: 900;
}

form.form_contact textarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 90px;
}

form.form_contact input[type="submit"]{
    width: 180px;
	background: rgb(87, 2, 2);
	padding: 10px;
	border: none;
	border-radius: 25px;
    align-self: flex-end;
    color: #f1f1f1;
	font-family: 'Open sans';
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
    background: #f1f1f1;
    color: brown;
}

/* Ventana de errores*/
.modal_wrap{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mensaje_modal{
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    width: 400px;
    padding: 30px 20px 15px;
}

.mensaje_modal h3{
    text-align: center;
    font-family: 'Ubuntu';
	font-size: 20px;
	font-weight: 400;
}

.mensaje_modal h3:after{
    content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #C5C5C5;
	margin: 10px 0px 15px;
}

.mensaje_modal p{
    font-size: 16px;
    color: #606060;
}

.mensaje_modal p:before{
    content: "\f00d";
    font-family: FontAwesome;
    display: inline-block;
    color: #E25151;
    margin-right: 8px;
}

#btnClose{
    display: inline-block;
	padding: 3px 10px;
	margin-top: 10px;
	background: #E25151;
	color: #fff;
	border: 2px solid #B14141;
	cursor: pointer;
}

/* MENSAJE EXITOSO*/

.mensaje-exito{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mensaje-exito h1{
    font-size: 35px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.mensaje-exito a{
    display: block;
    padding: 10px 30px;
    background: #4091EC;
    text-decoration: none;
    color: #fff;
}

.mensaje-exito a:hover{
    background: #3371B6;
}

@media screen and (min-width: 556px){
	.cantact_info{
	border-radius: 10px 0px 0px 10px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
}

@media screen and (min-width: 1243px){
	.cantact_info{
	border-radius: 10px 0px 0px 10px;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}
}


footer{
    width: 100%;
    font-family: sans-serif;
    position: fixed;
    bottom: 0;
}

.footer-copy-redes{
    width: 100%;
    background: #000;
    border-top: .5px solid rgb(12, 97, 71);
}

.main-copy-redes{
    width: 100%;
    max-width: 1680px;
    padding: 10px 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-align-items:center;
    align-items: center;
    color: #fff;
}

.main-copy-redes .footer-copy{
    width: 30%;
    padding-left: 5%;
}

.main-copy-redes .footer-redes{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    padding-right: 3%;
}

.main-copy-redes .footer-redes a{
    display: inline-block;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    text-align: center;
    margin: 0 10px 0 10px;
    border: 2px solid greenyellow;
}

.footer-redes{
    display: flex;
    justify-content: flex-end;
}


/* @media screen and (max-width:768px) {

    .apartados{
        width: 100%;
        min-height: 100vh;
        margin-top: 4%;
        color: gray;
    
    }

    h1{
        color:rgb(90, 88, 88);
        width: 65%;
        margin: 0 auto;
        text-align: center;
        }

    .footer-copy-redes{
        width: 100%;
        background: #000;
        border-top: .5px solid rgb(97, 61, 12);
    }
    
    .main-copy-redes{
        justify-content: space-around;
    }
    
    .main-copy-redes .footer-copy{
        width: 50%;
    }
    
    .main-copy-redes .footer-redes{
        width: 30%;
    }
    
}

@media screen and (max-width:600px) {
    .menu-nav{
        color: #fff;
        height: 100%;
        font-size:12px;
    }

    section#cabecera{
        min-height: 250px ;
        display: flex;
        justify-content: center;
        align-items: center;
        color: gray;
    }
    
    .titulo h1{
        width: 90%;
        font-size: 1.7em;
        text-align: center;
    }
    
    .container-card{
        display: flex;
        align-items: flex-start;
        max-width: 1100px;
        min-height: 60vh;
        width: 100%;
        margin-top: 23%;
    }
    
    .card{
        text-align: center;
        margin: 50px 1px 0px 1px;
        font-size: .8em;
    }
}

    @media screen and (max-width:375px) {
        .menu-nav{
            color: #fff;
            font-size:10px;
        }
    
        section#cabecera{
            min-height: 200px ;
            color: gray;
        }
        
        .titulo h1{
            width: 90%;
            font-size: 1.7em;
            text-align: center;
        }
        
        .container-card{
            min-height: 75vh;
            width: 100%;
            margin-top: 20%;
        }
        
        .card{
            text-align: center;
            margin: 50px 1px 0px 1px;
        }
    
        .card .contenido-card p{
            line-height: 1.8;
            color: gray;
            font-size: 12px;
            margin-bottom: 5px;
        }
        
        .card .contenido-card a{
            display: inline-block;
            padding:10px;
            margin-top: 10px;
            text-decoration: none;
            color: black;
            border-radius: 4px;
            transition: all 400ms ease;
            margin-bottom: 5px;
        }

   } */