@charset "UTF-8";
/* CSS Document */

/* Font Import */

@import url(fonts/fonts.css);

/* Animations */

@-webkit-keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


@-webkit-keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}
@-moz-keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}
@-o-keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}
@keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}



/* CSS MARKUP */

html {
}

html,body {
	margin: 0px;;
	padding: 0px;
	
}

body {
	background-color: #000;
	position: relative;
}

#wrap-all {
	overflow-x: hidden;
	position: fixed;
	height: 100%;
	display: block;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-y: scroll;
}

h1, h2, h3 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
}

p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #242424;
	font-weight: 300;
	font-size: 1.3em;
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-weight: bold;
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}

#navigation {
	position: absolute;
	right: 0;
	margin-right: 120px;
	margin-top: 9px;
	z-index: 9998;
}
#navigation p {
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #fff;
	font-size: 2.2em; 
	font-weight: bold;
	letter-spacing: .25em;
}

#social {
	height: 25px;
	width: 125px;
	margin-top: 75px;
	margin-right: auto;
	margin-left: auto;
	
}

#social-top img, #calendar-social img {
	float: left;
	margin-right: 25px;
	margin-top: 25px;
	transition: .3s;
}

#social-top img:hover, #calendar-social img:hover {
	transform: scale(1.1);
	transition: .3s; 
	cursor: pointer;
}

#social-top, #calendar-social {
	width: 330px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 25px;
}

/* Hamburger Menu Button */

#menuToggle
{
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  
  z-index: 9999;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 200px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -105px;
  
  border: 1px solid red;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 99999;
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 60px;
  height: 3px;
  margin-bottom: 4px;
  position: relative;
  
  background: #fff;
  border-radius: 3px;
  
  z-index: 1;
  
  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;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  width: 28px;
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
  width: 28px;
}

#menuToggle input:hover ~ span {}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 650px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  text-align: center; 	
  font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: 2.2em;
  font-weight: 600;
  letter-spacing: .15em;
  
}

#menu a {
 	color: #838383;
	text-decoration: none;
}

#menu a:hover {
	color: #000;
}

#span-inside-ul {
	display: block;
	width: 10px;
	height: 10px;
	background-color: red;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: .9;
}

/* END Hamburger Menu Button */

#facebook-icon {
	background-image: url(images/facebook-icon.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 25px;
	width: 25px;
	float: right;
	margin-right: 15px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

#insta-icon {
	background-image: url(images/insta-icon.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 25px;
	width: 25px;
	float: right;
	margin-right: 15px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

#youtube-icon {
	background-image: url(images/youtube-icon.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 25px;
	width: 25px;
	float: right;
	margin-right: 15px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

#insta-icon:hover, #youtube-icon:hover, #facebook-icon:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	cursor: pointer;
}

#header {
	border-bottom: 1px solid #9A9A9A;
	height: 100px;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
#logo p {
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  	font-size: 3.2em;
	float: left;
	margin-top: 30px;
	color: #fff;
	letter-spacing: .05em;
}

#about h1 {
	text-align: center;
	font-size: 7em; 
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #231f20;
}

#about h4 {
	text-align: center;
	font-size: 1.8em; 
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: 100;
	color: #737373;
}

.content {
	width: 75%;
	min-height: 500px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 25px;
}

.content p {
	padding-left: 25px;
}

.about-wrapper {
	width: 100%;
	background-color: #f7f7f7;
}

#about-cover, #photos-cover, #listen-cover, #teaching-cover {
	width: 100%;
	height: 700px;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	position: relative;
}

#about-cover video, #listen-cover video, #teaching-cover video, #books-cover video {
	position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
	z-index: -1;
	transform: translateX(-50%) translateY(-50%);
	opacity: .8;
}

#about-cover-text, #calendar-cover-text, #listen-cover-text, #teaching-cover-text {
	position: absolute;
	top: 25%;
	-webkit-animation: Fadein 1s; 
  	-moz-animation:    Fadein 1s;
  	-o-animation:      Fadein 1s;
  	animation:         Fadein 1s;
	width: 100%;
}

