@charset "utf-8";
/* CSS Document */




/* header */








/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */



		#quicklinks{
			display: block;
			position: relative;
			font-size: 12px;
			color: black;
			font-family: verdana;
			margin: 10px;
			margin-top: 0;
			padding-top: 10px;
		}
		
		#quicklinks ul li{
			display: inline;
			padding: 5px;
			
		}
		
		#quicklinks a{

			text-decoration: none;
			color: black;
			
			
		}





		
		.quick-connect-links {
			position: fixed;
			top: 50vh;
			right: 0px;
			
			padding: 0;
			margin: 0;
			z-index: 10000;
			
		}
	.quick-connect-links a{
	display: block;
	position: relative;
	padding: 5px;
	margin-top: 5px;
	font-size: 20px;
	color: white;
	text-decoration: none;
	text-shadow: 2px 2px 16px #000000;
	}


	
	
 









		.reverb-footer{
			width: 100%;
			margin: 0 auto;
 
		}
	
		






.soclinks{
	
	
	z-index: 100;
	position: absolute;
	top: 30px;
	right: 50px;
	display: none;
	letter-spacing: 10px;
	
	
}

.soclinks p{
	font-size: 12px;
	color: white;
	letter-spacing: 1px;
	font-family: verdana;
	word-spacing: 3px;
	vertical-align: 3px;
}


.soclinks .fab{
	font-size: 20px;
	
}








.soclinks a{
	
	
	color: white;
	
	
}








.store-visit{
	float: right;
	height: auto;
	
	
}









.store-visit a{
	text-decoration: none;
	color: white;
	z-index: 1000;
	
	
}





.store-visit h6{
	

	
	width: auto;
	font-size: 18px;
	font-family: khand;
	

	
}
	













#menu{
	color: white;
}



#menu a
{
	text-decoration: none;
	color: rgba(217,217,217,1.00);
	transition: color 1s ease;
}

#menu a:hover
{
	color: rgba(255,255,255,1.00);
	border-bottom-width: 0px;
}

#menuToggle
{
  display: block;
  position: fixed;
  top: 10px;
  left: 10px;
  
  z-index: 2000;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle #hamcontrol
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 3000; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}



#uncheck{
	margin: 0;
	padding: 0;
	opacity: 0;
	width: 105%;
	height: 105%;
	position: fixed;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	z-index: -70;
	background-color: rgba(0,0,0,0.23);
	display: none;
	background-image: -webkit-linear-gradient(3deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.81) 100%);
	background-image: -moz-linear-gradient(3deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.81) 100%);
	background-image: -o-linear-gradient(3deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.81) 100%);
	background-image: linear-gradient(87deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.81) 100%);	
	
}



/*
 * Just a quick hamburger
 */





#menuToggle span
{
	display: block;
	width: 24px;
	height: 2px;
	margin-bottom: 3px;
	position: relative;
	background-color: rgba(255,255,255,1.00);
	z-index: 1000;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
	border-radius: 3px;
	animation: fadein 1s ease-in;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
	
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
#menuToggle span:nth-child(6){
	width: 3px;
	height: 3px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	border-radius: 50%;
	border: white solid 1px;
	align-content: center;
	text-align: center;

	
	
	
}
/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle .ham-menu-control:checked ~ span
{
	opacity: 1;
	transform: rotate(45deg) translate(-1px, -1px);
	background-color: rgba(255,255,255,1.00);
}


#menuToggle .ham-menu-control:checked ~ span:nth-child(5){
	
	display: none;
	background-color: red;
}



#menuToggle .ham-menu-control:checked {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	cursor: pointer;
	opacity: 0; /* hide this */
	z-index: 5000; /* and place it over the hamburger */
	-webkit-touch-callout: none;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

/*
 * But let's hide the middle one.
 */
#menuToggle .ham-menu-control:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
	animation: fadein 1.5s ease-in;
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle .ham-menu-control:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, 0px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
	font-family: verdana;
	margin-top: 0;
	/* [disabled]margin-left: 0; */
	margin-bottom: 0;
	position: fixed;
	width: 70vw;
	margin-right: 0;
	margin-left: -10px;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	/* to stop flickering of text in safari */
  
	transform-origin: 0% 0%;
	transform: translate(-101%, 0);
	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
	border-right: 1px inset rgba(255,255,255,1.00);
	border-bottom: 8px inset rgba(255,255,255,1.00);
	top: 0px;
	bottom: 0px;
	padding-top: 40px;
	background-color: black;
	background-size: cover;
	border-bottom-right-radius: 10px;
	background-repeat: no-repeat;
	background-position: 0% -20%;
}

