body,
html {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
}

.background-image {
  position: relative;
  width: 100%;
  height: 400px; /* o la altura que prefieras */
  background: url("https://image.contactoibero.mx/lib/fe3811727364047c711475/m/1/2d49b291-4772-4d43-a386-268170a25f69.jpg") no-repeat center center;
  background-size: cover; /* Esto asegura que la imagen cubra toda el área */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: white; /* Color del texto */
  text-align: center; /* Alineación horizontal del texto */
  padding-bottom: 50px;
}
h1 {
  text-shadow: 0 0 20px black;
}
.text-image {
  font-size: 1.5em; /* Ajusta el tamaño de tu texto */
  max-width: 90%; /* Agrega más estilos de texto como necesites */
}
.text-image p {
  margin-bottom: 5px;
}
ul{
  font-size: 1.5em;
}
.universities-header {
  width: 100%;
  height: 180px;
  position: relative;
  background: linear-gradient(135deg, #e00034 50%, #1b1b1b 50%);
  overflow: hidden;
}
.universities-header::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    135deg,
    transparent 49.9%,
    white 49.9%,
    white 50.1%,
    transparent 50.1%
  );
  z-index: 1;
}
.logo {
  position: absolute;
  z-index: 2;
  padding: 20px;
}
.logo-izquierdo {
  left: 30%; /* Alineado a la derecha con 'aire' */
  top: 10%;
  width: 250px;
  height: 130px;
}
.logo-derecho {
  padding: 0 !important;
  right: 25%; /* Alineado a la izquierda con 'aire' */
  top: 0%;
  width: 295px;
  height: 163px;
}
.texto-intro {
  background-color: #fff;
  color: black;
  padding: 40px;
  font-size: 2em;
  text-align: center;
}
.texto-intro p {
  margin: 0;
}

/* Sección de la sesión informativa */
.info-session {
  text-align: left;
  padding-right: 90px;
  margin-top: 40px;
  border-right: #e00034 3px solid;
  margin-bottom: 80px;
}

h2 {
  font-weight: bolder;
  margin-bottom: 40px;
}

