/*!
 * Milligram v1.3.0
 * https://milligram.github.io
 *
 * Copyright (c) 2017 CJ Patoilo
 * Licensed under the MIT license
 */

*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;

}

body {
  color: #606c76;
  font-family: 'Raleway','Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .01rem;
  line-height: 1;
}


hr {
  border: 0;
  border-top: 0.1rem solid #f4f5f6;
  margin: 3.0rem 0;
}

/* @group Forms */

input[type='email'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0.1rem solid #d1d1d1;
  border-radius: .4rem;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: .6rem 1.0rem;
  width: 100%;
}

input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
  border-color: #9b4dca;
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 3.0rem;
}

select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#9b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type='checkbox'],
input[type='radio'] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: .5rem;
}

/* @end */

.container {
  margin: 0 auto;
  max-width: 112.0rem;
  padding: 0 2.0rem;
  position: relative;
  width: 100%;
}

/* @group Flexbox Rows and Columns */

.row {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}

.row.row-no-padding {
  padding: 0;
}

.row.row-no-padding > .column {
  padding: 0;
}

.row.row-wrap {
  flex-wrap: wrap;
}

.row.row-top {
  align-items: flex-start;
}

.row.row-bottom {
  align-items: flex-end;
}

.row.row-center {
  align-items: center;
}

.row.row-stretch {
  align-items: stretch;
}

.row.row-baseline {
  align-items: baseline;
}

.row .column {
  display: block;
  flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}

.row .column.column-offset-10 {
  margin-left: 10%;
}

.row .column.column-offset-20 {
  margin-left: 20%;
}

.row .column.column-offset-25 {
  margin-left: 25%;
}

.row .column.column-offset-33, .row .column.column-offset-34 {
  margin-left: 33.3333%;
}

.row .column.column-offset-50 {
  margin-left: 50%;
}

.row .column.column-offset-66, .row .column.column-offset-67 {
  margin-left: 66.6666%;
}

.row .column.column-offset-75 {
  margin-left: 75%;
}

.row .column.column-offset-80 {
  margin-left: 80%;
}

.row .column.column-offset-90 {
  margin-left: 90%;
}

.row .column.column-10 {
  flex: 0 0 10%;
  max-width: 10%;
}

.row .column.column-20 {
  flex: 0 0 20%;
  max-width: 20%;
}

.row .column.column-25 {
  flex: 0 0 25%;
  max-width: 25%;
}

.row .column.column-33, .row .column.column-34 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.row .column.column-40 {
  flex: 0 0 40%;
  max-width: 40%;
}

.row .column.column-50 {
  flex: 0 0 50%;
  max-width: 50%;
}

.row .column.column-60 {
  flex: 0 0 60%;
  max-width: 60%;
}

.row .column.column-66, .row .column.column-67 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.row .column.column-75 {
  flex: 0 0 75%;
  max-width: 75%;
}

.row .column.column-80 {
  flex: 0 0 80%;
  max-width: 80%;
}

.row .column.column-90 {
  flex: 0 0 90%;
  max-width: 90%;
}

.row .column .column-top {
  align-self: flex-start;
}

.row .column .column-bottom {
  align-self: flex-end;
}

.row .column .column-center {
  -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 40rem) {
  .row {
    flex-direction: row;
    margin-left: -1.0rem;
    width: calc(100% + 2.0rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1.0rem;
  }
}

/* @end */

a {
  color: #9b4dca;
  text-decoration: none;
}

a:focus, a:hover {
  color: #606c76;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3.0rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

/*.button,
button,
dd,
dt,
li {
  margin-bottom: 1.0rem;
}*/

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

table {
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

b,
strong {
  font-weight: bold;
}

p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.75rem;
}
blockquote {
  border-left: 0.3rem solid #d1d1d1;
margin:  10px 0 0 0;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  line-height: 1.75rem;
  border: none;
}

blockquote *:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  margin-bottom: 2.0rem;
  margin-top: 0;
  text-align: center;
}


h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .2px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 10px;
  margin: 0 0 20px 0;
  padding-top: 20px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
}

h4 {
  font-size: 1.2remrem;
  line-height: 1.35; 
  font-weight: 500;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.clearfix:after, .grp:after, .newsitem::after {
  clear: both;
  content: ' ';
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}
main {
	padding-top: ;
}
h1 {
  width: auto; float: right;
  font-size: 2.2rem;
  line-height: 2rem;
  position: relative; top: 200px;
	padding: 30px; background-color: rgba(255,255,255,.8);
	border-radius: 3px; margin: 0 5%;
	color: #275b9c;
	letter-spacing: .25rem;
	text-align: right;
}
header {
	height: 600px;
	background: #fff url('josephine_head.jpg') no-repeat left top;
	background-size: content;
	background-attachment: fixed;
	/*display: flex;
	align-items: center;
	justify-content: flex-end;*/
}


button#play2, button#pause2 {
	 background: #bcf; padding: 0 20px;
	 position: absolute; float: right; margin: 0 7%;
	  top: 300px; right: 100px;
	  border-radius: 25px; transition: background .2s ease-in-out 0s;
}
button#play2:hover, button#pause2:hover {
	background: #bcf; background-color: #abe;
}
#play2 i.material-icons, #pause2 i.material-icons { color: #fff;
}
button#pause2 {
	display: none;
}