#menu li
{
	font-size: 10px;
	display: block;
	text-align: left;
	padding-top: 10px;
	color: rgba(232,232,232,1.00);
	background-image: -webkit-linear-gradient(270deg,rgba(47,47,47,0.00) 74.61%,rgba(0,0,0,0.42) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(47,47,47,0.00) 74.61%,rgba(0,0,0,0.42) 100%);
	background-image: -o-linear-gradient(270deg,rgba(47,47,47,0.00) 74.61%,rgba(0,0,0,0.42) 100%);
	background-image: linear-gradient(180deg,rgba(47,47,47,0.00) 74.61%,rgba(0,0,0,0.42) 100%);
	word-spacing: 10px;
	letter-spacing: 10px;
	text-transform: none;
	white-space: normal;
	padding-left: 25px;
	padding-bottom: 10px;
	font-weight: lighter;
	border-right: 1px solid rgba(175,175,175,0.38);
	border-bottom: 1px solid rgba(175,175,175,0.38);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 6px;
	list-style-type: none;
	text-shadow: 2px 2px 9px rgba(116,116,116,1.00);
	border-top-right-radius: 173px 0px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle .ham-menu-control:checked ~ #menu
{
  transform: none;
}

#menuToggle .ham-menu-control:checked ~ #uncheck{
	animation:  exitmode .5s ease-in; 
	animation-fill-mode: forwards;
	display: block;
	opacity: 1;
	
}






#navbar ul{
	display: none;
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	letter-spacing: 3px;
	position: absolute;
	top: 10px;
	left: auto;
	right: auto;
	text-align: center;
	font-family: rock;
	width: 100%;
	
}

#navbar ul li {
	display: inline-block;
	border-radius: 5px;
	
	
}

#navbar ul li a, .dropbtn {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

#navbar ul li a:hover, .dropdown:hover .dropbtn {
 
	transform: scale(1.1);
}

#navbar ul li.dropdown {
  display: inline-block;
}
.dropdown-content {
	display: none;
	position: absolute;
	
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
	transform: scale(1.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}












@keyframes exitmode{
	
	0%{
		opacity: 0;
	}
	
	100%{
		opacity: 1;
		
	}
}



#menuToggle .ham-menu-control:checked ~ #menu li{
	animation: fadein 1.5s ease-in;

}

@keyframes fadein{
	0%{
		opacity: 0;
	}
	
	25%{
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
}



.container-fluid{
	position: absolute;
	z-index: 1000;
	display: none;
}


#nav-container {
  height: 100%;
  position: relative;
}


.dotnav-right {
  right: 10px;
  top: 50%;
  margin-top: -50px;
  height: 100px;
  z-index: 10;
  position: fixed;
}

.dotnav {
  padding: 0;
  list-style: none;
  font-size: 0.001px;
}

.dotnav > li {
  display: inline-block;
  font-size: 1rem;
  vertical-align: top;
}

.dotnav > li:nth-child(n+2) {
  margin-left: 15px;
}

.dotnav > li > a {
	display: inline-block;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border-left: 2px solid #980002;
	border-right: 2px solid #FFFFFF;
	border-bottom: 2px solid #980002;
	border-top: 2px solid #980002;
	vertical-align: top;
	overflow: hidden;
	padding: 0;
	text-indent: -999%;
	background-color: rgba(0,0,0,0.66);
}

.dotnav > li > a:hover,
.dotnav > li > a:focus {
	background-color: #FFFFFF;
	outline: none;
	-ms-transform: scale(1.5); /* IE 9 */
	-webkit-transform: scale(1.5); /* Safari 3-8 */
	transform: scale(1.5);
}

.dotnav > li > a:active {
	background-color: #FFFFFF;
}

.dotnav > li.active > a {
	background-color: #8A5F28;
}

