@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    /* border: 1px solid red; */
}

/* ===================BARRA DE MENÚ CON BOOTSTRAP 5==================== */
#menu{
    height: 60px;
    top: 0;
    left: 0;
    z-index: 3;
}
/* .logo{
    width: 60px;
    height: 55px;
} */
.d-item{
	height: 100vh;
}
.d-img{
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}
.d-p{
	color: #fff;
}

/* =============contenido de las secciones================== */
.seccion{
    position: relative;
}
/* .box{
    width: 100%;
    height: 100%;
} */
.caja{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 100%;
    flex-wrap: nowrap;
}
.scroll{
    display: block;
    position: absolute;
    width: 33%;
    height: 55%;
    overflow-y: scroll;
}
h1{
    text-align: center;
    font-size: 20px;
    color: white;
    text-align: center;
    padding: 5% 0 0 0;
    text-transform: none;
    letter-spacing: 1px;
    z-index: 2;
    width: auto;
}
.caja p{
    font-size: 20px;
    text-align: justify;
    width: auto;
}
.navigation-up{
    position: relative;
    width: 50px;
    bottom: 0;
    right: 0;
    padding: 0;
    float: right;
    transform: rotate(180deg);
    margin-top: 10px;
}
.navigation-down{
    position: relative;
    width: 50px;
    bottom: 0;
    right: 0;
    padding: 0;
    float: inline-end;
}
/* .navigation-back{
    position: fixed;
    width: 40px;
    bottom: 0;
    left: 0;
    margin: 0 0 20px 15px;
} */


#inicio{
    background: rgba(216, 37, 32, 0.6);
}
#div-gen{
    background: rgba(255, 141, 0, 0.6);
}
.seccion .container .genero{
    font-size: 1.5rem;
}
#ori-sex{
    background: rgba(255, 233, 0, 0.6);
}
#afro{
    background: rgba(0, 127, 71, 0.6);
}
#com-ind{
    background: rgba(48, 100, 169, .6);
}
.seccion .container .DC{
    font-size: 1.2rem;
}
#com-equip{
    background: rgba(119, 0, 136, 0.6);
}
#resultados{
    background: rgba(216, 37, 32, 0.6);
}

/*===========Código del mapa SVG=============*/
#resultados{
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor {
	width: 90%;
	margin: auto;
	padding: 40px 0;
    max-width: 1200px;

	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 20px;
}

.contenedor-conciertos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
	gap: 20px;
}

.card {
	border-radius: 10px;
	min-height: 200px;
	font-weight: bold;
	padding: 20px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;

	
}

.card1 {
	border-radius: 10px;
	font-weight: bold;
	padding: 10px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;

	grid-column-start: 1;
    grid-column-end: -1;
	text-align: center;
}

.card{
	/* background-color: rgba(245, 222, 179, 0.808); */
    background-color: bisque;
}
.card1{
	/* background-color: rgba(245, 222, 179, 0.808); */
    /* background-color: #EFE081; */
    background: #fff;
}

.card .textos {
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	color: black;

	/* display: grid;
	grid-template-rows: 1fr auto; */
}

a{
	max-width: 100%;
    width: fit-content;
}

/* Imagen y animación */
.card-image{
	width: 100px;

	position: relative;
	animation: wiggle 2s linear infinite;

    left: calc(50% - 3em);
    top: calc(50% - 3em);
}

/* Keyframes */
@keyframes wiggle {
    0%, 7% {
      transform: rotateZ(0);
    }
    15% {
      transform: rotateZ(-15deg);
    }
    20% {
      transform: rotateZ(10deg);
    }
    25% {
      transform: rotateZ(-10deg);
    }
    30% {
      transform: rotateZ(6deg);
    }
    35% {
      transform: rotateZ(-4deg);
    }
    40%, 100% {
      transform: rotateZ(0);
    }
  }
/* =========== */

.banner {
	border-radius: 10px;
	text-align: center;
	padding: 20px;
	background-size: cover;
	background-position: center center;
    min-height: 300px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

    background-image: linear-gradient(rgba(5, 7, 12, 0.5), rgba(5, 7, 12, 0.5)), url("../image/uv-olmeca.jpg");
}
.card-image-banner{
    width: 100px;
    margin: 0 auto;

	/* animation: wiggle 2s linear infinite;

    left: calc(50% - 3em);
    top: calc(50% - 3em); */
}
.banner h3{
    color: white;
}

.banner ul {
	list-style: none;
}

.banner ul li {
	margin: 15px;
	font-weight: bold;
}

.banner .boton {
	background: #FFD600;
	display: block;
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding: 10px;
	border: none;
	border-radius: 100px;
	font-family: 'Roboto', sans-serif;
	cursor: pointer;
}
.seccion-result{
    height: 100vh;
}

@media screen and (max-width: 900px) {
	.contenedor{
		display: grid;
		grid-template-columns: auto;

        max-height: auto;
	}

	.contenedor-conciertos{
		display: grid;
		grid-column: 1 / -1;
	}

    #resultados{
        /* background: none; */
        background: rgba(216, 37, 32, 0.6);
    }

    .seccion-result{
        height: auto;
    }
}

@media screen and (max-width: 700px) {
	.contenedor{
		display: grid;
		grid-template-columns: auto;
        max-height: auto;
	}

	.contenedor-conciertos{
		display: grid;
		grid-template-columns: auto auto;
	}

    #resultados{
        /* background: none; */
        background: rgba(216, 37, 32, 0.6);
    }
}

@media screen and (max-width: 600px) {
    .contenedor{
        max-height: auto;
    }
	.contenedor-conciertos{
		display: grid;
		grid-template-columns: auto;
	}
    
    #resultados{
        /* background: none; */
        background: rgba(216, 37, 32, 0.6);
    }
}

/* ===========PÍE DE PÁGINA=========== */
.pie{
    position: fixed;
    bottom: 0;
    z-index: 3;
}
.pie .grupo-2{
	text-align: center;
	padding: 5px 10px;
	color: #fff;
}
.pie .grupo-2 small{
	font-size: 15px;
}
.pie .red-social a{
    width: 30px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-size: 15px;
}
.pie .red-social{
    text-align: center;
    padding-bottom: 7px;
}

/* ====================================== */

/* @media screen and (max-width: 600px){


    .flex-container{
        display: flex;
        margin: 0;
    }
    .column-c{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .boton{
        padding: 7px 0;
    }

} */

@media screen and (max-width: 800px){
		.pie .grupo-1{
			width: 80%;
			grid-template-columns: repeat(1, 1fr);
			grid-gap: 30px;
			padding: 35px 0px;
	}

    .fca-responsive{
        width: 100px;
        height: 10%;
    }
    svg{
        width: 100%;
    }

    .caja{
        display: flex;
        width: 100%;
        position: relative;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .scroll{
        width: auto;
        height: 65%;
    }
    .navigation-up{
        width: 40px;
        margin-top: 8px;
    }
    .navigation-down{
        width: 40px;
    }

    /* .flex-container{
        flex: 100%;
    } */
}