:root{
--fondo-menu-footer:  hsl(219, 25%, 21%);
}

.bg-jumbo{
  background-color: var(--fondo-menu-footer);
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-image: linear-gradient(to bottom right, rgb(171, 40, 189), rgb(34, 132, 177));
  /*   background-image: url(../img/fondobordenegro.png); */
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: black;
}

/*ReCaptcha*/

#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -78px 0 0 0 !important;
  width: 302px !important;
  height: 76px !important;
  z-index: -999999;
  opacity: 0;
}

/*CENTRAR ELEMENTOS*/

.col-center {
  float: none;
  margin: 0 auto;
  text-align: center;
}
.g-recaptcha {
  display: inline-block;
}

/* CENTRAR DENTRO DE UN DIV */
.centrar {
  text-align: center;
}

/* AGRADECIMIENTO CONTACTO */

/* CARGA */

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#contenedor_carga {
  top: 0;
  background-color: rgba(35, 35, 35, 1);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10000;
}

#carga {
  border: 15px dotted #e0ad21;
  border-top-color: #efb810;
  border-top-style: dotted;
  height: 100px;
  width: 100px;
  border-radius: 100%;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: girar 2s linear infinite;
  -o-animation: girar 2s linear infinite;
  animation: girar 2s linear infinite;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ----------- */

/* INTERLINEADO DE PARRAFOS */

.ptrayectoria {
  line-height: 20px;
  text-align: justify;
  color: white;
}

p {
  line-height: 1.75;
}

.subtitulo {
  color: white;
}

/* FUENTE */

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin-top: 100px; 
  color: #ffbf00
}

.anton{
  font-family: "anton";
  text-shadow: 2px 2px 2px black;
}

h5 {
  font-family: "Montserrat", sans-serif;
}

/* SOMBRA PARALELA TEXTO */

h2,
h3 {
  font-family: "Bungee", sans-serif;
  text-shadow: 2px 2px 2px black;
}

/* SUPERPONER ELEMENTO*/

div.fixed,
.float {
  position: fixed;
  z-index: 1;
  float: right;
  bottom: 10%;
  right: 0;
  width: 200px;
}
a.color {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  font-family: "Poppins";
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
}
a.color:hover {
  animation: animate 8s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
a.color:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
  opacity: 0;
  transition: 0.5s;
}
a.color:hover:before {
  animation: animate 8s linear infinite;
}

div.fixed2 {
  position: fixed;
  z-index: 1;
  bottom: 5%;
  right: 0;
  width: 200px;
}
a.color2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  font-family: "Poppins";
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
}
a.color2:hover {
  animation: animate 8s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
a.color2:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
  opacity: 0;
  transition: 0.5s;
}
a.color2:hover:before {
  animation: animate 8s linear infinite;
}

/* BOTÓN DE COLORES*/

.bt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
}
.bt:hover {
  animation: animate 8s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.bt:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
  opacity: 0;
  transition: 0.5s;
}
.bt:hover:before {
  animation: animate 8s linear infinite;
}

/* VIDEO RESPONSIVO */

header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 43rem;
  width: 100%;
  overflow: hidden;
  /* modificacion */
  /* top: 65px; 
  margin-bottom: 110px;
  height: 0px; */
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 50%;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

/*@media (pointer: coarse) and (hover: none) {
  header {
    background: url("../img/header-bg.jpg") black no-repeat center center scroll;
  }
  header video {
    display: none;
  }
}*/

