@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

body {
  background: #f1f1f1;
}

/* formulario*/

.base{
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

/*informacion contacto*/
.cantact_info::before{
  content: '';
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;

  background: #FEED4E;
  opacity: 0.9;
}

.cantact_info{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-image: url('../img/fondo.jpg');
  background-size: cover;
  background-position: center;
}

.info_title,
.info_items{
  position: relative;
  z-index: 2;

}

.info_title{
  margin-bottom: 60px;
}

.fa-user-circle{
  font-size: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.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;
}

.fa-envelope{
  font-size: 30px;
  margin-right: 10px;
}

.fa-mobile{
  font-size: 40px;
  margin-right: 15px;
  margin-left: 3px;
}

/* formulario de contacto*/
form.form_contact{
  
  padding: 30px 40px;
  /*background-color: black;*/
}

form.form_contact h2{
  font-size: 25px;
  font-weight: 600;
 /* color: #FEED4E;*/
  color: #303030;
  margin-bottom: 30px;
}

form.form_contact .user_info{
  /*color: #FEED4E;*/
  display: flex;
  flex-direction: column;
}
form.form_contact label{
  font-weight: 600;
}

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: 'Poppins', sans-serif;
  color: #5A5A5A;
  font-size: 14px;
  font-weight: 400;
}
form.form_contact textarea{
  max-width: 100%;
  min-width: 100%;
  max-height: 90px;
}
form.form_contact input[type="submit"]{
  width: 180px;
  background :#FEED4E;
  padding: 10px;
  border: none;
  border-radius: 25px;

  align-self: flex-end;

  color: black;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
form.form_contact input[type="submit"]:hover{
  background: 
}
/* 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: 'Poppins', sans-serif;
  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;

  float: right;
}

.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;
}



/* video*/
.modal-dialog {
     max-width: 800px;
     margin: 30px auto;
  }

.modal-body {
  position:relative;
  padding:0px;
}
.close {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}
footer {
  background-color: #DBDBDB;
  color: black;
  padding-top: 2rem;
  

}

hr.light {
  align-self: center;
  border-top: 1px solid black;
  width: 100%;
  margin-top: .8rem;
  margin-bottom: 1rem;
}
footer a {
  color: black;
}
hr.light-100
{
  border-top: 1px solid black;
  width: 100%;
  margin-top: .8rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {

.cantact_info::before{
  content: '';
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;

  background: #FEED4E;
  opacity: 0.9;
}
.cantact_info{
  align-items: center;
  justify-content: center;
 background-image: url('../img/fondo.jpg');
  background-size: cover;
  background-position: center;
}

.info_title,
.info_items{
  position: relative;
  z-index: 2;

}

.info_title{
  margin-bottom: 60px;
}

.fa-user-circle{
  font-size: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.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;
}

.fa-envelope{
  font-size: 30px;
  margin-right: 10px;
}

.fa-mobile{
  font-size: 40px;
  margin-right: 15px;
  margin-left: 3px;
}

/* formulario de contacto*/
form.form_contact{
  
  padding: 30px 40px;
  /*background-color: black;*/
}

form.form_contact h2{
  font-size: 25px;
  font-weight: 600;
 /* color: #FEED4E;*/
  color: #303030;
  margin-bottom: 30px;
}

form.form_contact .user_info{
  /*color: #FEED4E;*/
  display: flex;
  flex-direction: column;
}
form.form_contact label{
  font-weight: 600;
}

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: 'Poppins', sans-serif;
  color: #5A5A5A;
  font-size: 14px;
  font-weight: 400;
}
form.form_contact textarea{
  max-width: 100%;
  min-width: 100%;
  max-height: 90px;
}
form.form_contact input[type="submit"]{
  width: 180px;
  background :#FEED4E;
  padding: 10px;
  border: none;
  border-radius: 25px;

  align-self: flex-end;

  color: black;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
form.form_contact input[type="submit"]:hover{
  background: 
}

}



/****Separators****/

.sep__1 {
    height: 29px;
}