#about-cover h1, #calendar-cover h1, #contact-cover h1, #listen-cover h1, #teaching-cover h1, #calendar-cover h1, #books-cover h1 {
	font-size: 2.75em; 
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #fff;
	padding: 0px; 
	right: 65%;  
	top: 25%;
	text-align: center;
	display: block;
	margin-top: 50px;
	margin-bottom: 30px;
	font-weight: 100;
	letter-spacing: .15em;
}

#about-cover h2, #calendar-cover h2, #contact-cover h2, #listen-cover h2, #teaching-cover h2, #calendar-cover h2, #books-cover h2 {
	font-size: 1.75em; 
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #fff;
	padding: 0px; 
	right: 65%;  
	top: 25%;
	text-align: center;
	display: block;
	margin-top: 50px;
	margin-bottom: 30px;
	font-weight: 100;
	letter-spacing: .15em;
}

#about-cover-text span, #about-cover-text span {
	display: block;
	width: 300px;
	border-bottom: 1px solid #fff;
	margin-right: auto;
	margin-left: auto;
}

#about-cover p, #calendar-cover p, #contact-cover p, #listen-cover p, #teaching-cover p, #books-cover p {
	font-size: 2.5em; 
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #fff;
	padding: 0px; 
	right: 65%;  
	top: 50%;
	display: block;
	text-align: center;
}

#about-text img, .about-text img {
	width: 45%;
	float: left;
	margin-right: 50px;
	object-fit: scale-down;
	
}

#about-text, .about-text {
	padding: 50px;
	background-color: #fff;
	width: 75%;
	margin-right: auto;
	margin-left: auto;
	-webkit-animation: Fadein 1s; 
  	-moz-animation:    Fadein 1s;
  	-o-animation:      Fadein 1s;
  	animation:         Fadein 1s;
}

#about-text p, .about-text p {
	font-size: 1.25em;
	line-height: 1.45em;

}

#about-text h2, .about-text h2 {
	margin-top: 0px;
}

#content-rep {
	min-height: 400px;
	clear: both;
	padding-bottom: 30px;
	background: rgba(28,28,28,0.9);
	margin-top: 40px;
	margin-bottom: 40px;
}

#content-rep-text {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
	-webkit-animation: Fadein 1s; 
  	-moz-animation:    Fadein 1s;
  	-o-animation:      Fadein 1s;
  	animation:         Fadein 1s;
}

#content-rep h2, #press-kit-wrapper h2 {
	font-size: 1.75em;
	color: #fff;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	padding-top: 35px;
	text-align: center;
	font-weight: 100;
	letter-spacing: .15em;
	margin-top: 0px;
}

#content-rep h3, #press-kit-wrapper h3 {
	color: #fff;
	text-align: center;
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 2.5em;
}

#content-rep li, #content-rep p, #press-kit-wrapper p {
	color: #fff;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 1.1em;
	line-height: 1.45em;
	text-decoration: none;
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
}

#content-rep ul {
	padding: 0px;
	margin: 0px;
}

.content-rep-box {
	width: 48%;
	min-height: 200px;
	float: left;
	position: relative;
	margin-right: 1%;
	margin-left: 1%;
	padding-bottom: 30px;
}

.kicker {
	display: block;
	clear: both;
}

#recital {
	min-height: 400px;
}

#recital-text {
	padding-top: 50px;
	width: 60%;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 1px solid #000;

}

#recital-wrapper h2 {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 2.5em;
	font-weight: 100;
	letter-spacing: .15em;
}

#recital-wrapper h3 {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 1.9em;
	font-weight: 100;
	letter-spacing: .15em;
	display: block;
	background-color: #f7f7f7;
	width: 420px;
}

#recital-wrapper p {
	font-size: 1.25em;
	line-height: 1.35em;
}

#recital-text img {
	float: right;
	margin-left: 125px;
}

.italic {
	font-style: italic;
	color: #737373;
	font-size: 1em;
}

#sample-programs {
	min-height: 300px;
	width: 75%;
	margin-right: auto;
	margin-left: auto;
	position: relative; 
	margin-top: -50px;
	
}

