* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Hind Madurai", "Arial", sans-serif;
  font-weight: 300;
  color: white;
}

*::-moz-selection {
  background: #ddd;
}

*::selection {
  background: #ddd;
}

*::-moz-selection {
  background: #ddd;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  outline: none;
  font-size: 16px;
}

html {
  background-color: #000;
  overflow-y: auto;
}

body {
  background-color: black;
}

div.background {
  background: url("../img/drum.jpeg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-backgroud-size: cover;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 500px) {
  div.background {
    background-position: 60% 50%;
    background-attachment: scroll;
  }
}

div.page-wrapper {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

div.bg-dimmer {
  position: fixed;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 1;
}

div.bg-dimmer.transparent {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

div.bg-dimmer.home.transparent {
  background-color: rgba(0, 0, 0, 0.8) !important;
  opacity: 1;
}

div.bg-dimmer.home {
  opacity: 0;
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
}

div.page-content {
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  margin: 0 auto;
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
  opacity: 1;
}

div.page-content.transparent {
  opacity: 0;
}

h2.page-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 3.5rem;
  color: #3232ff;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 1;
}

h2.page-header.transparent {
  opacity: 0;
}

h3.page-subheader {
  text-align: center;
  margin: 0 auto 20px;
  width: 300px;
  border-top: 1px solid #3232ff;
  border-bottom: 1px solid #3232ff;
  font-size: 2rem;
  -webkit-transition: all 2.25s ease;
  transition: all 2.25s ease;
  opacity: 1;
}

h3.page-subheader.transparent {
  opacity: 0;
}

@media screen and (max-width: 470px) {
  h3.page-subheader {
    font-size: 1.8rem;
  }
}

h4.page-section-header {
  width: 300px;
  border-top: 1px solid #3232ff;
  border-bottom: 1px solid #3232ff;
  font-size: 1.25rem;
  padding: 6px 0;
  text-align: center;
  margin: 0 auto 20px;
}

div.header-nav-container {
  text-align: center;
  position: relative;
  width: 100%;
  font-size: 1rem;
  z-index: 999;
  opacity: 1;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

div.header-nav-container.transparent {
  opacity: 0;
}

nav.header-nav {
  position: fixed;
  text-align: center;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.7);
}

nav.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav.header-nav ul li {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

nav.header-nav ul li a {
  text-decoration: none;
  position: relative;
  font-size: 1.1rem;
}

nav.header-nav ul li a::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  border-color: transparent;
  background-color: #3232ff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
  transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
}

nav.header-nav ul li a:hover::before,
nav.header-nav ul li a.active::before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

nav.header-nav.home {
  background-color: transparent;
}

nav.header-nav .nav-border-bottom {
  position: absolute;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#3232ff), to(rgba(50, 50, 255, 0)));
  background-image: linear-gradient(to right, #3232ff, rgba(50, 50, 255, 0));
  height: 2px;
  width: 100%;
}

nav.header-nav li.nav-divider {
  display: none;
}

div.header-nav-icon {
  display: none;
  width: 30px;
  height: 24px;
  position: fixed;
  right: 20px;
  top: 20px;
  border-radius: 50%;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

div.header-nav-icon span.nav-icon-line {
  background-color: #3232ff;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

div.header-nav-icon span.nav-icon-line-1 {
  top: 0;
}

div.header-nav-icon span.nav-icon-line-2 {
  top: 0;
  bottom: 0;
  margin: auto;
}

div.header-nav-icon span.nav-icon-line-3 {
  bottom: 0;
}

div.header-nav-icon:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  cursor: pointer;
}

div.header-nav-container.open span.nav-icon-line-1 {
  -webkit-transform: translateY(12px) translateY(-50%) rotate(45deg);
          transform: translateY(12px) translateY(-50%) rotate(45deg);
}

div.header-nav-container.open span.nav-icon-line-2 {
  -webkit-transform: translateY(-2px) translateY(50%) rotate(-45deg);
          transform: translateY(-2px) translateY(50%) rotate(-45deg);
}

div.header-nav-container.open span.nav-icon-line-3 {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

@media screen and (max-width: 780px) {
  div.header-nav-container nav.header-nav {
    visibility: hidden;
    opacity: 0;
  }
  div.header-nav-container nav.header-nav ul {
    display: none;
  }
  div.header-nav-container .header-nav-icon {
    display: block;
  }
  div.header-nav-container.open nav.header-nav {
    visibility: visible;
    opacity: 1;
  }
  div.header-nav-container.open nav.header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  div.header-nav-container.open nav.header-nav ul li a {
    font-size: 1.35rem;
  }
  div.header-nav-container {
    width: 100%;
  }
  nav.header-nav {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: none;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  nav.header-nav.home {
    background-color: rgba(0, 0, 0, 0.7);
  }
  nav.header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    max-height: 560px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding-top: 10vh;
    padding-bottom: 10vh;
    list-style-type: none;
    font-size: calc(18px + (28 - 18) * ((100vw - 320px) / (770 - 320)));
  }
  nav.header-nav ul li {
    margin: 0;
    padding: 0;
  }
  nav.header-nav ul li a {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  nav.header-nav ul li a::before {
    display: none;
  }
  nav.header-nav ul li a:hover::before,
  nav.header-nav ul li a.active::before {
    visibility: none;
  }
  nav.header-nav ul li a.active,
  nav.header-nav ul li a.active:hover {
    color: #3232ff;
    text-shadow: 0 0 10px black;
    -webkit-transition: none;
    transition: none;
  }
  nav.header-nav ul li a:hover {
    color: #bbb;
  }
  nav.header-nav ul li a:active {
    -webkit-transition: none;
    transition: none;
    color: #3232ff;
  }
  nav.header-nav div.nav-border-bottom {
    display: none;
  }
  nav.header-nav li.nav-divider {
    display: block;
    width: 50vw;
    min-width: 280px;
    height: 2px;
    background-color: #3232ff;
  }
}

div.main-heading-container {
  position: relative;
  /*height: calc(100vh - 50px);*/
  margin: 0 auto;
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 10;
}

div.main-heading-container:hover,
div.main-heading-container *:hover {
  cursor: default;
}

div.main-heading-container h1.main-header {
  display: block;
  text-align: center;
  color: #3232ff;
  font-size: 8rem;
  margin: 0;
  width: 642px;
  opacity: 0;
  background-image: linear-gradient(200deg, #e6e6ff, #3232ff);
  -webkit-background-clip: text;
  color: transparent;
}

div.main-heading-container h2.descriptors {
  position: absolute;
  margin: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
  font-size: 1.5rem;
  white-space: nowrap;
}

div.main-heading-container h2.descriptor-1 {
  left: 83px;
  top: -55px;
}

div.main-heading-container h2.descriptor-2 {
  right: 79px;
  bottom: -50px;
}

div.main-heading-container h2.descriptor-3 {
  right: 61px;
  top: -11px;
}

div.main-heading-container h2.descriptor-4 {
  left: 53px;
  bottom: -25px;
}

div.main-heading-container h2.descriptor-5 {
  left: 321px;
  top: -9px;
}

div.main-heading-container h2.descriptor-6 {
  left: 220px;
  bottom: -50px;
}

div.main-heading-container h2.descriptor-7 {
  left: 4px;
  top: -57px;
}

div.main-heading-container h2.descriptor-8 {
  right: 123px;
  bottom: -59px;
}

div.main-heading-container h2.descriptor-9 {
  left: 185px;
  top: -95px;
}

div.main-heading-container h2.descriptor-10 {
  left: 108px;
  bottom: -71px;
}

div.main-heading-container h2.descriptor-11 {
  right: 160px;
  top: -9px;
}

@media screen and (max-width: 780px) {
  div.main-heading-container h1.main-header {
    font-size: 6rem;
    width: 480px;
  }
  div.main-heading-container h2.descriptors {
    font-size: 1.1rem;
  }
  div.main-heading-container h2.descriptor-1 {
    left: 62px;
    top: -39px;
  }
  div.main-heading-container h2.descriptor-2 {
    right: 61px;
    bottom: -36px;
  }
  div.main-heading-container h2.descriptor-3 {
    right: 45px;
    top: -6px;
  }
  div.main-heading-container h2.descriptor-4 {
    left: 39px;
    bottom: -15px;
  }
  div.main-heading-container h2.descriptor-5 {
    left: 240px;
    top: -3px;
  }
  div.main-heading-container h2.descriptor-6 {
    left: 165px;
    bottom: -33px;
  }
  div.main-heading-container h2.descriptor-7 {
    left: 4px;
    top: -40px;
  }
  div.main-heading-container h2.descriptor-8 {
    right: 93px;
    bottom: -40px;
  }
  div.main-heading-container h2.descriptor-9 {
    left: 140px;
    top: -68px;
  }
  div.main-heading-container h2.descriptor-10 {
    left: 81px;
    bottom: -50px;
  }
  div.main-heading-container h2.descriptor-11 {
    right: 120px;
    top: -4px;
  }
}

@media screen and (max-width: 500px) {
  div.main-heading-container h1.main-header {
    font-size: 4rem;
    width: 320px;
  }
  div.main-heading-container h2.descriptors {
    font-size: 0.9rem;
  }
  div.main-heading-container h2.descriptor-1 {
    left: 35px;
    top: -36px;
  }
  div.main-heading-container h2.descriptor-2 {
    right: 31px;
    bottom: -36px;
  }
  div.main-heading-container h2.descriptor-3 {
    right: 25px;
    top: -12px;
  }
  div.main-heading-container h2.descriptor-4 {
    left: 21px;
    bottom: -21px;
  }
  div.main-heading-container h2.descriptor-5 {
    left: 155px;
    top: -10px;
  }
  div.main-heading-container h2.descriptor-6 {
    left: 102px;
    bottom: -33px;
  }
  div.main-heading-container h2.descriptor-7 {
    left: 6px;
    top: -37px;
  }
  div.main-heading-container h2.descriptor-8 {
    right: 53px;
    bottom: -40px;
  }
  div.main-heading-container h2.descriptor-9 {
    left: 80px;
    top: -60px;
  }
  div.main-heading-container h2.descriptor-10 {
    left: 43px;
    bottom: -47px;
  }
  div.main-heading-container h2.descriptor-11 {
    right: 76px;
    top: -10px;
  }
}

p.contact-email {
  text-align: center;
  -webkit-transition: all 2.25s ease;
  transition: all 2.25s ease;
  opacity: 1;
  font-size: 1.5rem;
  margin-top: 50px;
}

p.contact-email.transparent {
  opacity: 0;
}

p.contact-email span {
  cursor: default;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

form#contact-form {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  opacity: 1;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
}

form#contact-form.transparent {
  opacity: 0;
}

form#contact-form #inputs input,
form#contact-form #inputs textarea {
  display: block;
  outline: none;
  border: none;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  font-size: 1.1rem;
  border-radius: 5px;
}

form#contact-form #inputs label {
  width: 100%;
  font-size: 1.1rem;
}

form#contact-form #inputs .input {
  padding-top: 25px;
}

form#contact-form #inputs .input-5 {
  overflow: hidden;
  position: relative;
}

form#contact-form #inputs .input-5 input,
form#contact-form #inputs .input-5 textarea {
  position: relative;
  z-index: 1;
  padding-bottom: 14px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: transparent;
}

form#contact-form #inputs .input-5 label {
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  z-index: 0;
  top: 35px;
  left: 10px;
  color: #fff;
}

