
/* =================================== */
/*	Basic Style 
/* =================================== */


:root {
  --contraste-1:#82E4FB;
  --contraste-2:#9912D9;
  --contraste-3: #9B0138;
  --base-oscuro: #150027;
  --base-clara: #7a2e68;
  --detalles-1: #bb3665;
  --detalles-2: #9B0138;
  --detalles-3: pink;
  --black: black;
  --white: white;
  --grey: #232323;
  --random:white;
  
}

@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');


.faqs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  padding-bottom: 4rem;
  align-items: baseline;
}

.faq {
  background-color: transparent;
  border: 1px solid #9FA4A8;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  margin: 20px 0;
  transition: 0.3s ease;
  max-width: 500px;
}

.faq.active {
  background-color: transparent;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
}


.faq-title {
  margin: 0 35px 0 0;
}

.faq.active .faq-title {
  color: var(--contraste-1);
  text-decoration: underline;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle .fa-question-circle:hover {
  color: var(--contraste-2); /* Cambia "red" por el color que desees al hacer hover */
}

.faq-toggle {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
}

.faq:hover {
  cursor: pointer;
}

.faq-toggle:focus {
  outline: none;
}

.faq.active .faq-toggle {
  background-color: transparent;
  color:var(--white)}

.faq-toggle .fa-times {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  display: block;
}

.faq-toggle .fa-question-circle {
  color: var(--contraste-1);
}

.faq.active .faq-toggle .fa-question-circle {
  display: none;
}

.faq:hover .fa-question-circle {
  background-color: transparent;
  color:var(--white)
}


.responsive {
  width: 100% ;
  height: auto;
}

.section {
  scrollbar-color: #6969dd #e0e0e0;
  scrollbar-width: thin;
}

figure .social-links li a {
  color: var(--contraste-3)
}

figure .social-links li a:hover {
  color: var(--base-oscuro)
}


figure {
  color: #000; /* Cambia el color del texto a negro */
  max-width: 100%; /* Asegura que el figure no exceda el ancho disponible */
  white-space: normal;
  text-align: center; /* Centra horizontalmente el contenido dentro del figure */
  min-width: min-content; /* Tamaño mínimo de ancho para el figure */
  min-height: min-content; /* Tamaño mínimo de alto para el figure */
  vertical-align: top;
}

figure h3 {
  font-weight: bold;
  padding: 2%;
  font-size: 24px; /* Ajusta el tamaño de la fuente del título según tus preferencias */
}

figure p {
  font-size: 18px; /* Ajusta el tamaño de la fuente del párrafo según tus preferencias */
  line-height: 1.6; /* Aumenta el espaciado entre líneas para mejorar la legibilidad */
  word-wrap: break-word; /* Fuerza el salto de línea de palabras largas */
  padding-left: 35px ;
  padding-right: 35px ;
}

.side-scroller-buttons {
  flex-direction: row;
  display: flex;
  justify-content: center;

}

.scrollmenu {
  /* background-color: #333; */
  overflow: auto;
  flex-wrap: wrap;
  white-space: nowrap;
  padding: 20px;
  width: 80%;
  overflow-y: hidden;
}

.scroll-button {
  width: 5%;
  height: auto;
  padding: 10px;
  background-color: var(--contraste-3); /* Color de fondo */
  border: 0px;
}

.scroll-button i {
  color: var(--contraste-1); /* Color del ícono */
}

.scroll-button:hover {
  background-color: var(--contraste-1); /* Cambia el color de fondo en el hover */
  color: var(--contraste-3); /* Color del ícono */

}

.vertical-center {
  display: table-cell;
  vertical-align: middle; /* Centra verticalmente el contenido */
  text-align: center; /* Centra horizontalmente el contenido */
  height: 100%; /* Asegura que el contenedor ocupe toda la altura disponible */
}

.vertical-center h5 {
  font-weight: bold;
}

.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

img.logo {
  height: auto;
  max-width: 500px ;

}

.center {
 
  margin-top: 10%;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 21px;
	  font-size: 18px;
    color: var(--white);
}

ol, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure {
  display: flex;
  align-items: center; /* Centra verticalmente el contenido con respecto a la figure */
  justify-content: center; /* Centra horizontalmente el contenido */
  height: 100%; /* Asegura que el contenedor ocupe toda la altura disponible */
  position: relative;

}

figure, p {
    margin: 0;
}

a {
    color: #fff;
	
    -webkit-transition: all .3s ease-in 0s;
       -moz-transition: all .3s ease-in 0s;
        -ms-transition: all .3s ease-in 0s;
         -o-transition: all .3s ease-in 0s;
            transition: all .3s ease-in 0s;
}

iframe {
    border: 0;
}

a, a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus, a:hover {
    color: #023047;
}

h1, h2, h3,
h4, h5, h6 {
	font-weight: normal;
	margin: 0;
}

.clear:before,
.clear:after {
    content: " ";
    display: table;
}
 
.clear:after {
   clear: both;
}
 
.clear {
   *zoom: 1;
}

span.color {
	color: #023047;
}

body > section,
.footer {
	padding: 50px 0;
}

.sec-title h2 {
  color: var(--contraste-1);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.sec-sub-title {
	margin: 35px 0 45px;
}

.sec-sub-title p {
	font-weight: 600;
	line-height: 24px;
	font-size: 18px;
	color: #5b646e;
}

.divider {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  margin: 30px 0;
}

.divider i {
  color: #cccccc;
}



.divider:before,
.divider:after {
  content: "______________________";
  color: #e6e8ea;
  position: relative;
  bottom: 6px;
}

.divider:before {
  right: 10px;
}

.divider:after {
  left: 10px;
}

/* For desktop layout */
@media (min-width: 768px) {
  .divider:before,
  .divider:after {
    content: "______________________";
  color: #e6e8ea;
  position: relative;
  bottom: 6px;
  }

  .divider:before {
    right: 10px;
    text-align: right;
  }

  .divider:after {
    right: 10px;
    text-align: left;
  }
}

/* For mobile layout */
@media (max-width: 767px) {
  .divider:before,
  .divider:after {
    content: "";
  }

  .divider i {
    display: block;
  }
}

.mb50 {
	margin-bottom: 50px;
}

#preloader {
  background-color: var(--black);
  height: 100%;
  position:absolute;
  width: 100%;
  z-index: 1100;
}

#preloader > img {
  position:sticky;
  height: 150px;
  width: 200px;
}