.dotnav-vertical > li {
  display: block;
  margin-right: 10px;
}

.dotnav-vertical > li:nth-child(n+2) {
  margin-left: 0;
  margin-top: 10px;
}

.nav-tooltip + .tooltip > .tooltip-inner {
	background-color: #8A5F28;
	color: #fff;
	border: 1px solid #512DA8;
}

.nav-tooltip + .tooltip.left > .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #512DA8;
  font-family: 'Raleway', sans-serif;
  font-weight: lighter;
}



.social{
	
	display: none;
	
}



.socials{
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 0;
	z-index: 1;
}

.socials a{
	color: #000000;
	font-size: 59px;
}
.socials li
{	padding: 4px;
	list-style: none;
	border-bottom: px solid rgba(0,0,0,.1);
}
.socials li:hover 
{
	background-color: rgba(173,0,2,1.00);
}
.socials li:hover img
{
	border: thin;
}










.arrow {
    width: 100%;
    text-align: center;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    animation-delay: 2s;
    padding: 0;
    /* position: absolute; */
    /* bottom: 40px; */
    display: flex;
    justify-content: space-evenly;
    flex-flow: row;
    align-content: center;
}

.arrow a {
    color: rgba(245,245,245,1.00);
    text-decoration: none;
    font-size: 70px;
    text-shadow: 0px 5px 7px rgba(0,0,0,1.00);
    flex-flow: row;
    justify-content: space-evenly;
    display: flex;
    align-content: center;
    position: absolute;
    bottom: 50px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}














#mainfooter{
	background-color: #1F1F1F;
	text-decoration: none;
	padding-top: 20px;
	padding-bottom: 20px;
	letter-spacing: 3px;
	font-family: arial, sans-serif;
	color: white;
	line-height: 20px;
	text-shadow: 1px 1px 6px rgba(0,0,0,0.66);
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(39,39,39,1.00) 100%), url(../images/blackoak.png);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(39,39,39,1.00) 100%), url(../images/blackoak.png);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(39,39,39,1.00) 100%), url(../images/blackoak.png);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(39,39,39,1.00) 100%), url(../images/blackoak.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	
}

.fab{
	font-size: 20px;
}

#mainfooter a{
	color: white;	
}

.footercolums{
	/*padding-top: 5px;*/
	/*padding-bottom: 5px;*/
	line-height: 20px;
}

.footlinks{
	list-style: none;
	text-align: center;
	padding-top: 20px; 
}

.footlinks li{
	padding-top: 5px;


}
.footlinks a{
	text-decoration: none;
}

.footlinks h2{
	
	font-family: ambsmall;
	letter-spacing: 4px;
	word-spacing: 4px;
	line-height: 50px;
}


b{
	font-family: amb;
	
}





.blm{
	height: 100%;
	
	width: 100%;
	
	z-index: 10000;
}





.reverb{
	height: 100%;
	
	width: 100%;
	
	z-index: 10000;
}



.Black-Lives-matter-icon{
	position: fixed;
	right: 10px;
	top: 50px;
	z-index: 137;
}
		





.reverb-shop-icon{
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 137;
}
		
		.reverb-storeshop img{
			height: 40px;
			width: auto;
			
		}
		
		.reverb-storeshop{
			position: absolute;
			bottom: 5px;
			
			left: 10px;
			right: 10px;
			
		}
		
		
	





















@media (min-width: 768px) {
	
	
	
	
	#footercontent{
	display: flex;
		flex-grow: 1;
	align-content: center;
	vertical-align: middle;
		
}

.footercolums{
	flex-grow: 1;
	align-content: center;
	vertical-align: middle;
}
	

	
	

}



@media (max-width: 1400px) {
	
	#navbar ul li {
		
		font-size: 10px;
		
	}
	
	#navbar ul li {
		float: left;
	}
	
	
}

/* 48em = 768px */

@media (min-width: 48em) {
	
	#navbar ul{
	z-index: 100;
	
}
	
	#navbar ul{
	display: block;

	
	}
	
	#mobilenav{
		display: none;
	}
	
	
	footer li :hover{
		animation-name: expand;
  animation-duration: 550ms;
		animation-fill-mode: forwards;
		
	}
	
	.soclinks{
		display:block;
		
	}
	
	


}