.btntext { padding: 0 10px 0 10px;
position: relative; top: -5px;
}
.btn { display: block;
	border-radius: 3px;
	height: 50px;
	text-transform: uppercase;
	color: #fff;
}



.ltpurpbg {
	background-color: #bcf;
	
}
/* @group Navbar */

nav {
	background-color: #bcf;
	width: 100%; 
	
}
nav ul { width: 100%; max-width: 1080px;
	list-style: none; margin: 0 auto;
	text-align: center;  padding-top: 10px;
}
nav ul li { 
	display: inline-block;  margin:  0;
}

nav ul li a { display: block; font-size: 1.2rem; color: #fff; padding: 10px 20px; transition: all .25s ease-in-out 0s;
	text-transform: uppercase;
}
nav ul li a:hover {
	color: #224;
}
nav.sticky, nav.sticky2 {
	background-color: rgba(187,204,255,.95); z-index: 100;
	
}
nav.sticky ul, nav.sticky2 ul {
	padding-top: 0;
}
nav.sticky ul li a, nav.sticky ul li a {font-size: 1rem;
}
li.navtitle {
	display: none;
}
nav.sticky li.navtitle, nav.sticky2 li.navtitle {
display: inline-block;
}

.sticky, .sticky2 {
  position: fixed;
  top: 0;
  width: 100%;
  	box-shadow: 0px 0px 2px rgba(0,0,4,.3);
  
}

nav.sticky + section.intro, nav.sticky2 + section.intro {
  padding-top: 85px;
}


/* @end */

.intro {
	min-height: 100%;
	background-color: #bcf;
	
}
.intro h2 {
	color: #fff; margin-top: 40px;
}
.about {
	width:  50%;
	max-width: 760px ;
	margin:  0 auto;
}

.about p {
	color: #035;
}

#news {
	background-color: #fff;
}
.newsitem { padding: 20px 0;
	width: 70%; max-width: 1000px; margin:  0 auto;
	border-top: 1px solid #ccc; 
}
.newsitem h3 {
	 margin-bottom: 10px;
text-align: left; color: #458;
text-transform: uppercase;
}
.newsitem img {
	float: left; padding-right: 30px;
}
img.fw {
	width: 100%;
	padding:  10px 0 20px 0;
}
#reviews {
	
}
.reviewsection {
	width: 70%; max-width: 1000px; margin:  0 auto
}
blockquote {
	font-style: italic;
}
.reviewsection h4 {
	text-align: left;
padding:  0 20px;
}
#contact {
		background-color: #68c;
	color: #fff;
	padding-bottom: 600px;
	text-align: center;
}
#contact h5 {
	font-size: 1.5rem;
}

#contact a.btn { display: inline-block;
	color: #68c; background: #fff;
	padding: 10px 20px;
	 border-radius: 25px; transition: background .2s ease-in-out 0s;
	 height:  50px;
	text-align: center;
	margin:  60px auto 50px auto;
}
#contact a.btntext { padding: 0 10px 0 10px;
position: relative; top: -5px; font-weight: ;
}
#contact a.btn:hover {
	background-color: #bcf;
}
.material-icons {
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: 'liga';
     -moz-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}
/*.player {
	 background: #0665a2;
	position: fixed; bottom: 0; width: 100%;
}
.player ul {
	width: 100%; max-width: 1080px;
		list-style: none; margin: 0 auto;
		text-align: center;
}
.player ul li { 
	display: inline-block; margin:  0;
}
.player ul li a {
	color: #333; font-weight: 500;
	text-transform: uppercase;
}
.player ul li a.trackname { color: #99b;
position: relative; top: -5px; font-size: 1.8rem;
}
.player ul li i { display: block;
	color: #99b; padding: 15px 15px; 
}
.player {
	box-shadow: 0px 0px 2px rgba(0,0,0,.3);
}*/


* {
-webkit-tap-highlight-color:rgba(0,0,0,0);
-webkit-tap-highlight-color:transparent;
}

/* @group Audio Player */
button{
	margin:0;
	padding:0;
	border:none;
	outline:none;
}



#audio-player {
	position: fixed; bottom: 0; width: 100%;
	box-shadow: 0px 0px 2px rgba(0,0,4,.3);
} 



.artist{
}