.info-session p {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.btn-program {
  background: rgb(93,65,146);
  background: -moz-linear-gradient(69deg, rgba(93,65,146,1) 0%, rgba(238,116,18,1) 25%, rgba(93,65,146,1) 39%, rgba(93,65,146,1) 55%, rgba(238,116,18,1) 71%, rgba(238,116,18,1) 82%, rgba(93,65,146,1) 100%);
  background: -webkit-linear-gradient(69deg, rgba(93,65,146,1) 0%, rgba(238,116,18,1) 25%, rgba(93,65,146,1) 39%, rgba(93,65,146,1) 55%, rgba(238,116,18,1) 71%, rgba(238,116,18,1) 82%, rgba(93,65,146,1) 100%);
  background: linear-gradient(69deg, rgba(93,65,146,1) 0%, rgba(238,116,18,1) 25%, rgba(93,65,146,1) 39%, rgba(93,65,146,1) 55%, rgba(238,116,18,1) 71%, rgba(238,116,18,1) 82%, rgba(93,65,146,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5d4192",endColorstr="#5d4192",GradientType=1);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 30px;
  border-radius: 50px;
  font-size: 1.5em;
  text-align: center;
}
/* Detalles del evento */
.event-details p {
  margin: 0;
}
.event-details p a {
  color: #1b1b1b;
}

.programs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/* Sección de universidades */
.universities {
  padding: 70px 0 0 50px !important;
  font-size: 1.3em;
}
.universities ul {
  margin-bottom: 60px;
}

.universities li {
  font-weight: bolder;
}

/***** FORMULARIO ****/
form {
    font-family: 'Paxis-Next';
}
input, select{
    width: 100%;
    padding: 5px 5px 5px 10px;
    margin-bottom: 30px;
    font-size: 1em;
    color: black;
    border: none;
    border-bottom: 1px solid #e00034;
    outline: none;
    background: transparent;
    transition: all 0.5s ease; /* Transicion suave para los cambios de estilo */
}
.gris{
    color: lightgray;
}
input[type="checkbox"]{
    width: 10% !important;
}
input:focus{
    border-radius: 10px;
    border: 1px solid #e00034;
}
.btn-block{
    text-align: center;
    margin-bottom: 80px;
}
.g-recaptcha {
    margin: auto;
    display: table;
}
.btnMain {
    color: #fff;
    background: #e00034;
    font-weight: 500;
    font-family: 'Praxis-Next';
    border: 0;
    border-radius: 2em;
    max-width: 300px;
    width: 100%;
    padding: .25em;
}
/***** TERMINA FORMULARIO *****/

/* Estilos para ajustar los márgenes y padding internos */
.noPadding {
  padding: 0;
}

.col-12,
.col-lg-6 {
  padding: 0 15px; /* Ajusta los márgenes internos */
  box-sizing: border-box;
}

.txt-red-light {
  color: #e00034;
}

/* Footer */
footer {
  background-color: black;
}
.footer-logos {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente (si es necesario) */
  flex-wrap: wrap; /* Permite que los logos se envuelvan en múltiples líneas si no caben en una sola */
  padding: 20px 0; /* Ajusta el padding según sea necesario */
}
.logos-adc-footer {
  background-color: black;
  text-align: center;
}
.logos-adc-footer div div {
  margin: 30px 0;
}
/*#logo-footer-comillas{
  margin: auto;
  width: 148px;
  height: 109px;
}
#logo-footer-deusto{
  margin: auto;
  width: 200px;
  height: 64px;
}
#logo-footer-georgetown {
  margin: auto;
  width: 300px;
  height: 63px;
}
#logo-partner{
  width: 130px;
}*/
#Logos-Universidades-Advantere{
  max-width: 100%;
  padding: 5% 5%;
}
.logo-footer-ibero {
  background-color: #e00034;
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente (si es necesario) */
  flex-wrap: wrap; /* Permite que los logos se envuelvan en múltiples líneas si no caben en una sola */
  padding: 20px 0; /* Ajusta el padding según sea necesario */
}
.logo-footer-ibero img {
  width: 220px;
  height: 90px;
}
.pag-footer {
  background-color: #fff;
  text-align: right;
  padding: 30px;
}
.pag-footer a {
  color: black;
  font-weight: bold;
  text-decoration: none;
  font-size: 2em;
  margin-right: 70px;
}

@media (max-width: 768px) {
  .universities-header {
    height: 100px;
  }
  .logo-izquierdo {
    left: 5%; /* Alineado a la derecha con 'aire' */
    width: 150px;
    height: 90px;
  }
  .logo-derecho {
    right: 5%; /* Alineado a la izquierda con 'aire' */
    top: 5%;
    width: 153px;
    height: 84px;
  }
  .texto-intro {
    padding: 5%;
    font-size: 1.5em;
  }
  .pl-lg-2,
  .pr-lg-2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .info-session {
    border-right: none;
    padding: 5%;
    margin-top: 0;
    margin-bottom: 0px;
    border-bottom: #e00034 3px solid;
  }
  .info-session p {
    font-size: 1em;
  }
  .btn-program {
    font-size: 1em;
  }
  .universities {
    padding: 5% !important;
  }
  .formulario-section {
    padding: 5%;
  }
  #logo-footer-comillas{
    width: 91px;
    height: 67px;
  }
  #logo-footer-deusto {
    width: 100px;
    height: 32px;
  }
  #logo-footer-georgetown {
    width: 100px;
    height: 21px;
  }
  #logo-partner{
    width: 50px;
  }
  .logo-footer-ibero img {
    width: 150px;
    height: 60px;
  }
}

@media (min-width:769px) and (max-width: 1024px){
  .logo-izquierdo {
    left: 20%;
  }
  .logo-derecho {
    right: 15%;
  }
  #logo-footer-georgetown {
    width: 270px;
    height: 53px;
  }
}