form#contact-form #inputs .input-5:hover label {
  color: rgba(255, 255, 255, 0.7);
}

form#contact-form #inputs .input-5:hover::before {
  background-color: rgba(255, 255, 255, 0.7);
}

form#contact-form #inputs .input-5::before, form#contact-form #inputs .input-5::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

form#contact-form #inputs .input-5.textarea::before, form#contact-form #inputs .input-5.textarea::after {
  top: 70px;
  bottom: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

form#contact-form #inputs .input-5::before {
  background-color: #fff;
  z-index: 3;
}

form#contact-form #inputs .input-5::after {
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #3232ff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 4;
}

form#contact-form #inputs .input-5.active input,
form#contact-form #inputs .input-5.active textarea {
  background-color: transparent;
}

form#contact-form #inputs .input-5.active label {
  font-size: 0.9rem;
  top: 10px;
  left: 0;
  color: #fff;
}

form#contact-form #inputs .input-5.active::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

form#contact-form #inputs .input-5.active.textarea::after, form#contact-form #inputs .input-5.active.textarea::before {
  top: auto;
  bottom: 0;
}

form#contact-form #inputs .input-5.complete label {
  font-size: 0.9rem;
  top: 10px;
  left: 0;
  color: #fff;
}

form#contact-form #inputs .input-5.complete.textarea::after, form#contact-form #inputs .input-5.complete.textarea::before {
  top: auto;
  bottom: 0;
}

