
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}


:root {
  --celeste: #4AACC4;
  --azul: #354393;
  --gris: #414242;
}
/* var(--celeste); */
body {
  /* font-family: "Open Sans", sans-serif; */
  font-family: 'ubuntu', sans-serif;
  color: #444444;
}
body{
  font-family: 'ubuntu', sans-serif;
	/* font-size: 20px;
	line-height: 24px; */
	color: #212112;	
	background-color: #fff;

	
}

a {
  color: var(--azul);
  text-decoration: none;
}

a:hover {
  color: var(--celeste);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--azul);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--celeste);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: var(--celeste);;
}

#header .logo img {
  max-height: 40px;
}

#header .logo-movil{
  display: none;
}

#header .logo-desktop{
  display: block;
}

@media screen and (max-width: 768px) {
  #header .logo-movil{
    display: block;
    padding-left: 5%;
  }
  
  #header .logo-desktop{
    display: none;
  }
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: var(--azul);
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: var(--celeste);
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# 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 a,
.navbar ul li a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar ul li a i,
.navbar ul li a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar ul li a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--azul);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
}

.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: var(--azul);
}

.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: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(0, 0, 0, 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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile ul li a,
.navbar-mobile ul li a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile ul li a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--azul);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: var(--azul);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* Fondos */

.fondo-azul{
  background-color: var(--azul);
  color: white;
}

.fondo-celeste{
  background-color: var(--celeste);
}

.fondo-gris{
  background-color: var(--gris);
}

/* Botones */

.boton-outline-azul{
  background-color: transparent;
  border: 3px solid #354393;
  color: #354393  !important;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  height: 40px;
  min-width: 150px;
  transition: all 1.5s;
  font-weight: bold;            
}

.boton-azul{
  background-color: #354393;
  border: 5px solid #354393;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  height: 40px;
  min-width: 140px;
  color: white;
  transition: all 1.5s;
  font-weight: bold;
}

.boton-outline-celeste{
  background-color: transparent;
  border: 3px solid #4AACC4;
  color: #4AACC4  !important;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  height: 40px;
  min-width: 150px;
  transition: all 1.5s;
  font-weight: bold;            
}

.boton-celeste{
  background-color: #4AACC4;
  border: 3px solid #4AACC4;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  height: 40px;
  min-width: 150px;
  color: white;
  transition: all 1.5s;
  font-weight: bold;
}


.boton-azul:hover, .boton-outline-azul:hover, .boton-celeste:hover, .boton-outline-celeste:hover{
  transform: scale(1.1);
}

/* INDEX */

/* Slider */
.carousel-escritorio{
  display: block;
}

.carousel-movil{
  display: none;
}

.caja-video{
  width: 50%;
}

.caja-video-2{
  width: 80%;
}


@media (max-width: 991px) {


  .carousel-escritorio{
    display: none;
  }

  .carousel-movil{
    display: block;
  }

  .caja-video, .caja-video-2{
    width: 100%;
  }


}

/* Titulo */

.linea-celeste {
  width: 60px !important;
  height: 4px !important;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--celeste) !important;
}

.linea-azul {
  width: 60px !important;
  height: 4px !important;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--azul) !important;
}

/* Caja */

.contenedor {
  position: relative;
  margin-top: 10px;
  /* width: 300px; */
  width: 90%;
}

#index-accesos .circulo {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 75px;
  border: var(--celeste) 2px solid;
  margin-left: auto;
  margin-right: auto;
}

#index-accesos .circulo i{
  z-index: 4; 
  color: var(--celeste);  
  font-size: 60px;
}

.caja {
  margin-top: -75px;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 75px;

  background-color: beige;
  z-index: -1;
}

/* FOOTER */

.img-footer{
  
  height: 80px;
  width: auto;
}

/* INSTITUCIONAL */

.gobernador img{
  width: 60%;
  height: auto;
}

.container-logro {

  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
  margin: 20px 0;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #354393;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.answer .sub-gris {
  color: #414242;
  font-weight: bold;
}

/* CRONOGRAMA */

.box {
  outline: 2px solid #4aacc4;
  border-radius: 5px;
  box-sizing: border-box;

}

.box .box-numero {
  font-size: 80px;
  color: #4aacc4;
  font-weight: bold;
}

.box .box-titulo {
  font-size: 20px;
  font-weight: bold;
  color: #414242;
}

.box .box-atencion{
  font-size:20px;
  font-weight: bold;
  color: #414242;
}

/* CONTACTOS */

#contactos .circulo {
  position: relative;
  z-index: 1;
  width: 75px;
  height: 75px;
  background: white;
  border-radius: 75px;
  border: var(--celeste) 2px solid;
  margin-left: auto;
  margin-right: auto;
}

#contactos .circulo i{
  z-index: 4; 
  color: var(--celeste);  
  font-size: 30px;
}