@charset "UTF-8";
/*---------------------------------------------
            TAMAÃ‘OS DE COLUMNAS
-----------------------------------------------*/
.row > * {
  /*border: 1px solid #000;*/ }

/*---------------------------------------------
1.TIPOGRAFIA DEL SITIO
-----------------------------------------------*/
html {
  font-size: 14px; }

body {
  font-family: "Arial";
  color: #696969; }

/*------------------------------------------------
2. ESTILOS GENERALES DE BOTONES
-------------------------------------------------*/
.btn {
  border-radius: 1.5rem;
  padding: .6rem 2rem;
  font-weight: bolder; }

/*------------------------------------------------
3. ESTILOS COLOR PRINCIPAL
-------------------------------------------------*/
.bg-primary {
  background-color: #911f78 !important; }

.text-primary {
  color: #911f78 !important; }

/* Estilos btn-primary*/
.btn-primary {
  color: #fff !important;
  background-color: #911f78 !important;
  border-color: #911f78 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }

.btn-primary:hover {
  color: #0c0e5e !important;
  background-color: white !important;
  border-color: #4212b3 !important; }

.btn-primary:active {
  color: #56bd49 !important;
  background-color: #9fccc8 !important;
  border-color: #18770b !important; }

.btn-primary:focus {
  color: #300030 !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(145, 31, 120, 0.5) !important;
          box-shadow: 0 0 0 0.2rem rgba(145, 31, 120, 0.5) !important;
  /* Para quitar el borde azul que sigue apareciendo en focus y active se pone !important y se soluciona */ }

/* Insertamos icono de flecha del botÃ³n principal */
.btn-primary:after {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  content: "\f138";
  position: relative;
  left: .6rem;
  top: .1rem;
  -webkit-transition: left .5s ease-in-out;
  transition: left .5s ease-in-out; }

.btn-primary:hover:after,
.btn-primary:focus:after,
.btn-primary:active:after {
  left: 1rem; }

/* Insertamos la caja blanca del botÃ³n principal */
.btn-primary:before {
  content: "";
  z-index: -1;
  width: 0px;
  height: 100%;
  /* Que ocupe el 100% de su padre, en este caso es el enlace o boton*/
  background: white !important;
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: skew(45deg, 0deg);
          transform: skew(45deg, 0deg);
  -webkit-transition: all .4s ease;
  transition: all .4s ease; }

.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary:active:before {
  width: 130%;
  left: -15%; }

/* Estilos linea hr  */
hr {
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none; }

.white_hr {
  height: 8px;
  background-image: -webkit-gradient(linear, left top, right top, from(#360f47), to(transparent));
  background-image: linear-gradient(90deg, #360f47, transparent);
  border: 0;
  height: 3px; }

.hr_fade {
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f0f0f0), color-stop(#00b9ff), color-stop(#59d941), to(#f0f0f0));
  background-image: linear-gradient(to right, #f0f0f0, #00b9ff, #59d941, #f0f0f0); }

.hr_aliados {
  height: 3px;
  width: 50%;
  background-color: rgba(238, 120, 232, 0.219);
  border: none; }

.hr_vertical {
  border: none;
  border-left: 1px solid #73848c;
  height: 100vh;
  width: 1px; }

/* Estilos degradados texto_aliados  */
.texto_aliados_institucionales {
  /* standard gradient background */
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#410569));
  background: linear-gradient(white, #410569);
  /* clip informÃ¡tico */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.texto_aliados_internacionales {
  /* standard gradient background */
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#2a3de6));
  background: linear-gradient(white, #2a3de6);
  /* clip informÃ¡tico */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

/*------------------------------------------------
4. ESTILOS COLOR SECUNDARIO
-------------------------------------------------*/
.bg-secondary {
  background-color: #300030 !important; }

.text-secondary {
  color: #300030 !important; }

/* Estilos btn-secondary*/
.btn-secondary {
  color: #fff !important;
  background-color: #300030 !important;
  border-color: #300030 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }

.btn-secondary:hover {
  color: #911f78 !important;
  background-color: white !important; }

.btn-secondary:active {
  color: #911f78 !important;
  background-color: #630063 !important;
  border-color: #7d007d !important; }

.btn-secondary:focus {
  color: #911f78 !important;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(48, 0, 48, 0.5) !important;
          box-shadow: 0 0 0 0.2rem rgba(48, 0, 48, 0.5) !important;
  /* Para quitar el borde azul que sigue apareciendo en focus y active se pone !important y se soluciona */ }

/* Insertamos icono de flecha del botÃ³n secondary */
.btn-secondary:after {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  content: "\f138";
  position: relative;
  left: .6rem;
  top: .1rem;
  -webkit-transition: left .5s ease-in-out;
  transition: left .5s ease-in-out; }

.btn-secondary:hover:after,
.btn-secondary:focus:after,
.btn-secondary:active:after {
  left: 1rem; }

/* Insertamos la caja blanca del botÃ³n secundary */
.btn-secondary:before {
  content: "";
  z-index: -1;
  width: 0px;
  height: 100%;
  /* Que ocupe el 100% de su padre, en este caso es el enlace o boton*/
  background: white !important;
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: skew(45deg, 0deg);
          transform: skew(45deg, 0deg);
  -webkit-transition: all .4s ease;
  transition: all .4s ease; }

.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary:active:before {
  width: 130%;
  left: -15%; }

/*------------------------------------------------
5. ESTILOS EXTRA
-------------------------------------------------*/
/* Background y texto extra */
.bg-third {
  background-color: #223280 !important; }

.text-third {
  color: #223280 !important; }

/* BotÃ³n Primer DÃ­a del Programa (Agenda) */
.button_day_1 {
  border-top: 1px solid #420366;
  background: #2f0566;
  background: -o-linear-gradient(top, #4814b8, #2f0566);
  padding: 20px 40px;
  border-radius: 0px;
  -webkit-box-shadow: black 0 1px 0;
  box-shadow: black 0 1px 0;
  text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
  color: white;
  font-size: 24px;
  font-family: 'Lucida Grande', Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  vertical-align: middle; }

.button_day_1:hover {
  border-top-color: #6b0c3a;
  background: #6b0c3a;
  color: #ffffff; }

.button_day_1 :active {
  border-top-color: #962d53;
  background: #962d53; }

/* BotÃ³n Segundo DÃ­a del Programa (Agenda) */
.button_day_1 {
  border-top: 1px solid #2d0345;
  background: #2f0566;
  background: -o-linear-gradient(top, #4814b8, #2f0566);
  padding: 20px 40px;
  border-radius: 0px;
  -webkit-box-shadow: black 0 1px 0;
  box-shadow: black 0 1px 0;
  text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
  color: white;
  font-size: 24px;
  font-family: 'Lucida Grande', Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  vertical-align: middle; }

.button_day_1:hover {
  border-top-color: #36252e;
  background: #4e2e3e;
  color: #ffffff; }

.button_day_1:active {
  border-top-color: #822245;
  background: #822245; }

/* BotÃ³n Segundo DÃ­a del Programa (Agenda) */
.button_day_2 {
  border-top: 1px solid #2d0345;
  background: #8758c9;
  background: -o-linear-gradient(top, #642ed9, #8758c9);
  padding: 20px 40px;
  border-radius: 0px;
  -webkit-box-shadow: black 0 1px 0;
  box-shadow: black 0 1px 0;
  text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
  color: white;
  font-size: 24px;
  font-family: 'Lucida Grande', Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  vertical-align: middle; }

.button_day_2:hover {
  border-top-color: #36252e;
  background: #4e2e3e;
  color: #ffffff; }

.button_day_2:active {
  border-top-color: #822245;
  background: #822245; }

/*------------------------------------------------
6. ESTILOS PARA ".redes_sociales" 
-------------------------------------------------*/
.redes_sociales li a i {
  color: #fff;
  font-size: 1.5rem;
  padding: .6rem 1rem;
  opacity: .6;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  /* Tiempo de transiciÃ³n al siguiente estado del icono*/ }

/* Efecto hover (Estado posterior de los iconos) */
.redes_sociales li a i:hover {
  opacity: 1;
  -webkit-transform: scale(1.3) rotate(360deg);
          transform: scale(1.3) rotate(360deg);
  /* Aumentar tamaÃ±o y rotar (deg son grados) */ }

/*------------------------------------------------
7. ESTILOS PARA "#menu_navegacion" 
-------------------------------------------------*/
/* Quitamos estilos al botÃ³n por defecto */
#menu_navegacion .navbar-toggler {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  background-color: transparent;
  border: none;
  border-radius: .25rem;
  outline: 0; }

/* Estilos boton menu personalizado */
#menu_navegacion .boton-menu:before {
  font-family: 'Font Awesome 6 Free';
  /* ALTGR + ' OBTENER SIMBOLO \ */
  content: "\f13a";
  font-weight: 900;
  font-size: 2.5rem;
  color: white; }

#menu_navegacion .icono-cerrar:before {
  content: "\f057";
  position: relative;
  left: 2rem; }

/* Estilos de los enlaces del #menu_navegaciÃ³n */
.navbar-dark .navbar-nav .nav-link {
  /* color: white; */
  font-weight: bold;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: .5rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }

/* Estilos de los enlaces del menu navegaciÃ³n.Flecha despuÃ©s */
.navbar-dark .navbar-nav .nav-link:after {
  font-family: 'Font Awesome 6 Free';
  content: "\f0da";
  font-weight: 900;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }

/* Estilos estado hover del enlace */
.navbar-dark .navbar-nav .nav-link:hover {
  /* Propiedad lighten pide un color y aclara en un porcentaje el mismo */
  background-color: #2898aa; }  

/* Estilos estado hover:after del enlace */
.navbar-dark .navbar-nav .nav-link:hover:after {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg); }

/* Estilos para el enlace activo */
.navbar-dark .navbar-nav .nav-link.active {
  background-color: #911f78; }

/*------------------------------------------------
8. HERO
-------------------------------------------------*/
#intro {
  background-image: url("../images/persona-pensando.jpg");
  background-size: 1350px;
  height: 750px; }

/*------------------------------------------------
9. Estilos para "#bienvenidos"
-------------------------------------------------*/
/* Estilos boton play */
.contenedor-video a {
  background-color: rgba(254, 255, 255, 0.7);
  height: 7rem;
  width: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  color: #911f78;
  font-size: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-clip: padding-box;
  border: 0 solid transparent;
  -webkit-transition: all .5s ease;
  transition: all .5s ease; }

.contenedor-video a:hover {
  background-color: #911f78;
  color: white;
  border: 10px solid rgba(255, 255, 255, 0.5); }

/* Estilos aumentar imagen video */
.contenedor-video img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.contenedor-video:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); }

/*------------------------------------------------
10. Estilos para "#speakers"
-------------------------------------------------*/
.card_speakers {
  position: relative;
  overflow: hidden; }

.card_speakers::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 220%;
  background: rgba(80, 43, 245, 0.7);
  top: -50%;
  left: -100%;
  z-index: 1;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transform-origin: center top 0;
          transform-origin: center top 0;
  -webkit-transition: .5s;
  transition: .5s; }

.card_speakers:hover::before {
  left: 10%; }

.card_speakers img {
  width: 250px;
  height: auto; }

.card-text {
  width: 50%;
  padding: 0 20px;
  position: absolute;
  top: -100%;
  color: #fff;
  left: 0;
  z-index: 2;
  -webkit-transition: 1.1s;
  transition: 1.1s; }

.card-text h3 {
  font-family: arial; }

.card_speakers:hover .card-text {
  top: 50px; }

/*------------------------------------------------
11. Estilos para "#aliados"
-------------------------------------------------*/
/* Estilos efecto parallax aliados */
.parallax_aliados {
  /* The image used */
  background-image: url("https://www.seg.guanajuato.gob.mx/MadresyPadres/SitePages/css/familia.jpg");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

/* Estilos efecto background con opacidad */
#aliados {
  position: relative;
  /* transform: skew(0,2deg); Estilos para rotar secciÃ³n o elemento al padre (#convocatoria) */ }

#aliados::before {
  content: "";
  position: absolute;
  background: black;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5; }

/* Estilos tamaÃ±o logo_institucional */
.logo_institucional img {
  width: 700px;
  height: auto; }

.logo_internacional img {
  width: 400px;
  height: auto; }

/* Estilos efecto inclinaciÃ³n al hijo (.container). Afecta al efecto parallax */
/*
#convocatoria .container{
      transform: skew(0,-2deg); Estilos para rotar secciÃ³n o elemento al hijo quitando los grados del padre 
}
*/
/*------------------------------------------------
12. Estilos para "#programa"
-------------------------------------------------*/
/* Estilos efecto parallax programa */
.parallax_aliados {
  /* The image used */
  background-image: url("https://www.seg.guanajuato.gob.mx/MadresyPadres/SitePages/css/familia.jpg");
  /* Set a specific height */
  min-height: 1850px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

/* Estilos efecto background con opacidad */
#aliados {
  position: relative;
  /* transform: skew(0,2deg); Estilos para rotar secciÃ³n o elemento al padre (#convocatoria) */ }

#aliados::before {
  content: "";
  position: absolute;
  background: black;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5; }

/*------------------------------------------------
X. EMPIEZA EL SHOW DE LAS MEDIA QUERIES 
-------------------------------------------------*/
/* Quitar iconos en enlaces a partir de entorno medio */
@media (min-width: 768px) {
  .navbar-dark .navbar-nav .nav-link:after {
    content: ""; }

  .navbar-dark .navbar-nav .nav-link {
    /* color: white; */
    padding: .8rem 1.5rem;
    border-radius: 1.5rem; } }
@media (max-width: 575.98px) {
  /* para dispositivos cuya anchura de pantalla sea inferior a 768px la clase menu estarÃ¡ oculta */
  .card_speakers::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 220%;
    background: rgba(80, 43, 245, 0.7);
    top: -50%;
    left: -100%;
    z-index: 1;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    -webkit-transform-origin: center top 0;
            transform-origin: center top 0;
    -webkit-transition: .5s;
    transition: .5s; } }
/*------------------------------------------------
X. COLORES BTN DANGER
-------------------------------------------------*/
.btn-info {
  color: #fefeff;
  background-color: #7cc !important;
  border-color: #5bc2c2 !important; }

.btn-info:hover {
  color: #212529;
  background-color: #0c074b !important;
  border-color: #16095e !important; }

.btn-info:focus,
.btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5); }

.btn-info.disabled,
.btn-info:disabled {
  color: #212529;
  background-color: #7cc;
  border-color: #5bc2c2; }

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #212529;
  background-color: #9cdada;
  border-color: #2e7c7c; }

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5); }

.btn-outline-info {
  color: #7cc;
  background-color: transparent;
  background-image: none;
  border-color: #7cc; }

.btn-outline-info:hover {
  color: #222;
  background-color: #211361;
  border-color: rgb(5, 11, 90); }

.btn-outline-info:focus,
.btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5); }

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #7cc;
  background-color: transparent; }

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #8ad3d3;
  border-color: #7cc; }

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(41, 119, 5, 0.5); }

/*# sourceMappingURL=estilos.css.map */