* {  
  margin: 0;
  padding: 0;  
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;  
  background: black;    
  font-family: 'Cinzel', serif;  
  color: #FFF;
}

h2 {
  font-size: 40px;
  font-weight: 100;
}

h3 {
  font-size: 30px;
  font-weight: 100;  
}

h4 {
  font-size: 20px;
  font-weight: 100;  
}

#bio {
  display: none;
}

.slbContent {
  padding: 30px;
}

.content{
  z-index: 99;
  margin-top: 15px;
  position: relative;
}

.buttom {
  text-decoration: none;
  color: #FFF;  
  border: 1px solid #FFF;
  padding: 5px 15px;
  margin-top: 10px;
  display: inline-block;
  font-weight: bolder;  
  font-size: 12px;
}

.buttom:hover {
  color: #FFD700;  
  border: 1px solid #FFD700;
}



.inner-container div > img {
  /* border: 1px solid #FFD700; */
  width: 100%;
}

.font-logo {
  width: 250px;  
  border: none;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;  
}

.container {
  width: 100%;
  padding: 0;
  margin: 0;
}

.top-container {
  width: 100%;
  position: relative;
  display: flex;  
  flex-direction: column;  
  background-image: url(../images/main-bg.jpg);
  background-size: cover;
  width: 100%;
  height: auto;
  background-position: center center;
}

.top-container header {
  width: 100%;
  z-index: 3;
}

.top-container header nav > ul.menu {
  list-style: none;
  list-style-type: none;
  display: flex;
  flex-direction: column;  
  justify-content: center;
  margin-top: 30px;  
  align-items: center;
}

.top-container header nav > ul.menu .logo-center {
  display: none;
  position: relative;
  background-image: url('../images/logo-eternia-2.png');
  background-size: 300px 212px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 300px;
  height: 212px;
  padding: 0;
  -webkit-animation: action 2s infinite  alternate;
  animation: action 2s infinite  alternate; 
}

@-webkit-keyframes action {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

@keyframes action {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

.top-container header nav > ul.menu .logo-top {
  display: block;
  position: relative;
}

.top-container header nav > ul.menu li {
  padding: 5px 30px;  
}

.eye {
  position: absolute;  
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 85px;
  left: 135px;
}

.eye:after { /*pupil*/
  position: absolute;
  bottom: 15px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: #ef3401;
  border: 3px solid #000;
  border-radius: 50%;
  content: " ";
}

.top-container header nav > ul.menu li > a {
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
}

.top-container header nav > ul.menu li > a:hover {
  color: #FFD700;  
}

.top-container .divider {
  display: none;
}

.top-container .content {       
  padding: 30px;
}

.main-container {  
  margin-top: 0;
  padding: 15px;
}

.bio {
  flex-direction: column !important;
  font-size: 16px;
  font-weight: 400;   
}

.bio p {
  margin-bottom: 15px;
  
}

.singles {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(1, 1fr);      
  width: 100%;  
}

.singles .single {
  margin-bottom: 40px;
}

.albumes {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(1, 1fr);      
  width: 100%;  
}

.albumes .single {
  margin-bottom: 40px;
}

.band-members {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr); 
  justify-content: center;
  align-items: center; 
}

.band-members > div{
  margin-bottom: 40px;
}

.member, .cover, .flyer img, .gallery img {
  border: 1px solid #2e2e2e;
}


#gallery {
  margin-top: 60px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 15px;      
  
}

.gallery a img {
  width: 100%;
}

footer p {
  font-size: 11px;
  color: #FFF;  
  text-align: center;
}

footer p a {
  color: #FFD700;
  text-decoration: none;
  
}


.wing-left {
  bottom: 65px;
  left:-125px;
  z-index:-2;
  animation: flap 2s infinite;
  transform-origin: right ;
}

.side-image, .center-image {
  border: 1px solid #2e2e2e;
}

 

.gallery a {
  /* border: 1px solid #FFD700;       */
  box-sizing: content-box;
}

.gallery a img {
  width: 100%;
}

@keyframes flap {
 50% {transform: rotate(50deg);}
}

.intro {
  display: none;
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
  .intro {
    display: none;
  }
}

@media screen and (min-width: 768px) {

    .intro {
      display: flex;
    }

    .top-container header nav > ul.menu li {
      padding-left: 5px;
      padding-right: 5px;
    }

    .top-container header nav > ul.menu {
      flex-direction: row;
    }

    .top-container header nav > ul.menu .logo-center {
      display: block;
    }
    
    .top-container header nav > ul.menu .logo-top {
      display: none  ;
    }
    
    .top-container .divider {      
      position: absolute;
      display: flex;
      width: 100%;
      top: 680px;
      justify-content: center;
    }

    .inner-container {  
      display: flex;
      flex-direction: row;
      max-width: 1024px;
      justify-content: space-between;
      width: 100%;
    }
    
    .top-container .divider .side-image {
      width: 255px;
    }

    .top-container .content {      
      width: 100%;
      display: flex;
      justify-content: center;      
    }

    .top-container .inner-content {      
      padding-top: 120px;
      flex-direction: column;
    }

    .main-container {           
      display: flex;
      justify-content: center;
    }

    .singles-container {      
      width: 100%;
    }

    .singles {      
      grid-template-columns: repeat(2, 1fr);            
    }

    .albumes {            
      grid-template-columns: repeat(4, 1fr);            
    }

    .band-members {   
      display: grid; 
      grid-template-columns: repeat(2, 1fr); 
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: auto auto;
      grid-gap: 10px;      
    }

    .flyer {
      width: 400px !important;
      margin: 0 auto;
      display: block;
      text-align: center;
    }
    
}

/* Desktop */
@media (min-width: 1025px) {

  .intro {
    width: 100%;
    display: flex;    
  }

  .singles {      
    grid-template-columns: repeat(3, 1fr);            
  }

  .albumes {            
    grid-template-columns: repeat(4, 1fr);            
  }

  .band-members {    
    grid-template-columns: repeat(5, 1fr); 
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    grid-gap: 10px;      
  }

  .top-container {
    height: 100vh;
    margin-bottom: 270px;      
  }

  .top-container header nav > ul.menu li {
    padding-left: 40px;
    padding-right: 40px;
  }



}

.clear-fix {
  clear: both;
}