.sample-program-box {
	width: 30%;
	background-color: #1c1c1c;
	height: 300px;
	float: left; 
	margin-left: 15px;
	margin-bottom: 20px;
}

.sample-program-box h4 {
	color: #fff;
	text-align: center;
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 2.5em;
	margin-top: 35px;
	margin-bottom: 35px;
}

.sample-program-box p {
	color: #fff;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: .9em;
	text-decoration: none;
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
	font-style: italic;
	padding-right: 35px;
	padding-left: 35px;
	padding-bottom: 25px;
}

.sample-program-box ul {
	padding: 0px;
	margin: 0px;
}
.sample-program-box li {
	color: #fff;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: .9em;
	text-decoration: none;
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
}

#footer {
	height: 375px;
	background-color: #1c1c1c;
	position: relative;
}

#bottom-content {
	width: 75%;
	position: absolute;
	bottom: 0;
	margin-bottom: 25px;
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
}

#bottom-content ul {
	padding: 0px;
	margin: 0px;
	margin-bottom: 40px;
}

#bottom-content li, #bottom-content li a {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: .7em; 
	color: #B0B0B0;
	text-decoration: none;
	list-style: none;
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: 100;
	letter-spacing: .15em;
}

a {
	text-decoration: none;
}

#bottom-content li:hover {
	color: #fff;
}

#under-content {
	border-top: 1px solid #4D4D4D;
}

#bottom-social {
	float: right;
	position: relative;
	margin-top: 45px;
}

#bottom-social img {
	float: right;
	margin-right: 15px;
	width: 25px;
	height: auto;
	opacity: 0.7;
}

#bottom-social img:hover {
	opacity: 1;
	cursor: pointer;
}

#bottom-logo {
	float: left;
}

#bottom-logo p {
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 2.5em; 
	color: #fff;

}


/* PHOTOS PAGE */


#instagram, #instafeed {
	width: 85%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	animation: Fadein 1s;
}

#instagram img, #instafeed img {
	width: 300px;
	margin: 20px;
	object-fit: cover;
}

.insta-photo {
  width: 100px;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
}

#instagram-text {
	text-align: center;
	animation: Fadein 1s;
}

#instagram-text h2 {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 1.9em;
	font-weight: 100;
	letter-spacing: .15em;
	padding-top: 75px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
}

#instagram-text p {
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 3em; 
	color: #000;
	padding-top: 15px;
	margin-top: 0px;
	padding-bottom: 25px;
}

#instagram-text a {
	color: #000;
	text-decoration: underline;
}




.wrapper{
  width: 100%;
  position: relative;
  margin:0px;
}

/**
 * Padding is set relative to the width
 * of the element, so here padding-top:60% is
 * a percentage of the width. This allows us 
 * to set the height as a ratio of the width
 *
 */
.carousel{
	width: 100%;
	position: relative;
	height: 700px;
	overflow: hidden;
	animation: Fadein 2s; 
}

.inner{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}

/**
 * ==========================
 * Animation styles
 * 
 * Notes:
 * 1. We use z-index to position active slides in-front 
 * of non-active slides
 * 2. We set right:0 and left:0 on .slide to provide us with
 * a default positioning on both sides of the slide. This allows 
 * us to trigger JS and CSS3 animations easily
 *
 */
.slide{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	right:0;
	left:0;
	z-index: 1;
	opacity: 0;
}

.slide.active,
.slide.left,
.slide.right{
	z-index: 2;
	opacity: 1;
}

/**
 * ==========================
 * JS animation styles
 * 
 * We use jQuery.animate to control the sliding animations
 * when CSS3 animations are not available. In order for
 * the next slide to slide in from the right, we need
 * to change the left:0 property of the slide to left:auto
 *
 */

.js-reset-left{left:auto}

/**
 * ==========================
 * CSS animation styles
 * 
 * .slide.left and .slide.right set-up
 * the to-be-animated slide so that it can slide
 * into view. For example, a slide that is about 
 * to slide in from the right will:
 * 1. Be positioned to the right of the viewport (right:-100%)
 * 2. Slide in when the style is superseded with a more specific style (right:0%)
 *
 */
