

/* CSS Document */
* {
    box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
    float: left;
    padding: 15px;
    /*border: 1px solid red;*/
}
.row::after {
    content: "";
    clear: both;
    display: table;
}


body {
	background-color: #A7E5C6;
	color: black;
	margin: 0;
	padding: 0;

	}

h1 {
	font-size: 64px;
	text-align: center;
	line-height: 96px;
	color: black;
	font-family: 'Luckiest Guy', cursive;
}	
h2 {
	font-family: 'Lalezar', cursive;
	font-size: 48px;
	line-height: 72px;

}	
h3  {
	font-family: 'Righteous', cursive;
	font-size: 24px;
	line-height: 36px;
}
p {
	font-family: 'Skranji', cursive;
	font-size: 16px;
	line-height: 24px;
}


/*Sub-Header*/
.sh{
	color:white;
	background-color: black;

}

#container {
	margin: 0 auto;
	max-width: 890px;
}



.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: #faebd6;
        color: black;

}

#logo {
	display: block;
	padding: 5px 25px;
	float: left;
	font-size:20px;
	line-height: 60px;
}
#logo a {    
    padding: 0;
    margin: 0;
    border: none;
}
#logo a:hover{
    background-color: #faebd6;
        color: black;
}
.active{
    background-color: #5ed2a5;
}
/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #faebd6;
	}

/* Styling the links */
nav a {
	display:block;
	padding:64px 22px;	
	color:black;
	font-size:34px;
	text-decoration:none;
	/*border-left: 1px solid black;*/
font-family: 'Passion One', cursive;
}


nav ul li ul li:hover { background: #fa8071; color: black;}

/* Background color change on Hover */
nav a:hover { 
	background-color: #fa8071; 
    color: black;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 163px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
        color: black;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:167px;
	float:none;
	display:list-item;
	position: relative;
	/*border: 1px solid black;*/
	text-align: center;
	background-color: #faebd6;
	z-index: 10;
        color: black;
}

/*Postioning of listed items submenu */
li.submenu a {
	padding: 15px 20px;
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }

/*Blur Effect on home page*/
.hover07 figure img {
	-webkit-filter: blur(0);
	filter: blur(0);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
    height: auto;
    width: 100%;
}
.hover07 figure:hover img {
		-webkit-filter: blur(3px);
	filter: blur(3px);

}
.hover07 {
    padding: 0;
    margin: 0;
    height: auto;

}
figure {
	margin: 0;
	padding: 0;
	overflow: hidden;
}


/* Media Queries
--------------------------------------------- */

/*Box fullmode */

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
}
@media only screen and (min-width: 2101px) {
    .holder{
        height: 850px;
    }
}
@media only screen and (min-width: 1501px) and (max-width :2100px){
    .holder{
        height: 625px;
    }
}
/*secondary */
@media only screen and (max-width: 980px) {
    /* For tablets: */
    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
}
@media all and (min-width : 1101px) and (max-width :1500px){

.holder{
    height: 575px;
    }
}

@media all and (min-width : 935px) and (max-width :1100px) {

nav a {
	display:block;
	padding:68px 12px;	
	color:black;
	font-size:30px;
	text-decoration:none;
}
/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 167px; 

}

/*Postioning of listed items submenu */
li.submenu a {
	padding: 20px 20px;
}


#logo {
	display: block;
	padding: 0 15px;
	float: left;
	font-size:20px;
	line-height: 60px;
}
/* Fisrt Tier Dropdown */
nav ul ul li {
	width: 133px;
	float:none;
	display:list-item;
	position: relative;

	text-align: left;
	z-index: 10;
	
}
.holder{
    height: 550px;
    }
}

@media all and (max-width : 934px) {


    
	#logo {
		display: inline-block;
		padding: 10px;
		width: 100%;
		text-align: center;
		float: none;
        	z-index: 10;
	}

	nav {
		margin: 0;
               border: none;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
               border: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		background-color:#faebd6;;
		padding: 14px 20px;	
		color: black;
		font-size:32px;
		text-decoration:none;
       /*border: 2px solid black;*/
		font-family: 'Passion One', cursive;
        height: 65px;


	}


	.toggle:hover {
		background-color: #fa8071;
            color: black;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
               border: none;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
               border: none;
	}

	nav ul ul ul a {
		padding: 0 10px;
               border: none;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #fa8071;
            color: black;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:14px 20px;	
		color: black;
		font-size:20px; 
      width: 100%;
             border: none;
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #faebd6;
               border: none;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: black;
               border: none;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
            color: black;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
		text-align: left;


	}

	nav ul ul ul li {
		position: static;
        width: 100%;
        border: none;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}
	/*Controls most of the dropdown*/
	nav a {
	display:block;
	padding:8px 90px;	
	color:  black;
	font-size:28px;
	text-decoration:none;
	background-color: #faebd6;
        float: left;
       /*border: 2px solid black;*/
        width: 100%;

}
/*Postioning of listed items submenu */
	li.submenu a {
	padding: 15px 20px;
	background-color: #faebd6;
       /*border-left: 2px solid black;
               border-right: 2px solid black;
               border-top: 2px solid black;*/
                float: left;

	}
	h1 {
	font-size: 48px;
	text-align: center;
	line-height: 72px;
	color: black;
	font-family: 'Luckiest Guy', cursive;
	}	
	h2 {
	font-family: 'Lalezar', cursive;
	font-size: 40px;
	line-height: 60px
	}
	li.submenu a:hover{
		background-color: #fa8071;
            color: black;
	}
    
    .active{
        background-color: #5ed2a5;
    }


