* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background-color: #EFF0EF;
  color: #3A4145;
  font-family: 'Roboto', sans-serif;
}
h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
p {
  max-width: 508px;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 32px;
}
p.centered {
  text-align: center;
}
a {
  color: #3A4145;
  text-decoration: none;
}
a:hover {
  color: #B3B9B5;
}
a.light {
  color: #FFF;
  text-decoration: none;
}
a.light:hover {
  color: #B3B9B5;
}
.container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  padding: 48px 32px;
}
.container.white {
  background-color: #FFF;
}
.container.dark {
  background-color: #3A4145;
  color: #FFF;
}
.mobile-menu {
  display: none;
}
.mobile-menu .menu-toggle {
  display: none;
  border: 0;
  padding: 0;
  background-color: transparent;
  max-width: 80%;
  min-width: 200px;
  width: auto;
  background-image: url(./img/menu_bg.svg);
  color: #fff;
  height: 63px;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu .menu-toggle img {
  height: 12px;
  margin-top: 4px;
}
@media only screen and (max-width: 600px) {
  .mobile-menu .menu-toggle {
    display: flex;
  }
}
.mobile-menu .mobile-menu-list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.mobile-menu .mobile-menu-list li {
  text-align: center;
}
.mobile-menu .mobile-menu-list li::after {
  display: none;
}
@media only screen and (max-width: 600px) {
  .mobile-menu {
    display: block;
  }
}
nav.menu {
  margin-top: 32px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  width: 681px;
  height: 63px;
  display: flex;
  justify-content: center;
  z-index: 100;
}
nav.menu .logo-container {
  position: absolute;
  top: -60px;
  left: 50%;
}
nav.menu .logo-container img.logo {
  position: relative;
  left: -50%;
}
nav.menu ul {
  background-image: url(./img/menu_bg.svg);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  color: #FFF;
  font-size: 16px;
}
nav.menu ul li {
  line-height: 63px;
  text-transform: uppercase;
}
nav.menu ul li::after {
  content: "/";
  display: inline-block;
  color: #B3B9B5;
  margin: 0 16px;
}
nav.menu ul li:last-of-type::after {
  display: none;
}
@media only screen and (max-width: 600px) {
  nav.menu ul {
    display: none;
  }
}
.container.intro {
  height: 90vh;
  background-image: url(./img/header-4.jpg);
  background-position: bottom center;
  background-size: auto 110%;
}
.container.intro .wave {
  position: absolute;
  width: 100%;
  bottom: -4px;
  height: 191px;
}
.container.band ul.band-members {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 828px;
}
.container.band ul.band-members li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  margin-bottom: 16px;
  max-width: 260px;
}
.container.band ul.band-members li img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  margin-bottom: 32px;
}
.container.band ul.band-members li .member {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.container.band ul.band-members li .member p {
  margin-top: 8px;
  margin-bottom: 0;
  width: auto;
}
.container.banner {
  padding: 0;
}
.container.banner img {
  width: 100%;
}
.container.banner::before {
  content: " ";
  background-image: url(./img/banner-top.svg);
  position: absolute;
  left: 0;
  right: 0;
  height: 37px;
  background-size: 100% 37px;
}
@media only screen and (max-width: 600px) {
  .container.banner::before {
    height: 20px;
    background-size: 100% 20px;
  }
}
.container.gigs {
  background-image: url(./img/gigs-bg-noframe-transparent.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.container.gigs h1 {
  padding: 4px 8px;
}
.container.gigs p {
  line-height: 36px;
}
.container.gigs p span {
  padding: 4px 8px;
}
@media only screen and (max-width: 600px) {
  .container.gigs {
    background-image: url(./img/gigs-bg-noframe-transparent.jpg);
    background-size: cover;
    background-position: center center;
  }
}
.container.gigs::after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  background-image: url(./img/dark-wave.svg);
  top: -13px;
}
.container.videos iframe {
  margin-bottom: 16px;
  width: 600px;
}
@media only screen and (max-width: 600px) {
  .container.videos iframe {
    width: 350px;
  }
}
.container.videos::after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  background-image: url(./img/dark-wave.svg);
  top: -13px;
}
.container.organizers::after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 46px;
  background-image: url(./img/dark-wave.svg);
  top: -13px;
}
.container.organizers .button {
  height: 40px;
  padding: 0 16px 0 8px;
  border: 1px solid #B3B9B5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.container.organizers .button img {
  margin-right: 8px;
}
.container.organizers .button:hover img {
  opacity: 0.5;
}
.container.contact p.contact-info {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  line-height: 16px;
}
.container.contact p.contact-info img {
  margin-right: 8px;
  max-height: 16px;
}
.container.contact p.contact-streamings {
  margin: 32px 0;
  font-weight: bold;
}
.container.contact .streamings-icons {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
}
.container.contact .streamings-icons a:hover {
  opacity: 0.8;
}
.container.contact .streamings-icons img {
  height: 16px;
}