.slide.left{
	left:-100%;
	right:0;
}

.slide.right{
	right:-100%;
	left: auto;
}

.transition .slide.left{left:0%}
.transition .slide.right{right:0%}

/**
 * The following classes slide the previously active
 * slide out of view before positioning behind the 
 * currently active slide
 *
 */
.transition .slide.shift-right{right: 100%;left:auto}
.transition .slide.shift-left{left: 100%;right:auto}

/**
 * This sets the CSS properties that will animate. We set the
 * transition-duration property dynamically via JS.
 * We use the browser's default transition-timing-function
 * for simplicity's sake
 * 
 * It is important to note that we are using CodePen's inbuilt
 * CSS3 property prefixer. For your own projects, you will need
 * to prefix the transition and transform properties here to ensure
 * reliable support across browsers
 *
 */
.transition .slide{
	transition-property: right, left, margin;
}

/**
 * ==========================
 * Indicators
 *
 */
.indicators{
  width:100%;
  position: absolute;
  bottom:0;
  z-index: 4;
  padding:0;
  text-align: center;
}

.indicators li{
	width: 13px;
	height: 13px;
	display: inline-block;
	margin: 5px;
	background: #fff;
	list-style-type: none;
	border-radius: 50%;
  cursor:pointer;
  transition:background 0.3s ease-out;
}

.indicators li.active{background:#93278f}

.indicators li:hover{background-color:#2b2b2b}

/**
 * ==========================
 * Arrows 
 *
 */
.arrow{
  width: 20px;
  height: 20px;
  position:absolute;
  top:50%;
  z-index:5;
  border-top:3px solid #fff;
  border-right:3px solid #fff;
  cursor:pointer;
  transition:border-color 0.3s ease-out;
}

.arrow:hover{border-color:#93278f}

.arrow-left{
  left:20px;
  transform:rotate(225deg);
}

.arrow-right{
  right:20px;
  transform:rotate(45deg);
}

/**
 * ==========================
 * For demo purposes only
 * 
 * Please note that the styles below are used
 * for the purposes of this demo only. There is no need
 * to use these in any of your own projects
 *
 */
.slide{
  text-align:center;
  padding-top:25%;
  background-size:contain;
  background-position: top;
  background-repeat: no-repeat;
}

.slide:nth-child(1){
	background-image:url(photography/1.jpg);
 }

.slide:nth-child(2){
	background-image:url(photography/2.jpg);
}

.slide:nth-child(3){
	background-image:url(photography/3.jpg);
 }
 
 .slide:nth-child(4){
	background-image:url(photography/4.jpg);
 }
 
 .slide:nth-child(5){
	background-image:url(photography/5.jpg);
 }
 
 .slide:nth-child(6){
	background-image:url(photography/6.jpg);
 }
 
 .slide:nth-child(7){
	background-image:url(photography/7.jpg);
 }
 
 #preload-img {
 	position: absolute;
	left: -999px;
	opacity: 0;
 }
 


/* LISTEN PAGE */

#about-cover-text h4, #watch-video p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: .9em; 
	color: #fff;
	text-decoration: none;
	list-style: none;
	text-transform: uppercase;
	margin-bottom: 5px;
	font-weight: 100;
	letter-spacing: .15em;
	text-align: center;
}

#watch-video a {
	text-decoration: underline;
	color: #fff;
}

.videoWrapper {
	width: 49%;
	position: relative;
	padding-bottom: 25.8%; /* 16:9 */
	margin-bottom: 15px;
	padding-top: 25px;
	margin-right: 1%;
	height: 0;
	float: left;
	
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-left {
	margin-right: 10px;
}

.video-right {
	margin-left: 10px;
}

#instagram-embed {
	float: left;
	width: 50%;
}

#practice-wrapper {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
}

#practice-challenge {
	float: left;
	margin-right: 50px;
	width: 40%;
}