.video-responsive {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
  border: none;
  border-radius: 10px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* SPOTIFY RESPONSIVO */

@media only screen and (max-width: 600px){
header {
  position: relative;
  background-color: black;
  height: 0;
  top: 65px;
  min-height: 14rem;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  /* modificacion */
  /* top: 65px; 
  margin-bottom: 110px;
  height: 0px; */
}  
  
.spotifyboton{
  display: block;
  position: relative;
  padding-top: 10px; 
  width: 70%;
  height: auto; 
  overflow:hidden;
  border: none;
margin-left: auto;
margin-right: auto;
}
}

.spotify-responsive {
  position: relative;
  height: 390px;
}

.spotify-responsive iframe,
.spotify-responsive object,
.spotify-responsive embed {
  position: absolute;
  top: 0;
  border: none;
  height: 100%;
  left: 0;
  width: 100%;
}

/* COLUMNA NUESTRA HISTORIA*/

.rowhistoria {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
}

/* ELEMENTOS PARA EL ASPECTO DE LAS SECCIONES*/

@media (min-width: 768px) {
  section {
    padding: 100px;
  }
}

/* .villeta {
  padding: 10px;
  inline-size: 50px;
} */
.page-section {
  padding: 0;
  padding-bottom: 50px;
}


.page-section h2.section-heading {
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #efb810;
}

.page-section h3.section-subheading {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 75px;
  text-transform: none;
}

/* ESQUINAS REDONDEADAS EN IMAGENES */

.potrait{
background-color: whitesmoke; 
padding: 20px;
}

.fechas{
margin: auto;
width: 40%;
}

@media only screen and (max-width: 600px){
.potrait{
padding: 5px;
}

.fechas{
  margin: auto;
  width: 100%;
  }
}


/* img {
  border-radius: 10px 10px 10px 10px;
} */
img .img-fluid {
  border-radius: 10px 10px 0 0;
}
img.img-normal {
  border-radius: 0 0 0 0;
  width: 100%;
}

/* BOTONES*/

.btn1 {
  font-size: 7px;
  padding: 10px 20px;
}

.btn-xl {
  font-size: 18px;
  padding: 20px 40px;
}

.btn-primary {
  color: #fff;
  background-color: #0093d3;
  border-color: #0093d3;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: #ff9900 !important;
  border-color: #ff9900 !important;
  color: white;
}

.btn-primary:active,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important;
}

/* NAVEGADOR */

#mainNav {
  background-color: #212529;
}

#mainNav .navbar-toggler {
  font-size: 12px;
  right: 0;
  padding: 13px;
  text-transform: uppercase;
  color: white;
  border: 0;
  background-color: #000000;
  font-family: "poppins", sans-serif;
}

#mainNav .navbar-brand {
  color: #fed136;
  font-family: "poppins", sans-serif;
}

#mainNav .navbar-brand.active,
#mainNav .navbar-brand:active,
#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover {
  color: #fec503;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-size: 90%;
  font-weight: 400;
  padding: 0.75em 0;
  letter-spacing: 1px;
  color: white;
  text-shadow: 2px 2px 2px black;
  font-family: "poppins", sans-serif;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #fed136;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 25px;
    padding-bottom: 25px;
    transition: padding-top 0.3s, padding-bottom 0.3s;
    border: none;
    background-color: transparent;
  }
  #mainNav .navbar-brand {
    font-size: 1.75em;
    transition: all 0.3s;
    /* modificacion */
   /*  margin-top: -15px; */
  }
  #mainNav .navbar-nav .nav-item .nav-link {
    padding: 1.1em 1em !important;
  }
  #mainNav.navbar-shrink {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--fondo-menu-footer);
    box-shadow: 0 0 15 black;
  }
  #mainNav .navbar-shrink .navbar-brand {
    font-size: 1.25em;
    padding: 12px 0;
  }
}

/* NOTAS DE PRENSA Y MODALS*/
@media (min-width: 767px) {
  #notas .notas-item {
    margin: 0 0 30px;
  }
}

#notas .notas-item {
  right: 0;
  margin: 0 0 15px;
}

#notas .notas-item .notas-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
}

#notas .notas-item .notas-link .notas-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all ease 0.5s;
  opacity: 0;
  background: rgba(254, 209, 54, 0.9);
}

#notas .notas-item .notas-link .notas-hover:hover {
  opacity: 1;
}

#notas .notas-item .notas-link .notas-hover .notas-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}

#notas .notas-item .notas-link .notas-hover .notas-hover-content i {
  margin-top: -12px;
}