form#contact-form #inputs .input-5.complete.response::before {
  background-image: linear-gradient(45deg, #e6e6ff, #3232ff);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

form#contact-form #inputs .input-5.incomplete.response::before {
  background-image: linear-gradient(45deg, #e6e6ff, red);
}

form#contact-form input.submit {
  display: block;
  margin: 40px auto 0;
  color: #fff;
  background-color: #3232ff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 2px solid transparent;
  font-weight: 500;
  font-size: 1.1rem;
  -webkit-transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
  transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
  outline: none;
}

form#contact-form input.submit:hover {
  border-color: #3232ff;
  background-color: transparent;
  color: #3232ff;
  cursor: pointer;
}

form#contact-form input.submit:active {
  color: #3232ff;
  border-color: #3232ff;
  -webkit-transition: none;
  transition: none;
}

form#contact-form input.submit.disabled {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}

form#contact-form input.submit.disabled:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  background-color: transparent;
  cursor: default;
}

/*
div.form-control {
	position: relative;
	width: 100%;
	height: 60px;
}
span.form-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}
span.form-line::before,
span.form-line::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
}
span.form-line::before {
	background: pink;
}
span.form-line::after {
	background: purple;
	transform: translate3d(-100%, 0, 0);
	transition: all .6s cubic-bezier(.19, 1, .22, 1);
}
input, 
textarea {
	position: relative; 
	top: 0;
	height: 60px;
	left: 0;
	width: calc(100% - 50px);
	font-size: 1rem;
	display: block;
	border-radius: 0;
	outline: none;
	border: none;
	background: none;
	z-index: 2;
}
textarea {
	height: 300px;
}
label {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 50px);
	cursor: pointer;
	transition: all .6s cubic-bezier(.19, 1, .22, 1);
	z-index: 1;
}
.active {
	transform: translateZ(0);
	transition: none;
}
div.active .form-line::after {
	transform: translateZ(0);
}
div.complete label,
div.active label {
	font-size: 0.8rem;
	transform: translate3d(0, -36px, 0);
	pointer-events: none;
}
input[type="submit"] {
	height: initial;
	width: initial;
	margin: 0 auto;
	background-color: $will-blue;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	border: 2px solid transparent;
	color: #000;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all .2s cubic-bezier(.3,0,0,1); 
}
input[type="submit"]:hover {
	border: 2px solid $will-blue;
	color: $will-blue;
	background-color: transparent;
	cursor: pointer;
}
input[type="submit"]:active {
	background-color: rgba(255, 255, 255, 0.1);
	transition: none;
}
*/
.page-content.media-page {
  max-width: 1250px;
}

