@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Open Sans', sans-serif;
	scroll-behavior: smooth;
	
}
a{
	text-decoration: none;
}


/* nav */
nav {
  width: 100%;
  height: 80px;
  background: #fff;
  border-bottom: 1px solid transparent;
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
  
  top: 0;
  z-index: 100;
  transition: ease-in-out 0.5s;
}

.nav {
  display: flex;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  align-items: center;
  padding: 0 40px;
}

.nav .logo {
  height: 70px;

}

.nav .logo img {
  height: 100%;
  vertical-align: top;
}

.enlaces-header {
  font-weight: 300;
  transition: ease-in-out 0.5s;
  margin-left: 550px;
}
.nav  .bt {
	display: inline-block;
	padding: 9px 6px;
	text-align: center;
	color: #28274b;
	background-color: transparent;
	border: 2px solid #1a194d;
	font-size: 1.5rem;
	
	border-radius: 4rem;
	align-items: center;
		
}
.nav  .bt:hover{
	background-color: #100c5f;
	color: #fff;
}

.nav .enlaces-header a {
  color: darkblue;
  font-size: 2rem;
  margin-left: 30px;
letter-spacing: 0.3rem;
}

.hamburguer {
  width: 60px;
  height: 80px;
  display: none;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  transition: color   0.5s ease-in;


}

.hamburguer>i {
  font-size: 35px;
  line-height: 80px;

}

header::before {
  content: "";
  display: block;
  margin-bottom: 80px;
}
@keyframes animat {
  0% {
      transform: scale(0);
  }

  100% {
      transform: scale(1);
  }
}

/* end nav */




/* footer */

footer {
    background: #f2f2f2;
    padding: 40px 30px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}


.partFooter {
    width: 19%;
    text-align: center;
}

.partFooter h4 {
    color: #1d273b;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.partFooter a {
    display: block;
    text-decoration: none;
    color: #111111;
    font-weight: 300;
    transition: color .3s ease-in-out;
    margin-bottom: 13px;
	font-size: 1.8rem;
}


.partFooter a:hover {
    color: #1d2969;
}

.partFooter img {
    width: 70%;
	height: 67%;
}

.social-media i {
    font-size: 25px;
    display: inline-block;
    color: #9a9b9c;
    border: 1px solid #adb6c7;
    border-radius: 50%;
    width: 35px;
    height: 38px;
    line-height: 36px;
    cursor: pointer;
    margin-top: 8px;
    text-align: center;
    transition: all ease-in-out .3s;
    margin-right: 5px;
}

.social-media i:hover {
    color: #fff;
    background-color: #1d2969;
    border-color: #1d2969;
}
/* end footer */
.aviso {
	width: 100%;
	height: 20px;
	
	background: #f2f2f2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.aviso a{
	margin-top: 5px;margin-top: 5px;
	text-align: center;
	font-size: 2rem;
	color: #111111;
	margin-top: 20px;
}
.aviso a:hover {
    color: #1d2969;
}

.creado {
	width: 100%;
	height: 20px;
	
	background: #f2f2f2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.creado a{
	margin-top: 5px;margin-top: 5px;
	text-align: center;
	font-size: 1.7rem;
	color: #111111;
	margin-top: 20px;
}
.creado a:hover {
    color: #1d2969;
}






@media screen and (max-width:600px) {
	
  .nav  .bt {
   
    padding: 5px 3px;
    font-size: 1rem;      
  }
  .contact .form_wrap{
    width: 350px;
    height: 650px;
    margin: 15px auto;
    display: block;
    
  }
  .contact .form_wrap form.form_contact input,
  .contact .form_wrap form.form_contact textarea{
  

font-size: 2rem;

}

.contact .form_wrap form.form_contact textarea{
  max-width: 100%;
  min-width: 100%;
  max-height: 180px;
}

  .contact .form_wrap .cantact_info{
    width: 100%;
    position: relative;
    
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
  }

  /* Formulario de contacto*/
  .contact .form_wrap form.form_contact{
  width: 100%;
  padding: 40px 40px;
}
.contact .form_wrap .cantact_info .info_title{
  margin-bottom: 15px;
}
.contact .form_wrap .cantact_info  .info_title h2{
  margin-top: 15px;
  font-size: 3rem;
  text-align: center;
}

.contact .form_wrap .cantact_info .info_items p{
  
  align-items: center;
text-align: justify;
padding: 0px 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}


    .nav {
        padding: 0 10px;
    }
	
    .enlaces-header {
        position: absolute;
       background: #f2f2f2;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        clip-path: circle(0.0% at 100% 0);
		
    }
    .nav .enlaces-header a {
      color: #1a194d;
      font-size: 3rem;
      
    }
    
    .nav .menudos {

        -webkit-clip-path: circle(150% at 100% 0);
        clip-path: circle(150% at 100% 0);

    }

    .nav .hamburguer {
        display: block;
		color: #1a194d;
		
    }
    

    /* Footer */
    .partFooter {
        width: 95%;
        margin-bottom: 40px;
    }

    
}



















