@font-face {
  font-family: avenir;
  src: url(../fonts/AvenirLTStd-Light.otf);
}
.bg-contac2 {
  background-image: url(../img/pexels-photo.jpg);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  padding: 0px;
}
.in-border {
  border: 1px solid rgba(59, 92, 173, 1);
  background: rgb(0, 0, 0, 0);
}
.boton {
  margin-top: 3%;
}

.in-border::-webkit-input-placeholder {
  color: #041e41;
  font-family: avenir, sans-serif;
  font-size: 14px;
}
.in-border:-moz-placeholder {
  /* Firefox 18- */
  color: #041e41;
  font-family: avenir, sans-serif;
  font-size: 14px;
}
.in-border::-moz-placeholder {
  /* Firefox 19+ */
  color: #041e41;
  font-family: avenir, sans-serif;
  font-size: 14px;
}
.in-border:-ms-input-placeholder {
  color: #041e41;
  font-family: avenir, sans-serif;
  font-size: 14px;
}
.mc_contact {
  background: rgb(0, 0, 0, 0);
  border: 0;
}
.modal-body {
  padding-top: 0px;
  padding-bottom: 1px;
}
.pd-0 {
  padding: 0px;
}
.pd-top8 {
  padding-top: 8%;
}
.img-contactanos {
  width: 100%;
  height: 100%;
}
.div-titulo {
  margin-top: 7%;
  width: 100%;
}
.input-email {
  margin-top: 5%;
}
#textarea {
  height: 100%;
}
.div-enviar {
  text-align: right;
}
.div-correo-tel {
  /*padding-top:23%;*/
  text-align: center;
}

.auto-generated-link {
  text-decoration: none;
  color: #041e41;
}
.stilos-span-text {
  font-family: avenir, sans-serif;
  font-size: 14px;
  color: #041e41;
}

/********************************************/
/************** NEW CONTACTO FORM ****************/

.form_wrap {
  /*width: 1050px;*/
  /*height: 530px;*/
  margin: 50px auto;
  display: flex;

  background: #fff;
  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: #4091EC;*/
  opacity: 0.9;
}

.cantact_info {
  width: 38%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("/aero/lib/img/contact.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;
}

/* Formulario de contacto*/
form.form_contact {
  width: 62%;
  padding: 30px 40px;
}

form.form_contact h2 {
  font-size: 25px;
  font-weight: 600;
  color: #303030;
  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;

  border: none;
  border-bottom: 2px solid #d1d1d1;

  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"] {
  width: 180px;
  /*background: #4091EC;*/
  background: #3b5cad;
  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;
}

#names:focus,
#phone:focus,
#email:focus,
#mensaje:focus {
  outline: 0px !important;
  border-bottom: #3b5cad solid 2px;
  transition: 0.5s;
  
}
.div-form {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.c-red {
  color: red;
}
.h2-title {
  text-align:center;
  color:#6CC044 !important;
}

/********************************************/
/********** SOCIAL MEDIA BOTONES ************/

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?i226ha");
  src: url("../fonts/icomoon.eot?i226ha#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?i226ha") format("truetype"),
    url("../fonts/icomoon.woff?i226ha") format("woff"),
    url("../fonts/icomoon.svg?i226ha#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.facebook-left,
.instagram-left,
.twitter-left,
.linkedin-left {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  /*speak: none;*/
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.facebook-left:before {
  content: "\ea90";
}
.instagram-left:before {
  content: "\ea92";
}
.twitter-left:before {
  content: "\ea96";
}
.linkedin-left:before {
  content: "\eaca";
}
.social-bar {
  position: fixed;
  right: 0;
  top: 35%;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 100;
}

a.redes-left {
  color: white;
  text-decoration: none;
  padding: 0.7rem;
  display: flex;
  transition: all 0.5s;
}

.facebook-left {
  background: #2e406e;
}

.twitter-left {
  background: #339dc5;
}

.instagram-left {
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.linkedin-left {
  background: #2678e1;
}

.redes-left:first-child {
  border-radius: 1rem 0 0 0;
}

.redes-left:last-child {
  border-radius: 0 0 0 1rem;
}

.redes-left:hover {
  padding-right: 3rem;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.42);
}

/********************************************/
/**********      MEDIA QUERYS     ***********/

@media (max-width: 575.98px) {
  #textarea {
    margin-top: 5%;
  }
  .boton {
    margin-top: 8%;
  }
  .div-correo-tel {
    padding-top: 20%;
  }
  .contactus {
    margin-left: 3%;
  }
}