.media-container {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (25vw)[4];
      grid-template-rows: repeat(4, 25vw);
  grid-gap: 15px;
  overflow: visible;
  opacity: 1;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
}

.media-container.transparent {
  opacity: 0;
}

@media screen and (min-width: 1500px) {
  .media-container {
    -ms-grid-rows: (375px)[3];
        grid-template-rows: repeat(3, 375px);
  }
}

.media-item {
  margin: 0;
  position: relative;
}

.media-item .media-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-item a.media-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-box-shadow: inset 0 0 0 5px rgba(50, 50, 255, 0.5);
          box-shadow: inset 0 0 0 5px rgba(50, 50, 255, 0.5);
  text-decoration: none;
}

.media-item a.media-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 0 0 7px #3232ff;
          box-shadow: inset 0 0 0 7px #3232ff;
}

.media-item a.media-link .media-label {
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  left: 50%;
  top: 10%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

.media-item a.media-link .media-label .music {
  position: relative;
  display: inline-block;
  z-index: 20;
}

.media-item a.media-link .media-label .music::before {
  position: absolute;
  z-index: -1;
  bottom: 2px;
  left: 0;
  width: 100%;
  content: "";
  height: 8px;
  background-color: #3232ff;
}

@media screen and (max-width: 1050px) {
  .media-item a.media-link .media-label {
    top: 15%;
  }
  .media-item a.media-link .media-label .music,
  .media-item a.media-link .media-label .bullet,
  .media-item a.media-link .media-label .composer {
    display: inline-block;
  }
}

.media-item a.media-link .play-icon-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 60px;
  background-image: linear-gradient(45deg, #e6e6ff, #3232ff);
  border-radius: 10px;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.media-item a.media-link .play-icon-body:hover {
  -webkit-box-shadow: 0 0 40px 0 rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 40px 0 rgba(255, 255, 255, 0.5);
}

.media-item a.media-link .play-icon-body:hover .play-icon-arrow {
  border-left: 35px solid white;
}

.media-item a.media-link .play-icon-body .play-icon-arrow {
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 35px solid rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 701px) and (max-width: 960px) {
  .media-item a.media-link .play-icon-body {
    width: 56px;
    height: 42px;
  }
  .media-item a.media-link .play-icon-body:hover .play-icon-arrow {
    border-left: 25px solid white;
  }
  .media-item a.media-link .play-icon-body .play-icon-arrow {
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 25px solid rgba(255, 255, 255, 0.8);
  }
}

@media screen and (max-width: 500px) {
  .media-item a.media-link .play-icon-body {
    width: 56px;
    height: 42px;
  }
  .media-item a.media-link .play-icon-body:hover .play-icon-arrow {
    border-left: 25px solid white;
  }
  .media-item a.media-link .play-icon-body .play-icon-arrow {
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 25px solid rgba(255, 255, 255, 0.8);
  }
}

@media screen and (max-width: 700px) {
  .page-content.media-page {
    padding-left: 0;
    padding-right: 0;
  }
  .media-container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (45vw)[7];
        grid-template-rows: repeat(7, 45vw);
    grid-gap: 10px;
  }
}

.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
  opacity: 1;
}