.ubication{
    background: #28274b;   
    width: 100%;
    height: 90vh;
    align-items: center;
    overflow: hidden;

}
.ubication h1{
    font-size: 6rem;
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 196, 0, 0.774);

}
 
.wrapper{
    max-width: 1100px;
    width: 100%;
    margin: 50px auto;
    padding: 25px 30px 30px 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  }
  
  .wrapper nav{
    position: relative;
    width: 80%;
    height: 50px;
    display: flex;
    align-items: center;
  }
  .wrapper nav label{
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    color: #1a194d;
    font-size: 25px;
    border-radius: 5px;
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  .wrapper nav label:hover{
    background: #2120575d;
  }
  #metepec:checked ~ nav label.metepec,
  #tijuana:checked ~ nav label.tijuana{
    color: #fff;
  }
  
  nav .slider{
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    bottom: 0;
    z-index: 0;
    border-radius: 5px;
    background: #1a194d;
    transition: all 0.3s ease;
  }
  input[type="radio"]{
    display: none;
  }
  #tijuana:checked ~ nav .slider{
    left: 50%;
  }
 
  section .content{
    display: none;
    background: #fff;
  }
  #metepec:checked ~ section .content-1,
  #tijuana:checked ~ section .content-2{
    display: block;
  }
  section .content iframe{
    width: 100%;
  }
  







  

/* FORMULARIO =================================== */
.contact{
  width: 100%;
  height: 110vh;
 
 
	background-color: #D1D1D1;

  overflow: hidden;
}

.form_wrap{
  width: 1050px;
  height: 530px;
  margin: 50px auto;
  display: flex;

  background: #28274b;   
  border-radius: 10px;
  
  
}

/* Informacion de Contacto*/

.cantact_info::before{
  content: '';
  width: 100%;
  height: 100%;
display: flex;
  position: absolute;
  top: 0;
  left: 0;

  background: #fff;
  
}

.cantact_info{
  width: 38%;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  
  

}

.info_title,
.info_items{
  position: relative;
  z-index: 2;
 
  
}

.info_title{
  margin-bottom: 30px;
}



.info_title h2{
  font-size: 35px;
  text-align: center;
  color: #201f5f;
}

.info_items p{
  
  align-items: center;
text-align: left;
padding: 5px 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.info_items img{
  padding: 10px 0;
  margin-top: 3px;
  margin-left: 25px;
 position: relative;
  width: 35%;
}




/* Formulario de contacto*/
form.form_contact{
  width: 62%;
  padding: 30px 40px;
}

form.form_contact h2{
font-size: 25px;
font-weight: 600;
color: rgba(255, 196, 0, 0.774);
margin-bottom: 30px;
}

form.form_contact .user_info{
  display: flex;
  flex-direction: column;
}

form.form_contact label{
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
}

form.form_contact input,
form.form_contact textarea{
  width: 100%;
  padding: 8px 0px 5px;
  margin-bottom: 20px;
background-color: #28274b;   
  border: none;
  border-bottom: 2px solid #D1D1D1;
color: #fff;


font-size: 2rem;
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: #323268;
padding: 10px;
border: none;
border-radius: 25px;

  align-self: flex-end;

  color: #fff;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
  background: #201f5f;
}

/* Ventana de errores*/
.modal_wrap{
  width: 100%;
  height: 100vh;
  background: #fff;

  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;
}