#practice-challenge h2 {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 1.9em;
	font-weight: 100;
	letter-spacing: .15em;
	padding-bottom: 0px;
	margin-bottom: 0px;
	padding-top: 15px;
}

#practice-challenge h4 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: .9em; 
	color: #000;
	text-decoration: none;
	list-style: none;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 100;
	letter-spacing: .15em;
	text-align: left;
}


/* Books Page */

#books-wrapper {
	position: relative;
}

#books-wrapper p {
	text-align: justify;
	width: 100%;
	margin-top: 25px;
}

#books-cover {
	width: 100%;
	height: 500px;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	position: relative;
}

.book-cell {
	width: 50%;
	float: left;
	background-color: red;
}

.book-cell img {
	width: 100%!important;
}

#handbook {
	width: 100%;
	min-height: 250px;
}

#journal {
	width: 100%;
	min-height: 250px;
	clear: both;
}

#journal a:hover, #handbook a:hover {
	text-decoration: underline;
	color: #000;
}

#handbook img, #journal img {
	float: left;
	max-width: 400px;
}

#book-review {
	background-color: rgba(0, 0, 0, 0.9);
	width: 100%;
	padding-top: 45px;
	padding-bottom: 45px;
	margin-top: 25px;
	margin-bottom: 25px;
	clear: both;
}

#book-review p {
	color: #fff!important;
	text-align: center;
	padding-left: 25%;
	padding-right: 25%;
}

#button-wrapper {
	text-align: center;
	position: relative;
	width: 100%;
}
.click-button {
	background: none repeat scroll 0 0 transparent;
    border: 3px solid #FFFFFF;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 17px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}

.click-button {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-size: .9em;
    text-decoration: none;
    list-style: none;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 100;
    letter-spacing: .15em;
    text-align: center;
}

.click-button:hover {
	background-color:#fff;
	color: #292929;
}
.click-button:active {
	position:relative;
	top:1px;
}

#press-kit-wrapper {
	min-height: 200px;
	clear: both;
	padding-bottom: 30px;
	background: rgba(28,28,28,0.9);
	margin-top: 40px;
	margin-bottom: 40px;
}


/* Calendar Page */

#calendar-cover {
	width: 100%;
	height: 450px;
	background: url(images/astral-playing.jpg) center center no-repeat;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	position: relative;
	animation: Fadein 4s;
}

#calendar-wrapper {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	width: 100%;
	display: inline-block;
}

.calendar-block {
	display: block;
	width: 235px;
	height: 235px;
	float: left;
	margin: 15px;
	padding: 20px;
	/*background-color: #273648; */
	background-color: #221212;
	position: relative;
}

.calendar-number {
	position: absolute;
	width: 150px;
	height: 50px;
	/* background-color: #5e6c7d; */
	background-color: #5e0033;
	margin-top: -30px;
	margin-left: -30px;
}

.calendar-number p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 1em; 
	color: #fff;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: .15em;
	text-align: center;
	margin: 0px;
	padding-top: 15px;
}

.calendar-block h2 {
	color: #fff;
	text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 1.3em; 
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: .15em;
	margin: 0px auto 50px auto;
	top: 50%;
    transform: translateY(-50%);
	padding-right: 10px;
	padding-left: 10px;
	position: absolute;
	left: 0;
	right: 0;
}

.calendar-block p {
	color: #fff;
	text-align: center;
	font-size: .8em !important;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: .15em;
	margin: 0px;
	padding-bottom: 20px;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	left: 0;
	right: 0;
	
}

/*
#content-rep-text p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 1em; 
	color: #fff;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: .15em;
	text-align: center;
	margin: 0px;
	padding-top: 15px;
	line-height: 1.5em;
}
*/



/* Contact Page */

#contact-cover {
	width: 100%;
	height: 450px;
	background: url(images/old-music.jpg) center center no-repeat;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	position: relative;
	animation: Fadein 4s;
}

#contact-one {
	text-align: center;
}

#email {
	position: relative;
	margin-left: 30px;
	cursor: pointer;
}

