.logo{
    max-width: 100px;
}
.banner img{
    max-width: 250px;
}
.nav-bar a.burger {
    display:none;
    position: absolute;
    right: 0;
    top: 0;
  }
.nav-bar #page-links{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
#page-links a{
    width: 50%;
    padding-top: 0px;
    padding-left: 0px;
    transition: background-color 1s;
}
#page-links a:hover{
    box-shadow: 0 8px 16px 0 rgba(167, 163, 163, 0.19), 0 6px 20px 0 rgba(167, 163, 163, 0.19);
    background-color: rgba(167, 163, 163, 0.19);
}
.info,.info-index{
    align-items: center;
    justify-content: center;
}
.gig-display{
    width: 80%;
    min-height: 200px;
    transition: background-color 1s;
    box-shadow: none;
}
.gig-image{
  max-width: 100px;
}
.gig-info-cont{
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gig-display:hover{
    box-shadow: 0 8px 16px 0 rgba(167, 163, 163, 0.19), 0 6px 20px 0 rgba(167, 163, 163, 0.19);
    background-color: rgba(167, 163, 163, 0.19);
}
.music{
    width: 560px;
    height: 320px;
}

.member{
    height: 500px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    transition: background-color 1s;
    box-shadow: none;
}
.member div{
    flex: 50%;
}
.member .img-cont{
    height: 400px;
    width: 400px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(167, 163, 163, 0.19), 0 6px 20px 0 rgba(167, 163, 163, 0.19);
}

.fade-in{
    opacity: 0;
    transition: opacity 250ms ease-in;
  }
.fade-in.appear{
    opacity:1;
}
.from-left{
    transform:translateX(-50%)
}
.from-right{
    transform:translateX(50%)
}
.from-left,.from-right{
    transition: transform 650ms ease-in,opacity 750ms ease-in;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.from-left.appear,.from-right.appear{
    transform: translateX(0);
    opacity: 1;
}
#contact-frm{
    flex-direction: row;
    width: 75%;
}
.form-items{
    flex-direction: column;
    flex:50%;
}
.vh{
    padding-bottom: 19vh;
}

.foot-inf{
    display: flex;
    flex-direction: row;
    width:100%;
    justify-content: center;
    align-content: center;
    min-height: 65px;
    margin-bottom: 20px;
}
.foot-left{
    display: flex;
    flex-direction: row;
    flex: 50%;
    text-align: left;
    padding-left: 10px;
}
.foot-left a{
    text-decoration: none;
    color: rgb(188, 184, 184);
    font-size: 10px;
    padding: 0px 5px 10px 10px;
}
.foot-left-1, .foot-left-2{
    display: flex;
    flex:50%;
    border-right: 2px grey solid;
    flex-direction: column;

}
.foot-right{
    display: flex;
    flex-direction: row;
    flex: 50%;
    align-items: center;
    justify-content: flex-start;
}
.foot-right a{
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    color:white;
}

