@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --black: #272727;
  --white: #f8f8f9;
  --green: #8df906;
  --blue: #4267b2;
  --bg-dark: #1c1e1f;
  --bg-black: #212121;
}

header {
  z-index: 999;
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  padding: 15px 10vw;
  margin-bottom: 20px;
  background: #262a2b;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
header ul {
  margin-top: 12.5px;
}
header ul.menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
header ul.mobile-menu {
  transform: translateY(-100vh);
}
header ul li {
  list-style: none;
}
header ul li a {
  font-size: 20px;
  text-align: center;
  margin: 0 12.5px;
  color: var(--white);
  text-decoration: none;
  transition: 0.5s;
}
header ul li a:hover {
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--green);
}
header .socials {
  position: fixed;
  top: 12.5px;
  right: 50px;
  z-index: 1000;
  font-size: 30px;
  text-align: end;
}
@media screen and (max-width: 1100px) {
  header .socials {
    display: none;
  }
}
header .socials a {
  color: var(--white);
}
header .socials a i {
  margin-left: 10px;
  cursor: pointer;
  transition: ease-in-out 0.1s;
}
header .socials a i:hover {
  transform: scale(1.1) translateY(-1px);
}
header .socials a i:hover.fa-soundcloud {
  text-shadow: 0 2px 15px #fe5000;
}
header .socials a i:hover.fa-facebook {
  text-shadow: 0 2px 15px #4267b2;
}
header .socials a i:hover.fa-youtube {
  text-shadow: 0 2px 15px #f00;
}
@media screen and (max-width: 1100px) {
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    height: 60px;
  }
  header.active {
    flex-wrap: wrap;
    align-items: center;
    height: 90vh;
    border-radius: 0 0 20px 20px;
    transition: 0.5s;
  }
  header.active ul.mobile-menu {
    -webkit-animation: slide-bottom 0.5s both;
    animation: slide-bottom 0.5s both;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header.active ul.mobile-menu li {
    margin: 10px 0;
    padding: 10px 5px;
    width: 125px;
    border-radius: 5px;
    border: 1px solid var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: 0.5s;
  }
  header.active ul.mobile-menu li:hover {
    box-shadow: 0 2px 15px rgba(141, 249, 6, 0.3);
  }
  header.active ul.mobile-menu li:hover a {
    letter-spacing: 0;
    font-weight: 600;
    color: var(--green);
  }
  header.active ul.mobile-menu li a {
    font-size: larger;
  }
  header ul.menu {
    display: none;
  }
  header ul.mobile-menu {
    display: none;
  }
  header .toggle-menu {
    width: 40px;
    height: 40px;
    background: url("../img/menu-bars.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
  header .toggle-menu.active {
    background: url("../img/menu-close.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }
}
header a.logo {
  text-align: center;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding: 0 25px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: 0.5s;
}
header a.logo:hover {
  letter-spacing: 3px;
  transform: scale(1.1);
}

/* ----------------------------------------------
 * Generated by Animista on 2021-9-2 1:11:42
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translate(0, -100vh);
    transform: translate(0, -100vh);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translate(0, -100vh);
    transform: translate(0, -100vh);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.banner {
  height: 85vh;
  width: 100%;
  background-image: url("../img/logo.png");
  background-color: var(--black);
  background-size: 75vh;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .banner {
    background-size: 50vh;
  }
}
.banner .content {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 79vh;
  font-size: 50px;
  color: var(--white);
}
.banner .content i {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.about {
  box-shadow: 0 -8px 10px -6px rgba(0, 0, 0, 0.5);
}
.about .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  color: var(--white);
}
.about .card h2 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  margin: 50px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .about .card h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 800px) {
  .about .card h2 {
    font-size: 50px;
    margin: 35px 0;
  }
}
@media screen and (max-width: 500px) {
  .about .card h2 {
    font-size: 40px;
    margin: 25px 0;
  }
}
.about .card video {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--black);
}
.about .card .text.desc {
  margin: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
}
.about .card .text.desc p {
  font-size: 20px;
}
.about .card hr {
  width: 75%;
  margin: 75px auto;
}
.about .card img {
  width: 25%;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.about .card .text.musicians {
  background: var(--black);
  display: flex;
  justify-content: center;
  margin: 25px auto;
  padding: 15px;
  width: 65%;
  color: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.about .card .text.musicians p {
  margin: 0 50px;
}
.about .card .text.musicians span {
  color: var(--green);
  text-transform: uppercase;
  font-weight: bold;
}
.about .card .text.perform {
  margin: 50px auto;
  width: 50%;
}
.about .card .text.perform p {
  font-size: 20px;
}
.about .card .text.perform p a {
  color: var(--green);
  text-decoration: underline;
  font-style: italic;
}
@media screen and (max-width: 1200px) {
  .about .card .text.desc {
    max-width: 75%;
  }
  .about .card .text.desc p {
    font-size: 19px;
  }
  .about .card hr {
    width: 85%;
  }
  .about .card video {
    width: 75%;
  }
  .about .card img {
    width: 50%;
  }
  .about .card .text.musicians {
    width: 75%;
  }
  .about .card .text.musicians p {
    margin: 0 25px;
  }
  .about .card .text.perform {
    width: 75%;
  }
  .about .card .text.perform p {
    font-size: 19px;
  }
}
@media screen and (max-width: 800px) {
  .about .card .text.desc {
    max-width: 80%;
  }
  .about .card .text.desc p {
    font-size: 18px;
  }
  .about .card video {
    width: 90%;
  }
  .about .card img {
    width: 75%;
  }
  .about .card .text.musicians {
    width: 70%;
    flex-wrap: wrap;
  }
  .about .card .text.musicians p {
    margin: 10px 20px;
    font-size: 16px;
  }
  .about .card .text.perform {
    width: 80%;
  }
  .about .card .text.perform p {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .about .card img {
    width: 95%;
  }
}

.musics .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 25px 25px 75px 25px;
  text-align: center;
  color: var(--black);
}
.musics .card h2 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  margin: 50px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .musics .card h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 800px) {
  .musics .card h2 {
    font-size: 50px;
    margin: 35px 0;
  }
}
@media screen and (max-width: 500px) {
  .musics .card h2 {
    font-size: 40px;
    margin: 25px 0;
  }
}
.musics .card .music-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
}
.musics .card .music-card .mp3-reader {
  height: 475px;
  background: var(--black);
  color: var(--white);
  padding: 25px;
  margin-bottom: 75px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.musics .card .music-card .mp3-reader .img {
  height: 250px;
  width: 250px;
}
.musics .card .music-card .mp3-reader .img i {
  margin-top: 15px;
  font-size: 200px;
}
.musics .card .music-card .mp3-reader .song-name {
  text-transform: uppercase;
  font-weight: 600;
  margin: 15px auto;
}
.musics .card .music-card .mp3-reader .control-buttons {
  margin: 25px auto;
}
.musics .card .music-card .mp3-reader #slider {
  -webkit-appearance: none;
  outline: none;
  width: 85%;
  height: 4px;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}
.musics .card .music-card .mp3-reader #slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  background: var(--white);
  box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.2) inset, 0.1px 8px 8px 2px rgba(0, 0, 0, 0.2);
}
.musics .card .music-card .mp3-reader .song-time {
  display: flex;
  justify-content: space-between;
  color: #808080;
  margin: 10px auto;
}
.musics .card .music-card .mp3-reader .main-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.musics .card .music-card .mp3-reader .main-btns #play-btn {
  font-size: 20px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--white);
}
.musics .card .music-card .mp3-reader .main-btns #play-btn:hover {
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--white);
}
.musics .card .music-card .mp3-reader .main-btns button {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  font-size: 27px;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 10px;
  background: rgba(0, 0, 0, 0);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  color: var(--white);
  transition: ease-in-out 0.1s;
}
.musics .card .music-card .mp3-reader .main-btns button:hover {
  transform: scale(1.1);
}
.musics .card .music-card .mp3-reader .main-btns button:active {
  transform: scale(0.9);
}
.musics .card .music-card .volume {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 50px auto;
  color: var(--white);
  background: var(--bg-black);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.musics .card .music-card .volume button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: ease-in-out 0.1s;
  background: var(--bg-black);
  color: var(--white);
}
.musics .card .music-card .volume button:active {
  transform: scale(0.9);
}
.musics .card .music-card .volume #volume {
  -webkit-appearance: none;
  outline: none;
  height: 4px;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
  background: var(--black);
}
.musics .card .music-card .volume #volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.musics .card .music-card .songs-list {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-left: 50px;
  padding: 25px 50px;
  width: 100%;
}
.musics .card .music-card .songs-list h3.title {
  font-size: 25px;
  margin-bottom: 30px;
}
.musics .card .music-card .songs-list .songs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.musics .card .music-card .songs-list .song {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45%;
  background: var(--bg-black);
  color: var(--white);
  padding: 10px;
  margin: 15px auto;
  border-radius: 15px;
}
.musics .card .music-card .songs-list .song .right {
  display: flex;
  align-items: center;
}
.musics .card .music-card .songs-list .song .right button {
  margin-left: 15px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 15px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 10px;
  outline: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: 0.1s ease-in-out;
}
.musics .card .music-card .songs-list .song .right button:hover {
  background: var(--bg-dark);
  color: var(--white);
  border: 2px solid var(--white);
  transform: scale(1.05);
}
.musics .card .music-card .songs-list .song .right button:active {
  transform: scale(0.95);
}
@media screen and (max-width: 1700px) {
  .musics .card .music-card {
    align-items: flex-start;
  }
  .musics .card .music-card .songs-list {
    padding: 20px 25px;
  }
  .musics .card .music-card .songs-list .songs {
    display: inline;
  }
  .musics .card .music-card .songs-list .song {
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  .musics .card .music-card {
    justify-content: center;
    flex-wrap: wrap;
  }
  .musics .card .music-card .songs-list {
    margin-left: 0;
    padding: 15px 15px;
  }
}
@media screen and (max-width: 800px) {
  .musics .card .music-card {
    width: 95%;
  }
  .musics .card .music-card .songs-list {
    padding: 10px 0;
  }
}
@media screen and (max-width: 600px) {
  .musics .card .music-card .songs-list {
    padding: 5px 0;
  }
  .musics .card .music-card .songs-list .songs .song {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .musics .card .music-card .songs-list .songs .song .song-name {
    margin: 5px 0;
    font-size: 15px;
  }
  .musics .card .music-card .songs-list .songs .song .right {
    margin: 5px 0;
  }
  .musics .card .music-card .songs-list .songs .song .right button {
    padding: 5px 10px;
  }
}

.videos .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: var(--white);
}
.videos .card h2 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  margin: 50px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .videos .card h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 800px) {
  .videos .card h2 {
    font-size: 50px;
    margin: 35px 0;
  }
}
@media screen and (max-width: 500px) {
  .videos .card h2 {
    font-size: 40px;
    margin: 25px 0;
  }
}
.videos .card .list-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.videos .card .list-videos iframe {
  width: 500px;
  height: 281.25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.videos .card .list-videos h3 {
  margin: 10px auto;
  font-size: 25px;
}
.videos .card .list-videos p {
  margin: 10px auto;
  font-size: 20px;
}
.videos .card .list-videos div {
  margin: 25px 15px;
  max-width: 40vw;
}
@media screen and (max-width: 1300px) {
  .videos .card .list-videos div {
    max-width: 75vw;
  }
}
@media screen and (max-width: 700px) {
  .videos .card .list-videos iframe {
    width: 300px;
    height: 168.75px;
  }
}
@media screen and (max-width: 400px) {
  .videos .card .list-videos iframe {
    width: 200px;
    height: 112.5px;
  }
}

.concerts .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: var(--black);
}
.concerts .card h2 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  margin: 50px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .concerts .card h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 800px) {
  .concerts .card h2 {
    font-size: 50px;
    margin: 35px 0;
  }
}
@media screen and (max-width: 500px) {
  .concerts .card h2 {
    font-size: 40px;
    margin: 25px 0;
  }
}
.concerts .card p {
  color: var(--white);
  letter-spacing: 2px;
}
.concerts .card iframe {
  width: 65%;
  height: 50vh;
  border-radius: 10px;
}

.photos .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: var(--black);
}
.photos .card h2 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  margin: 50px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .photos .card h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 800px) {
  .photos .card h2 {
    font-size: 50px;
    margin: 35px 0;
  }
}
@media screen and (max-width: 500px) {
  .photos .card h2 {
    font-size: 40px;
    margin: 25px 0;
  }
}

.contact .card {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: var(--white);
}
.contact .card h2 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  margin: 50px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .contact .card h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 800px) {
  .contact .card h2 {
    font-size: 50px;
    margin: 35px 0;
  }
}
@media screen and (max-width: 500px) {
  .contact .card h2 {
    font-size: 40px;
    margin: 25px 0;
  }
}
.contact .card div {
  margin: 50px auto 25px auto;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 1150px) {
  .contact .card div {
    flex-direction: column;
    align-items: center;
  }
}
.contact .card div .top {
  display: flex;
  justify-content: center;
}
.contact .card div .top i {
  font-size: 50px;
  transition: ease-in-out 0.2s;
  color: var(--white);
}
.contact .card div .top i:hover {
  transform: scale(1.1) translateY(-1px);
}
.contact .card div .top i:hover.fa-soundcloud {
  color: #FE5000;
}
.contact .card div .top i:hover.fa-facebook {
  color: #4267B2;
}
.contact .card div .top i:hover.fa-youtube {
  color: #F00;
}
.contact .card div .bottom a {
  transition: ease-in-out 0.2s;
  padding: 5px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: var(--white);
  border: 2px solid var(--black);
  color: var(--black);
  border-radius: 10px;
}
.contact .card div .bottom a:hover {
  padding: 7px 12.5px;
  background: var(--black);
  border: 2px solid var(--white);
  color: var(--white);
}
.contact .card div p {
  margin: 25px auto;
  font-size: 20px;
}
.contact .card div p i {
  font-size: 30px;
  margin: auto 15px;
}
@media screen and (max-width: 475px) {
  .contact .card .bottom {
    display: flex;
    flex-direction: column;
  }
  .contact .card .bottom i {
    margin: 10px auto;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 150vh;
  background: var(--bg-dark);
}

a {
  text-decoration: none;
  color: var(--black);
}

section {
  padding: 50px 75px;
}
@media screen and (max-width: 1300px) {
  section {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 400px) {
  section {
    padding: 50px 10px;
  }
}

footer {
  width: 100%;
  height: 50px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #262a2b;
  color: var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 550px) {
  footer {
    padding: 12.5px;
    height: 75px;
  }
}
footer .fa-heart {
  color: #df4949;
}
footer i {
  margin: auto 5px;
}
footer a {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  transition: ease-in-out 0.2s;
}
footer a:hover {
  letter-spacing: 2px;
  color: #df4949;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  font-size: 18px;
}
footer p {
  margin: auto 15px;
}

.grey {
  color: #919191;
}

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