#email p:before {
	content: "";
	background-image: url(images/email-icon.png);
	background-size: cover;
	width: 30px;
	height: 23px;
	margin-left: -40px;
	margin-top: 4px;
	position: absolute;
}

#email p:hover {
	text-decoration: underline;
}



/* TEACHING PAGE */

#teaching-wrapper {
	position: relative;
}

#teaching-wrapper-img {
	float: right;
	width: 450px;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
}

#teaching-wrapper img {
	width: 100%;
}

#teaching-wrapper p {
	text-align: left;
	text-transform: none;
}


/* ----------- iPad ----------- */

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  { 

#navigation p {
	font-weight: normal;
	-webkit-font-smoothing: atialiased;
	display: none;
}

#menu li {
	font-weight: normal;
	color: #000;
}

#menuToggle input:checked ~ ul {
	opacity: 1;
}

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) { 

#menu {
	width: 720px;
}

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 


}



/********* Standard MEDIA QUERIES ***********/


@media only screen and (max-width: 1400px) {

#recital-text {
	width: 80%;
}

#sample-programs {
	width: 80%;

}

}

@media only screen and (max-width: 1235px) {

.sample-program-box {
	width: 31%;
}

.sample-program-box h4 {
	margin-top: 25px;
	margin-bottom: 15px;	
}

#sample-programs p {
	font-size: 1em;
	padding-bottom: 15px;
}

#sample-programs li {
	padding-right: 10px;
	padding-left: 10px;
}

.calendar-block {
	width: 200px;
	height: 200px;
}

}

@media only screen and (max-width: 1100px) {

#about-cover, #listen-cover, #teaching-cover {
	height: 550px;
}

#photos-cover, .carousel {
	height: 365px;
}

#sample-programs {
	width: 95%;
}

#recital-text {
	width: 95%;
}

#recital-text img {
	margin-left: 50px;
}

#content-rep-text {
	width: 95%;
}

#content-rep li {
	font-size: 1em;
}

#about-text {
	width: 80%;
}

#instagram-embed {
	width: 45%;
}

#practice-wrapper {
	width: 100%;
}

#teaching-wrapper-img {
	width: 400px;
}

}

@media only screen and (max-width: 850px) {

#about-cover-text {
	top: 20%;
}
#about-cover p {
	padding-right: 125px;
	padding-left: 125px;
}

#social-top {
	position: relative;
	padding-left: 60px;
}

#social-top img {
	width: 70px;
	height: 70px;
}

#recital-wrapper h2 {
	font-size: 2em;
}

#recital-text {
	padding-bottom: 35px;
}

#recital-text img {
	width: 375px;
	height: auto;
}

#sample-programs {
	margin-top: -70px;
}

.sample-program-box {
	float: none;
	margin-right: auto;
	margin-left: auto;
	height: auto;
	width: 80%;
}

.sample-program-box h4 {
	margin-top: 0px;
	margin-bottom: 20px;
	padding-top: 35px;

}

.sample-program-box ul {
	padding-bottom: 20px;
}

.content-rep-box {
	width: auto;
	min-height: inherit;
	float: none;
	margin: 0px;
	padding: 0px;
}

#instafeed img {
	width: 250px;
}

.videoWrapper {
	width: 100%;
	float: none;
	margin-top: 15px;
	padding-bottom: 46%;
}

.video-left, .video-right {
	margin: 0px;
}



}

@media only screen and (max-width: 690px) {

#about-cover p, #about-cover h1 {
	font-size: 2em;
}

#about-text p, #recital-wrapper p {
	font-size: 1em;
}

#about-text img {
	margin-right: 25px;
	width: 55%;
}

#recital-text img {
	float: none;
	width: 100%;
	margin: 0px;
	position: absolute;
	top: -155px;
}

#recital-text-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
	position: relative;
}

#sample-programs {
	margin-top: 0px;
}

.carousel {
	height: 365px;
}

#photos-cover {
	height: 365px;
}

}

@media only screen and (max-width: 689px) {

.about-wrap-all {
	background: url(images/about-background-mobile.jpg) no-repeat center center;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 100%;
}

.desktop {
	display: none;
}

.mobile {
	display: block;
}

#navigation p {
	font-weight: normal;
	-webkit-font-smoothing: atialiased;
	display: none;
}