/*=========================================
	Header
==========================================*/

#navigation {
  background-color: rgba(16, 22, 54, 0.2);
  border: 0 none;
  margin: 0;
  
    -webkit-transition: background-color 800ms linear;
       -moz-transition: background-color 800ms linear;
	    -ms-transition: background-color 800ms linear;
         -o-transition: background-color 800ms linear;
			transition: background-color 800ms linear;
}

.navbar-toggle i {
	color: #fff;
}

.navbar-brand {
  padding: 0;
}

.navbar-nav li a {
	border-top: 1px solid transparent;
}

.navbar-nav li a.current,
.navbar-nav li a:focus,
.navbar-nav li a:hover {
	background-color: transparent;
	border-bottom: 1px solid #32B0EE;
	color: #fff;
}


/*=========================================
	Features
==========================================*/

.features {
  background-color:var(--base-oscuro)
}

.service-icon {
  float: left;
  padding: 10px 13px;
  color: var(--contraste-1);
}





.service-desc {
  margin-left: 70px;
  position: relative;
  top: 5px;
}

.service-desc h3 {
  color:  var(--contraste-1);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}



/*=========================================
	Slider
==========================================*/

#slider {
	padding: 0;
  background-image: url("../img/banner.jpg") ;
  background-size: 120% 120%;
  animation: gradient 70s ease infinite;
  height: 100vh;

  
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
  }
}

#slider .carousel-inner .item {
  background-size: cover;
}

