body{
	background-image: url(../imagenes/misionvision.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.ok {
  text-align: center;
  width: 100%;
  padding: 12px;
  background-color: #68FF33;
  color: #fff
}
.formulario{
	background: rgba(0,0,0,.5);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0,0,0,0.568);
	color: white; 
}
.formulario select{
  color: white; 
}

.formulario input{
  color: white; 
}

.formulario textarea{
  color: white; 
}
.form-control{
	background: rgba(0,0,0,.5);
	border-style: none;

}
.form-control::placeholder {
	color: white;
}
.ingresar{
	background: #222A3F;
	padding: 10px;
	font-size: 16px;
	font-weight: 700!important;
	color: white;
	box-shadow: 0 0 30px rgba(0,0,0,0.568);
	transition: 0.5s ease-in;
}
.ingresar:hover {
	color: white;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background-color: #000000;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background-color: #000000;
  height: 90px;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1dc8cd;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #000000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #FFC300;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1dc8cd;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 100px 0;
  overflow: hidden;
  
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1dc8cd;
}


#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  background: #fff;
  color: #000000;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #000000;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #000000;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}
#contact .info h6 {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 16px;
}
#contact .formT{
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  background: #FAD7A0;
}
#contact  h6 {
  font-size: 40px;
  line-height: 60px;
  font-style: italic;
  text-align: center;
  font-weight: bold;
}
#contact .form h6 {
  font-size: 24px;
  line-height: 26px;
  font-style: italic;
  text-align: center;
}

#accion{
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  font-size: 18px;
  width: 80px;
  height: 60px;
  
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #fff;
}

#contact .php-email-form button[type="submit"] {
  background: linear-gradient(45deg, #2BC0E5, #2BC0E5);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .php-email-form button[type="submit"]:hover {
  cursor: pointer;
}

#contact1 {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 100px 0;
  overflow: hidden;
  
}

#contact1 .contact1-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1dc8cd;
}


#contact1 .contact1-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact1 .social-links {
  padding-bottom: 20px;
}

#contact1 .social-links a {
  font-size: 18px;
  background: #fff;
  color: #000000;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact1 .social-links a i {
  line-height: 0;
}

#contact1 .social-links a:hover {
  background: #000000;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact1 .info i {
  font-size: 32px;
  color: #000000;
  float: left;
  line-height: 0;
}

#contact1 .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}
#contact1 .info h6 {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 16px;
}
#contact1 .formT{
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  background: #FAD7A0;
}
#contact1  h6 {
  font-size: 40px;
  line-height: 60px;
  font-style: italic;
  text-align: center;
  font-weight: bold;
}
#contact1 .form h6 {
  font-size: 24px;
  line-height: 26px;
  font-style: italic;
  text-align: center;
  margin-left: 180px;
  position: relative;
}

#contact1 .card {

  margin-left: 70px;
  position: relative;
}






#accion{
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  font-size: 18px;
  width: 80px;
  height: 60px;
  
}


#card{
  margin-left: 180px;
  position: relative;
  top: -100px; 

}

#ingresar{
 
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  top: -40px;
  
}
#contact1 .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact1 .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact1 .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact1 .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact1 .php-email-form input, #contact1 .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact1 .php-email-form input::focus, #contact1 .php-email-form textarea::focus {
  background-color: #fff;
}

#contact1 .php-email-form button[type="submit"] {
  background: linear-gradient(45deg, #2BC0E5, #2BC0E5);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact1 .php-email-form button[type="submit"]:hover {
  cursor: pointer;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #BFC9CA;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #000000;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #333;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #fff;
}