.holder{
    height: 275px;
    }
    
/* Open Mic Styling */
.omleft h3 {
    text-align: center;
	margin:0;
	padding-right: 10px;


}
.omleft p  {
    text-align: center;
	margin:0;
	padding-right: 10px;


}

.omcent h3 {
    text-align: center;
	margin-bottom:0;
	padding-right: 10px;


}
.omcent p  {
    text-align: center;
	margin:0;
	padding-right: 10px;

}
.omright h3 {
    text-align: center;
	margin:0;
	padding-right: 10px;



}
.omright p  {
    text-align: center;
	margin:0;
	padding-right: 10px;


}

}

@media all and (max-width : 330px) {
    .active{
        background-color: #5ed2a5;
    }
	nav ul li {
		display:block;
		width: 100%;
	}
	
}

/* Footer */

.footer {

	position: relative;
	color: white;
	left:0;
	width: 100%;
	bottom: 0;
	height: 100%;
	background-color: black;
	text-align: center;

}
.footer a{
    color: white;
}
.ftrright{
    display: inline-block;
width: 100%;
	text-align: center;

}
.ftrright p{
padding: 0;
margin: 0;
}
.ftrleft{
       display: inline-block;
	text-align: center;
  margin-top: 15px;
width: 100%;


	
}
.ftrright i {

    font-size: 32px;
    padding: 5px;

}

.ftrright a {

    padding-top: 25px;
    line-height: 60px;
	color: white;
	text-decoration:none;

}
.ftrcntr {
    color: white;
    display: inline-block;
    margin: auto;
	font-family: 'Passion One', cursive;

    width: 100%;
    height: 80%;
}
.ftrcntr ul{
    display: inline-block;
    padding: 6px 0 0 0;
    margin: 0;

}
.ftrcntr ul li{
    display: inline-block;

    padding: 5px;
}
.ftrcntr ul li:hover{
    background-color: white;
    color: black;
}
.ftrcntr li{
    display: inline;

}


/* Open Mic Styling */
.omleft h3 {
	float: right;
        clear: right;
	margin-bottom:0;
	padding-right: 10px;


}
.omleft p  {
	float: right;
    clear: right;
	margin:0;
	padding-right: 10px;

}

.omcent h3 {
    text-align: center;
	margin-bottom:0;
	padding-right: 10px;


}
.omcent p  {
    text-align: center;
	margin:0;
	padding-right: 10px;

}
.omright h3 {
	float: left;
	margin-bottom:0;
	padding-left: 10px;



}
.omright p  {
	float: left;
	clear: left;
	margin:0;
	padding-left: 10px;

}

/*Image Overlay on the Open Mics*/
.container {
  position: relative;
  width: 100%;

}

.image {
  display: block;
  width: 100%;
  height: auto;
	
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
	opacity: .8;
}

.container:hover .overlay {
  height: 100%;
}

.text {
  white-space: nowrap; 
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#slides {
	position: relative;
	height: 100%;
	width: 100%;
	margin: 0px;
	list-style-type: none;
}
.slide {
	position: absolute;
	left: 0px;
	top: 0px;

	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;

	-webkit-transition: opacity 2s;
	-moz-transition: opacity 2s;
	-o-transition: opacity 2s;
	transition: opacity 2s;
}
.slide img {
	height: 100%;
	width: 100%;
	position: absolute;
	left:0;

}

.showing {
	opacity: 1;
	z-index: 2;

}
.holder{
	position: relative; 
	overflow: hidden;
	margin: 0 auto;
	border: 4px solid black;
	width: 100%;

	background-color: gray;
	border-radius: 4px;
}
i {
	text-decoration: none;
	color: black;
    background-color: aliceblue;
    padding:5px;
    border-radius: 10%;
	opacity: .8;
}

.controls {
	display: inline-block;
}
#pause {
	position: absolute;
	bottom: 0;
	margin: 0 auto;
	z-index: 10;
	left: 47%;

}
#previous{
	position: absolute;
	top: 45%;
	left: 10px;
	z-index: 10;	
}
#next {
	position: absolute;
	top: 45%;
	right: 10px;
	z-index: 10;	
}
#slides h1{
	display: inline;
	z-index: 40;
}
.groupbox{
        
    background-color: #7fc1a0;
        color: black;
}
a {
    text-decoration: none;
    color: black;
}




