
* {
    box-sizing: border-box;
  }
  
  html{
    background: url(../img/1.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
 
  }
  
  body {
   
  
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  
  /* Estilos del Menu */
  header
   {
       position: absolute;
       top: 0;
       left: 0;
       padding: 0 100px;
       background: #2794fae3;
       width: 100%;
       
       z-index: 1;
   }
   header .logo
   {
       color:#fff;
       height: 50px;
       line-height: 50px;
       font-size: 24px;
       float: left;
       font-weight: bold;
       position: absolute;
       left: 20px;
   }
   header nav
   {
       float: right;
   }
   header nav ul
   {
       margin: 0;
       padding: 0;
       display: flex;
   }
   header nav ul li
   {
       list-style: none;
       position: relative;
   }
   header nav ul li.sub-menu:before 
   {   
   content: '\f0d7';
   font-family: fontAwesome;
   position: absolute;
   line-height: 50px;
   color: #fff;
   right: 5px;
   }
   header nav ul li.active.sub-menu:before 
   {
        content: '\f0d8';
      
   }
   header nav ul li ul
   {
       position: absolute;
       left: 0;
       background: #1480a9c4;
       border-radius: 25px;
       display: none;
       
   }
    header nav ul li.active ul
    {
        display: block;
      
    }
    header nav ul li ul li
    {
        display: block;
        width: 200px;
    }
   header nav ul li a
   {
       height: 50px;
       line-height: 50px;
       padding: 0 20px;
       color: #fff;
       text-decoration: none;
       display: block;
   }
   header nav ul li a:hover,
   header nav ul li a.active
   {
       color:#fff;
       background: #ffffff00;
       border: 1.5px solid #ffffffd9;
      border-radius: 25px;
   }
   .menu-toggle
   {
       color:#fff;
       line-height: 50px;
       font-size: 24px;
       cursor: pointer;
       display: none;
       text-align: right;
   }
   @media (max-width: 991px)
   {   

   
       header
       {
           padding: 0 20px;
           background: #000000eb;
       }
       .menu-toggle
       {
           display:block;
       }
     
       header nav
       {
           position: absolute;
           width: 100%;
           height:calc(100vh - 50px);
           background: #4bc9ffeb;
           top: 50px;
           left: -100%;
           transition: 0.5s;
       }
       header nav.active
       {
           left: 0;
       }
       header nav ul
       {
           display: block;
           text-align:center;
       }
       header nav ul li a{
           border-bottom: 1px solid rgba(0,0,0,.2);
       }
       header nav ul li.active ul
       {
           position: relative;
           background: rgba(70, 103, 165, 0.86);
           border-radius: unset;
       }
       header nav ul li ul li
       { 
           width: 100%; 
       }
   }

:focus{
    outline: none;
}


/* FORMULARIO =================================== */

.form_wrap{
    width: 80%;
    height: 530px;
    margin: 50px auto;
    display: flex;
    background: rgba(255, 255, 255, 0.527);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* Informacion de Contacto*/

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

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

    background: #4091ec4a;
    opacity: 0.9;
}

.cantact_info{
    width: 38%;
    position: relative;

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

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

}

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

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


/* Redes sociales */
.wrapper{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .share{
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s linear;
  }
  
  .share .fa{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 25px;
  }
  
  .share.facebook{
    background: #3b5998;
  }
  
  .share.twitter{
    background: #55acee;
  }
  
  .share.reddit{
    background: #ff4500;
  }
  
  .share.google{
    background: #dd4b39;
  }
  
  .share.whatsapp{
    background: #4dc247;
  }
  
  .share:hover{
    width: 70px;
  }
  


/* Formulario de contacto*/
form.form_contact{
    width: 100%;
    padding: 30px 40px;
}

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

form.form_contact .user_info{
    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;
    background: #0c739f2b;
    border: none;
    border-bottom: 2px solid #9ebdff;

    font-family: 'Open sans';
	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"]{
    
	background: #4091EC;
	padding: 10px;
	border: none;
	border-radius: 25px;

    align-self: flex-end;

    color: #fff;
	font-family: 'Open sans';
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
    background: #3371B6;
}

/* 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;

	float: right;
}

/* 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;
}