.about-container.transparent {
  opacity: 0;
}

.about-container .about-image {
  width: 40%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  margin: 0 auto;
}

.about-container .about-image .about-will-image {
  margin: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-image: url("../img/headshot.jpeg");
  background-size: cover;
  background-position: center top;
  -webkit-box-shadow: -15px -15px 0 rgba(50, 50, 255, 0.5);
          box-shadow: -15px -15px 0 rgba(50, 50, 255, 0.5);
}

.about-container .about-image .about-will-image .accent-line {
  position: absolute;
  height: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.about-container .about-image .about-will-image .accent-line-1 {
  width: 80px;
  bottom: 10px;
  right: -20px;
  background-color: rgba(50, 50, 255, 0.5);
}

.about-container .about-image .about-will-image .accent-line-2 {
  width: 90px;
  bottom: 42px;
  right: -30px;
  background-color: rgba(40, 40, 255, 0.5);
}

.about-container .about-image .about-will-image .accent-line-3 {
  width: 140px;
  bottom: 24px;
  right: -10px;
  background-color: rgba(120, 120, 255, 0.5);
}

.about-container .about-image .about-will-image .accent-line-4 {
  width: 170px;
  bottom: 64px;
  right: -38px;
  background-color: rgba(200, 200, 255, 0.5);
}

.about-container .about-text {
  width: 60%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.about-container .about-text p {
  width: 95%;
  padding: 10px;
}

.about-container .about-text p.p-1 {
  position: relative;
  left: 5%;
  background-color: rgba(200, 200, 255, 0.3);
}

.about-container .about-text p.p-2 {
  background-color: rgba(120, 120, 255, 0.3);
  position: relative;
}

.about-container .about-text p.p-3 {
  position: relative;
  left: 5%;
  background-color: rgba(40, 40, 255, 0.3);
}

.about-teaching {
  opacity: 1;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
}

.about-teaching.transparent {
  opacity: 0;
}

.about-teaching h3.page-subheader {
  margin-bottom: 30px;
}

.about-teaching p {
  max-width: 750px;
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(200, 200, 255, 0.3);
}

.about-teaching h4 {
  font-size: 1.25rem;
  max-width: 350px;
  text-align: center;
  border-bottom: 1px solid #3232ff;
  border-top: 1px solid #3232ff;
}

.about-teaching ul {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  max-width: 750px;
  position: relative;
  background-color: rgba(120, 120, 255, 0.3);
  max-width: 312px;
  margin-left: 80px;
}

.about-teaching ul li {
  margin-bottom: 10px;
  padding: 5px 10px;
  position: relative;
  display: table;
}

@media screen and (max-width: 470px) {
  .about-teaching ul {
    margin-left: 0;
    max-width: 100%;
  }
  .about-teaching ul li {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 830px) {
  .page-content.about-page {
    padding-left: 0;
    padding-right: 0;
  }
  .about-container {
    display: block;
  }
  .about-container .about-image {
    height: 400px;
    width: 95%;
    max-width: 400px;
  }
  .about-container .about-image .about-will-image {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .about-container .about-text {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  .about-container .about-text p,
  .about-container .about-text p.p-1,
  .about-container .about-text p.p-2,
  .about-container .about-text p.p-3 {
    width: 100%;
    left: 0;
  }
}

@media screen and (max-width: 470px) {
  .about-teaching h4 {
    max-width: 300px;
  }
}

.jamz-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px;
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
  opacity: 1;
}

.jamz-container.transparent {
  opacity: 0;
}

.jamz-container .jamz-image-wrapper {
  width: 40%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.jamz-container .jamz-image-wrapper .jamz-image {
  margin: 30px;
  max-width: 90%;
  height: auto;
  -webkit-box-shadow: -15px -15px 0 rgba(50, 50, 255, 0.5);
          box-shadow: -15px -15px 0 rgba(50, 50, 255, 0.5);
}

.jamz-container .jamz-text {
  width: 60%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.jamz-container .jamz-text p {
  width: 95%;
  padding: 10px;
  position: relative;
}

.jamz-container .jamz-text p.p-1 {
  left: 5%;
  background-color: rgba(50, 50, 255, 0.1);
}

.jamz-container .jamz-text p.p-2 {
  background-color: rgba(50, 50, 255, 0.15);
}

.jamz-container .jamz-text p.p-3 {
  left: 5%;
  background-color: rgba(50, 50, 255, 0.2);
}

.jamz-container .jamz-text p.p-4 {
  background-color: rgba(50, 50, 255, 0.25);
}

.jamz-container .jamz-text p.p-5 {
  left: 5%;
  background-color: rgba(50, 50, 255, 0.3);
}

.jamz-link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.jamz-link-container.transparent {
  opacity: 0;
}

.jamz-link-container .jamz-buy-now {
  margin-top: 20px;
  margin-bottom: 60px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #3232ff;
  color: #fff;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  font-weight: 500;
  border-radius: 4px;
}

.jamz-link-container .jamz-buy-now:hover {
  background-color: rgba(50, 50, 255, 0.5);
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05), 2px 2px 10px rgba(50, 50, 255, 0.6), 4px 4px 16px rgba(255, 255, 255, 0.1);
          box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.05), 2px 2px 10px rgba(50, 50, 255, 0.6), 4px 4px 16px rgba(255, 255, 255, 0.1);
}

.jamz-link-container .jamz-buy-now:active {
  background-color: rgba(50, 50, 255, 0.8);
  -webkit-transition: none;
  transition: none;
}

.publications-page .media-item {
  max-width: 600px;
  margin: 40px auto;
  height: 25vw;
  background-color: rgba(0, 0, 0, 0.75);
}

@media screen and (min-width: 1500px) {
  .publications-page .media-item {
    height: 375px;
  }
}

@media screen and (max-width: 960px) {
  .publications-page .media-item {
    height: 35vw;
  }
}

@media screen and (max-width: 700px) {
  .publications-page .media-item {
    height: 45vw;
  }
}

@media screen and (max-width: 830px) {
  .page-content.publications-page {
    padding-left: 0;
    padding-right: 0;
  }
  .jamz-container {
    display: block;
  }
  .jamz-container .jamz-image-wrapper {
    width: 95%;
    max-width: 400px;
  }
  .jamz-container .jamz-text {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  .jamz-container .jamz-text p,
  .jamz-container .jamz-text p.p-1,
  .jamz-container .jamz-text p.p-2,
  .jamz-container .jamz-text p.p-3,
  .jamz-container .jamz-text p.p-4,
  .jamz-container .jamz-text p.p-5 {
    width: 100%;
    left: 0;
  }
}
/*# sourceMappingURL=style.css.map */