@charset "UTF-8";
/*paleta de colores*/
/*tamaños de fuentes*/
/*breackpoints*/
/*tamaño img*/
/*tamaño margenes*/
/*mixins*/
* {
  padding: 0px;
  margin: 0px;
}

img {
  max-width: 100%;
}

hr {
  color: rgba(255, 255, 255, 0.6862745098);
}

h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(234, 225, 81, 0.5019607843);
  font-weight: 700;
  font-size: 1rem;
}

h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5019607843);
  font-weight: bold;
  font-size: 0.8rem;
  margin-left: 0.3rem;
  margin-top: 1rem;
}

h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(234, 225, 81, 0.5019607843);
  margin-top: 1rem;
  font-size: 0.8rem;
}

/*body*/
body {
  background-color: #000000;
  font-family: "Roboto", sans-serif;
  margin-top: 10px;
}

/*header*/
.main_header {
  margin-top: 5rem;
}
.main_header .navbar {
  width: 100%;
  background-color: #000000;
}
.main_header img {
  width: 9rem;
}
.main_header img:hover {
  transform: scale(0.9, 0.9);
}
.main_header .nav-link.active {
  color: rgba(234, 225, 81, 0.5019607843);
  font-weight: 700;
  font-size: 1.2rem;
}
.main_header .navbar-toggler {
  color: #000000;
  border: none;
}
.main_header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28234, 225, 81, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.main_header .offcanvas-header {
  background-color: #000000;
}
.main_header .offcanvas-header img {
  width: 3rem;
}
.main_header .offcanvas-header img:hover {
  transform: none;
}
.main_header .btn-close {
  background-color: rgba(234, 225, 81, 0.5019607843);
}
.main_header .offcanvas-body {
  background-color: #000000;
}
.main_header a {
  color: rgba(255, 255, 255, 0.5019607843);
}

/*footer*/
.redes_footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}
.redes_footer a {
  font-size: 1.5rem;
  text-decoration: none;
  list-style: none;
}
.redes_footer :hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .navbar img {
    width: 10rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  .redes_footer {
    justify-content: flex-end;
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .main_header {
    margin-bottom: 6rem;
  }
  .navbar img {
    width: 15rem;
  }
  h1 {
    font-size: 2rem;
  }
}
h1 {
  margin: 1rem 0px;
}

.padre-track, .playlist, .sets {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.padre-track .track img, .padre-track .track-musica img, .playlist .track img, .playlist .track-musica img, .sets .track img, .sets .track-musica img {
  -webkit-box-shadow: 0px 0px 10px 0px #535353;
  -moz-box-shadow: 0px 0px 10px 0px #535353;
  box-shadow: 0px 0px 10px 0px #535353;
  width: 10rem;
  transition: width 0.5s;
}
.padre-track .track img:hover, .padre-track .track-musica img:hover, .playlist .track img:hover, .playlist .track-musica img:hover, .sets .track img:hover, .sets .track-musica img:hover {
  width: 9rem;
}

@media (min-width: 768px) {
  .padre-track, .playlist, .sets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}
@media (min-width: 1200px) {
  .padre-track .track img, .padre-track .track-musica img, .playlist .track img, .playlist .track-musica img, .sets .track img, .sets .track-musica img {
    width: 15rem;
    transition: width 0.5s;
  }
  .padre-track .track img:hover, .padre-track .track-musica img:hover, .playlist .track img:hover, .playlist .track-musica img:hover, .sets .track img:hover, .sets .track-musica img:hover {
    width: 14rem;
  }
}
.main_bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  gap: 0.3rem;
}
.main_bio .card_p {
  margin: 0px 20px;
  color: rgba(234, 225, 81, 0.5019607843);
  font-weight: 100;
}
.main_bio .card_img {
  width: 15rem;
}

@media (min-width: 768px) {
  .card_p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .main_bio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .main_bio .card_p {
    font-size: 1.5rem;
    margin-right: 80px;
  }
  .main_bio .card_img {
    width: 20rem;
  }
}
@media (min-width: 768px) {
  .playlist, .sets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (min-width: 1200px) {
  .playlist .track-musica img {
    width: 15rem;
    transition: width 0.5s;
  }
  .playlist .track-musica img:hover {
    width: 14rem;
  }
  .sets .track-musica img {
    width: 15rem;
    transition: width 0.5s;
  }
  .sets .track-musica img:hover {
    width: 14rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
.carousel-inner {
  margin-bottom: 10.8rem;
}

iframe {
  max-width: 100%;
}

.videos_father {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0px 30px;
}

@media (min-width: 1200px) {
  .videos_father {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
    padding: 1rem;
  }
}
.main-contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
.main-contacto img {
  width: 10rem;
}

input, textarea {
  background-color: rgba(255, 255, 255, 0.6862745098);
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
form .form_campos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(234, 225, 81, 0.5019607843);
  font-size: 0.8rem;
}

.boton-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #000000;
  font-weight: bold;
  color: rgba(234, 225, 81, 0.5019607843);
}
.boton-form:hover {
  color: #ffffff;
}

.email-cel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-bottom: -1px;
}

.boton-descargar button {
  background-color: rgba(234, 225, 81, 0.5019607843);
  border: 1px solid rgba(234, 225, 81, 0.5019607843);
  padding: 0.3rem;
  font-weight: bold;
}
.boton-descargar button:hover {
  transform: scale(0.9, 0.9);
}

@media (min-width: 768px) {
  .main-contacto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 5rem;
  }
  .main-contacto img {
    width: 20rem;
  }
  form .form_campos {
    font-size: 1.2rem;
  }
  .boton-form {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .main-contacto img {
    width: 20rem;
  }
  form .form_campos {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=styles.css.map */