.carousel-caption {
  top: 50%;
}

/* .carousel-caption h2 {
  font-size: 62px;
  font-weight: 300;
} */

.carousel-caption h2 span {
  font-weight: 800;
}

.carousel-caption h3 {
  font-size: 48px;
  font-weight: 300;
  margin: 6px 0 20px;
}

.carousel-caption p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.carousel-caption p:before {
  right: 20px;
}

.carousel-caption p:after {
  left: 20px;
}

.social-links {
  margin-top: 5%;
}

.social-links li {
	display: inline-block;
}

.social-links li a {
  color: var(--contraste-1);
  display: block;
  margin: 0 6px;
}

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

.carousel-indicators {
  bottom: 10px;
  left: inherit;
  margin: 0;
  right: 30px;
  top: 49%;
  width: 0;
}

.carousel-indicators li {
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 8px;
  width: 8px;
}

.carousel-indicators .active {
  height: 8px;
  width: 8px;
}

/*=========================================
	Juegos
==========================================*/
.juegos .sec-title h2,
.juegos .divider:before,
.juegos .divider:after,
.juegos .divider i {
color:var(--white)
}

.juegos .sec-sub-title p{
  color:var(--white)
}

.juegos {
  background: linear-gradient(291deg, rgba(71,42,109,1) 0%, rgba(122,46,104,1) 48%, rgba(188,55,100,1) 100%);
}


/*=========================================
	Proyectos
==========================================*/

.Proyectos .sec-title h2,
.Proyectos .divider:before,
.Proyectos .divider:after,
.Proyectos .divider i {
color:var(--base-oscuro)
}

.banner {
  margin: 2%;
} 



/*=========================================
	Comunidad
==========================================*/

.comunidad {
  display: flow-root; /* Establece el contenedor como flexbox */
}

.eventos .sec-title h2,
.eventos .sec-sub-title p,
.eventos .divider:before,
.eventos .divider:after,
.eventos .divider i {
color:var(--white)
}

.eventos {
  background: linear-gradient(291deg, rgba(188,55,100,1) 0%, rgba(122,46,104,1) 48%, rgba(71,42,109,1) 100%);
}

.eventos h3,
.eventos p {
  margin: 10px;
}

a:focus, a:hover {
  color: var(--white);
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: var(--base-oscuro);
  border: none;
  color: var(--white);
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 10px;
  opacity: 0.7;
  margin-top: auto;
  border-radius: 8px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
.button:hover {opacity: 1}

a.button:hover {
  background-color: var(--contraste-1);
  color: var(--base-oscuro);
}

/* Ocultar los botones en dispositivos móviles */
@media (max-width: 768px) {
  .scroll-button {
    display: none;
  }
}


/*=========================================
	Our Works
==========================================*/
.work {
  text-align: -webkit-center;
}

.work .div {
  display: flex;
}

.work .project-wrapper {
  height:auto;
}

.work-filter {
  margin-bottom: 35px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: var(--contraste-3);
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 17px;
  border-radius: 6px;
  text-transform: capitalize;
}

.work-filter ul li a:hover,
.work-filter ul li a.active {
  background-color: var(--contraste-3);
  border-radius: 6px;
  color: #fff;
  padding: 5px 17px;
}

.mix {
    display: none;
}

.work-item {
    float: inline-start;
    width: 25%;
    position: relative;
    padding: 1%;
  }

.work-item > img {
  height: auto;
  max-width: 100%;
}

.rectangle {
	background-color: var(--base-oscuro);
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
  opacity: 0.4;
}

.overlay {
	background-color: var(--contraste-3);
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	
	opacity: 0;
	filter: alpha(opacity=0);
	
	-webkit-transition: all 450ms ease-out 0s;	
	   -moz-transition: all 450ms ease-out 0s;
		 -o-transition: all 450ms ease-out 0s;
		    transition: all 450ms ease-out 0s;
		  
	-webkit-transform: rotateY(180deg) scale(0.5,0.5);
	   -moz-transform: rotateY(180deg) scale(0.5,0.5);
		-ms-transform: rotateY(180deg) scale(0.5,0.5);
		 -o-transform: rotateY(180deg) scale(0.5,0.5);
			transform: rotateY(180deg) scale(0.5,0.5);
}

.work-item:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.work-item .overlay a {
  /* border: 1px solid #fff; */
  /* border-radius: 50%; */
  display: inline-block;
  margin: 10%;
  padding: 7px 10px;
}

.work-item .overlay a:hover {
  color: #fff;
}

.work-item .overlay h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 25px 0 8px;
}