#notas .notas-item .notas-link .notas-hover .notas-hover-content h3,
#notas .notas-item .notas-link .notas-hover .notas-hover-content h4 {
  margin: 0;
}

#notas .notas-item .notas-caption {
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-width: 400px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
  background-color: #fff;
}

#notas .notas-item .notas-caption h4 {
  margin: 0;
  text-transform: none;
}

#notas .notas-item .notas-caption p {
  font-size: 16px;
  font-style: italic;
  margin: 0;
}

#notas * {
  z-index: 2;
}

.notas-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.notas-modal .modal-content {
  padding: 100px 0;
  text-align: center;
}

.notas-modal .modal-content h2 {
  font-size: 3em;
  margin-bottom: 15px;
}

.notas-modal .modal-content p {
  margin-bottom: 30px;
}

.notas-modal .modal-content p.item-intro {
  font-size: 16px;
  font-style: italic;
  margin: 20px 0 30px;
}

.notas-modal .modal-content ul.list-inline {
  margin-top: 0;
  margin-bottom: 30px;
}

.notas-modal .modal-content img {
  margin-bottom: 30px;
}

.notas-modal .modal-content button {
  cursor: pointer;
}

.notas-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 75px;
  height: 75px;
  cursor: pointer;
  background-color: transparent;
}

.notas-modal .close-modal:hover {
  opacity: 0.3;
}

.notas-modal .close-modal .lr {
  /* Safari y Chrome */
  z-index: 1051;
  width: 1px;
  height: 75px;
  margin-left: 35px;
  /* IE 9 */
  transform: rotate(45deg);
  background-color: #212529;
}

.notas-modal .close-modal .lr .rl {
  /* Safari y Chrome */
  z-index: 1052;
  width: 1px;
  height: 75px;
  /* IE 9 */
  transform: rotate(90deg);
  background-color: #212529;
}

/* TRAYECTORIA */

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: '';
  background-color: #e9ecef;
}

.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
  display: table;
  content: ' ';
}

.timeline > li:after {
  clear: both;
}

.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #fed136;
}

.timeline > li .timeline-image h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.timeline > li:last-child {
  margin-bottom: 0;
}

.timeline .timeline-heading h4 {
  margin-top: 0;
  color: #ffbf00;
}

.timeline .timeline-heading h4.subheading {
  text-transform: none;
}

.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {

  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {

  .timeline > li {
    min-height: 150px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1200px) {

  .timeline > li {
    min-height: 170px;
  }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
}

/* INTEGRANTES */

.integrantes {
  margin-bottom: 50px;
  text-align: center;
}

.integrantes img {
  width: 225px;
  height: 225px;
}

.integrantes h4 {
  margin-top: 25px;
  margin-bottom: 0;
  text-transform: none;
}

.integrantes p {
  margin-top: 0;
}

/*FOOTER */

.footer {
  display: block;
  padding: 25px;
  text-align: center;
  position: relative;
  top: 115px;
}

.bgfooter{
  background-color: var(--fondo-menu-footer);
}

.footer span.copyright {
  font-size: 65%;
  color: #ffbf00;
  line-height: 0;
  text-transform: none;
}

.footer ul.quicklinks {
  line-height: 40px;
  margin-bottom: 0;
}

/* BOTONES REDES SOCIALES FOOTER*/

ul.social-buttons {
  margin-bottom: 0;
}

ul.social-buttons li a {
  font-size: 20px;
  line-height: 50px;
  display: block;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  color: white;
  border-radius: 100%;
  outline: none;
  background-color: #212529;
}

li.tw a:active,
li.tw a:focus,
li.tw a:hover {
  background-color: #00b7ff;
}

li.fb a:active,
li.fb a:focus,
li.fb a:hover {
  background-color: #1a28a3;
}

li.in a:active,
li.in a:focus,
li.in a:hover {
  background-color: #a31a91;
}

li.tk a:active,
li.tk a:focus,
li.tk a:hover {
  background-color: #000000;
}