#menu li {
	font-weight: normal;
	color: #000;
}

#menuToggle input:checked ~ ul {
	opacity: 1;
}

#menu {
 width: 350px;
}

video {
	display: none;
}

#about-cover {
	height: 180px;
}

#about-cover h1 {
	margin-top: 70px;
}

.about-wrapper {
	background-color: #fff;
}

#about-cover-text {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	left: 0;
	right: 0;
}

#about-cover p {
	padding-left: 0px;
	padding-right: 0px;
	font-size: 2.5em;
}

#social-top {
	display: none;
}

#about-text {
	padding: 0px;
	width: 95%;
}

#about-text img {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}

#recital-text {
	padding-top: 15px;
	border: none;
}

#recital-text img {
	top: -55px;
}

#content-rep {
	padding-top: 20px;
	padding-bottom: 20px;
}

#content-rep h3, #sample-program-box h4 {
	font-weight: 100;
}

#content-rep li, #content-rep p {
	font-size: .9em;
}

#content-rep p {
	margin-bottom: 10px;
	font-weight: 200;
}

#recital-wrapper h3 {
	display: inline;
	width: auto;
	font-size: 1.75em;
	text-align: center;
	padding-bottom: 15px;
	background-color: #fff;
}

#recital-wrapper h2 {
	font-size: 1.75em;
	text-align: center;
}

.sample-program-box {
	width: 90%;
}

.indicators {
	display: none;
}

.carousel, #photos-cover {
	height: 365px;
}

#instagram-text h2 {
	font-size: 1.3em;
	padding-top: 35px;
}

#instagram-text p {
	display: none;
}

#practice-wrapper {
	padding-top: 30px;
	text-align: center;
}

#practice-challenge, #instagram-embed {
	float: none;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

#practice-challenge h4 {
	text-align: center;
}

#listen-cover {
	background: url(images/multitrack.jpg) no-repeat center center;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 375px;
}

#teaching-cover {
	background: url(images/teaching-mobile.jpg) no-repeat center center;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 275px;
}

#listen-cover h1, #teaching-cover h1, #calendar-cover h1 {
	font-size: 1.75em;
}

#listen-cover p, #teaching-cover p {
	display: none;
}

#watch-video p, #email p {
	display: block;
}

#about-cover-text h4 {
	margin-top: 30px;
}

#teaching-wrapper-img {
	width: 100%;
	height: 200px;
	overflow: hidden;
	padding: 0px;
	margin-top: 15px;
	margin-bottom: 15px;
}
#teaching-wrapper img {
	position: absolute;
	bottom: 0;
	top: 0;
	margin-top: -50px;
}

#teaching-wrapper h2 {
	margin-top: 0px;
	padding-top: 0px;
}

#teaching-image {
	height: 200px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

#teaching-image img {
	position: absolute;
	margin-top: -100px;
}

#teaching-wrapper-top {
	padding-top: 15px;
}

#calendar-cover {
	background-image: url(images/astral-playing-mobile.jpg);
	height: 250px;
}

#calendar-cover h1 {
	margin-top: 75px;
}

.calendar-block {
	width: 100%;
	height: 135px;
	margin: 15px 0px 0px 0px;
	position: relative;
	padding: 0px;
}

.calendar-block h2 {
	font-size: 1em;
	top: 40%;
}

.calendar-number {
	width: 150px;
	height: 30px;
	margin-top: -10px;
	margin-left: -5px;
}

.calendar-number p {
	font-size: .7em !important;
	padding-bottom: 7px;
}

#calendar-social img {
	width: 60px;
	
}

#calendar-social {
	position: relative;
	left: 25px;
}

#calendar-bottom p {
	font-size: 1em; 
	margin-right: 25px;
	margin-left: 25px;
	
}

.slide {
	background-position: center top;
	margin-top: 95px;
}

#photos-cover {
	height: 290px;
}

.carousel {
	height: 290px;
	background-color: #272727;
	
}
}



