input#volume{
	width:100%;
	-webkit-appearance:none !important;
	background:#ccc;
	height:1px;
	position: relative; bottom: 4px;
}
input#volume::-webkit-slider-thumb, input#volume::-moz-range-thumb{
	-webkit-appearance:none !important;

	background:#aaa;
	height:18px;
	width:18px;
	 border: none;
}

#buttons{

}
#buttons button {
	background: none;
}
button#play{

}

button#pause{

}

button#stop{

}

button#prev{

}

button#next{

}

#tracker{
	position:relative;
	width:100%;
}

#progress-bar{
	width:100%;
	height:10px;
	background: #eee;
	position: relative; top:  2px;
}

#progress{
	background:#bcf;
	height:10px;
	display:inline-block;
	position: relative; top: -3px;
}

#duration{
	padding: 4px 8px;
	color: #aaa;
}

#playlist{ display: none;
	list-style:none;
}
#playlist li{
	cursor:pointer;
}
#playlist li.active{
	
}

.material-icons {
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: 'liga';
     -moz-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}
.player {
	background-color: #fff;
	padding: 7px 10px 0 10px;
}
.player ul {
	width: 100%; max-width: 1080px;
		list-style: none; margin: 0 auto;
		text-align: center;
}
.player ul li { 
	display: inline-block; margin:  0;
	

}
li.controls {
	padding-top: 10px; padding-bottom: 0px;
}
li.trackinfo {
font-weight: 400;	width: 40%;
	text-align: left;
}
li.progressdisplay {
	width: 25%;
	text-align: left;
}
li.volumecontrol {
	width: 5%;
}
li.trackinfo, li.progressdisplay, li.durationdisplay, li.volumecontrol {
	position: relative; 
	bottom: 7px;
}
li.durationdisplay {
	width: 50px;
	text-align: left;
}
li.volumeicon i.material-icons { color: #aaa;
	font-size: 16px; position: relative; top: -4px;
}
button i.material-icons {
	color: #777;
}
main section {
	padding-top: 55px;
	padding-bottom: 50px;
}
#credits {
	background-color: #eaeeff;
}
.creditswrap h2 {
	border-bottom: 1px solid #aaa;
}
#credits article { margin:  0 auto;
	width: 50%;
}
article ol li {
	font-size: 1rem; line-height: 1.6rem;
	padding:  20px 0; border-bottom: 1px solid #ccc;
	counter-increment: step-counter;
	
}
article ol {
margin-left: 0;
   padding-right: 0;
   list-style-type: none;
   
}
article ol li::before {
    content: counter(step-counter);
    margin-right: 5px;
    color: #035;
    font-weight: bold;
    padding: 3px 8px;
}
#photos {
	background: #445;
}
.photocollection { 
	margin: 0 auto;
	width:  90%;
	max-width: 1200px;
	text-align: center;
	padding-bottom: 40px;
}
#photos h2 {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.5);
	margin:  0 auto;
	width: 90%; max-width: 1200px;
	margin-bottom: 50px;
}
#photos h3 {
	color: #eef;
	font-size: 1.2rem;
	margin-bottom: 20px;
}
/* @end */

#navmob, #mobnav, #mobmenu {
	display: none;
}

ul#mobnav li {
display: block;border-top: 1px solid rgba(255,255,255,.5);	padding: 10px 0;
}

@media (max-width: 992px) {
	h1 {
	  width: 100%; float: none;
	  font-size: 2.2rem;
	  line-height: 2.2rem;
	top: 0px;
		border-radius: 0px; margin: 0 0;
		text-align: center;
	}
	button#play2, button#pause2 {
		 background: #bcf; padding: 0 20px;
		 position: relative; float: right; margin: 0 5%;
		 top: 400px;  right: auto;
	}
	.about {
		width:  70%;
	}
	#navmob  {
		display: block;
	}
	#mobmenu{
		display: block;
		text-align: center;
		padding: 8px; color: #fff;
		cursor: pointer;
	}
	
	ul.bignav {
		display: none;
	}
	.menutext {
		position: relative; top: -6px; padding: 0 10px;
	}
	#mobnav {
		border-bottom: 1px solid #FFF
	}
}
@media (max-width: 600px) {
	button#play2, button#pause2 {
		 background: #bcf; padding: 0 20px;
		 position: relative; float: none; margin: 0 auto;
		 top: 180px;  right: auto;
	}
	div.newsitem, .about, #credits article, .reviewsection {
		width:  80%;
		
	}
	.player {
		padding-bottom: 20px;
	}
	.player ul li.trackinfo { height: 25px;
	position: fixed; bottom: 0; left: 0;
	display: block; width: 100%;
	text-align: center;
	}
	header {
		height: 400px;
		background: #fff url('josephine_head.jpg') no-repeat center top;
		background-size:cover;
	}
	
}