.work-item .overlay p {
  font-size: 14px;
  line-height: 24px;
}

.work-item .overlay ul {

}

.work .sec-title h2,
.work .sec-title .divider::after,
.work .sec-title .divider::before,
.work .sec-title i  {
  color: var(--detalles-1);
}

.comunidad i {
  text-align: center;
}

/*=========================================
	Our Team Member
==========================================*/
.card {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: 9px 9px 23px -6px rgba(0, 0, 0, 0.84);
          box-shadow: 9px 9px 23px -6px rgba(0, 0, 0, 0.84);
  margin: 3rem 2rem 4rem 2rem; }

  .card img {
    width: 250px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px; }

  .card a {
    padding: 1.5rem 3rem;
    margin-bottom: 1rem; }

.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    width: auto;}

.team-member h4 {
  color: #062033;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 15px 0 8px;
}

.team-member {
  background: var(--white);
  border-radius: 10%;
}

.team-member .social-links {
  margin-top: 24%;
}

.team-member .social-links li a {
  background-color: var(--contraste);
  color: #fff;
  height: 42px;
  padding: 10px 0 0;
  width: 42px;
}
/*=========================================
	Nosotras
==========================================*/

#Nosotras {
	background:var(--base-oscuro);
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 70px 0;
}




/*=========================================
	Some fun facts
==========================================*/

#facts {
	background-image: url("../img/parallax/fondo-facts.jpg");
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
}

.features .divider:before,
.features .divider:after,
.features .divider i
{
	color: var(--contraste-1);
}

.facts .divider:before,
.facts .divider:after,
.facts .divider i {
	color: var(--contraste-1);
}

.parallax-overlay {
	background-color: var(--peach);
  background-blend-mode: lighten;
	padding: 70px 0;
}

.counters-item {
  color: #fff;
}

.counters-item i {
  border: 1px solid #737C85;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 120px;
  margin: 0 0 35px;
  padding: 40px 0 0;
  width: 120px;
}

.counters-item strong {
  display: block;
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
}

.counters-item p {
  font-size: 18px;
  line-height: 24px;
  margin-top: 15px;
  text-transform: uppercase;
}


.footer-social {
  margin-top: 17px;
}

.footer-social li a {
  color: #cdd2d6;
  display: block;
  margin-bottom: 10px;
}

#map_canvas {
  height: 215px;
  width: 100%;
}

.footer .sec-title h2,
.footer .divider:before,
.footer .divider:after,
.footer .divider i
{
  color: var(--contraste-3);
}

.footer .social-links li a
{
  color: var(--contraste-3);
  font-size: 20px;
  padding: 10%;
}
.footer .social-links li a:hover
{
  color: var(--base-oscuro);
}


.footer .container {
  flex: 1;
  min-width: auto; /* Ajusta el ancho mínimo que quieres que tengan los contenedores */
  padding: 20px;
  box-sizing: border-box;
  max-width: 50%;

}

.footer {
  background-color: var(--detalles-3);
  flex-wrap: wrap;
}


.about-us p {
  line-height: 24px;
}


.credit a {
  color: #062033;
}

.credit a:hover {
  color: #fff;
}

.copyright {
  color: #fff;
  margin-top: 100px;
}

#back-top {
  bottom: 20px;
  position: fixed;
  right: 25px;
  z-index: 9;
}