@font-face {
    font-family: 'Halyard Display';
    src: url('/webfonts/halyarddis-regular-webfont.woff2') format('woff2'), url('/webfonts/halyarddis-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Halyard Display';
    src: url('/webfonts/halyarddis-bd-webfont.woff2') format('woff2'), url('/webfonts/halyarddis-bd-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Halyard Display';
    src: url('/webfonts/halyarddisblack-webfont.woff2') format('woff2'), url('/webfonts/halyarddisblack-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Halyard Numbers';
    src: url('/webfonts/halyardnum.woff2') format('woff2'), url('/webfonts/halyarddnum.woff') format('woff');
    font-weight: lighter;
    font-style: normal;
}
@font-face {
    font-family: 'Halyard Text';
    src: url('/webfonts/HalyardText-Reg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Halyard Text';
    src: url('/webfonts/HalyardText-Bd.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Halyard Text';
    src: url('/webfonts/HalyardText-It.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@keyframes load {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        z-index: 10;
    }
    100% {
        opacity: 0;
        pointer-events: none;
        z-index: -1;
    }
}
@keyframes appear {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes pulsate {
    0% {
        opacity: .8;
        transform: scale(1, 1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5, 2.5);
    }
}
html, body {
    font-family: 'Halyard Text', sans-serif;
    font-size: 14px;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

a {
    color: black;
    text-decoration: none;
}
.social a {
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.social a:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 1);
}
#IDS {
    /*display: none;*/
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    width: 40px;
    z-index: 9;
    transition: transform .25s;
    opacity: 0;
}
#IDS.loaded{
  opacity: 1;
}
#IDSload {
    height: 35vh;
    max-width: 100%;
    margin-bottom: 5vh;
    display: block;
}

.home, .load {
    display: flex;
    position: absolute;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.home {
    opacity: 0;
    transition:transform .25s;
     -webkit-animation: appear 3s forwards;
    z-index: 3;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    background-blend-mode: soft-light;
}

.load {
    z-index: 10;
    width: 100%;
    background-color: white;
    transition: background-color 2s;
}
.load.loaded{
       -webkit-animation: load 2s forwards;
}
.homeContainer {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
}
.homeContainer.loaded{
  opacity: 1
}
.about {
    background-color: white;
    display: block;
    position: relative;
    width: calc(100vw);
    height: calc(100vh);
    transform: translate3d(100vw,0,0);
    transition: transform .25s;
    z-index: 2;
}
.blurbContainer {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: calc(65px + 3vw);
    width: calc(92.5vw + 1px);
    margin-left: auto;
    margin-right: auto
}
.blurb {
    display: flex;
    flex-direction: column;
    min-width: 40vw;
    max-width: calc(100vw - 9vw - 80px);
    max-height: calc(100vh - (65px + 3vw));
    text-align: left;
    color:black;

}
.rose {
    opacity: 1;
    height: 30vh;
    margin: 0 5vw 0 5vw;
}
.home.showAbout {
    transform: translate3d(-100vw,0,0);
}
.about.showAbout {
  transform: translate3d(0,0,0);


}
.ids {
    position: absolute;
    top: calc(2vw - 6px);
    left: calc(3.5vw - 10px);
    z-index: 5;
    opacity: 0;
     -webkit-animation: appear 3s forwards;
    line-height: 1.3;
    transition: .25s;
    display: flex;
    align-items: center;
}
.ids.showAbout {
    width: calc(100vw - 9vw - 100px);
    padding-bottom: 2vw;
}
/*.ids.showAbout:hover {
    cursor: pointer;
}*/
h1 {
    font-family: 'Halyard Text';
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}
h1 span{
  font-weight: normal;
}
.logo {
  height: 50px;
  padding-right: 10px;
}
.schedule {
    /*display: flex;
    flex-direction: column;*/
    text-align: left;
    position: absolute;
    left: 3.5vw;
    bottom:3vw;
    line-height: 1.2;
}
.scheduleDate {
    margin-right: 15px;
}
.currentDate{
  position: absolute;
  bottom: 2.5vw;
  right: calc(4vw + 40px);
  font-weight: normal;
}
.currentDate:hover{
  cursor: pointer;
}
.currentDate b{
  display: inline-block;
  position: relative;
  font-weight: normal;
}
.currentDate b:after{
  content: "";
  background: rgba(0, 0, 0, .3);
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 100%
}
.currentDate:hover b:after{
  background: rgba(0, 0, 0, 1);
}
.aboutButton {
    color: rgba(0, 0, 0,1);
    position: absolute;
    width: 100px;
    text-align: right;
    right: calc(3vw);
    top: 2vw;
    opacity: 0;
    z-index: 5;
     -webkit-animation: appear 3s forwards;
}
.aboutButton p {
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    margin: 0;
}
.aboutButton p:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    cursor: pointer;
}
.aboutButton.showAbout {
    cursor: pointer;
}
.aboutButton.showAbout p {
    display: inline-block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.aboutButton.showAbout p:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    cursor: pointer;
}

/*.idsBlurb {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    overflow-y: hidden;
    padding: 0;
    max-height: 0;
    transition: .25s;
    color: rgba(0, 0, 0, 0);
}
.idsBlurb.selected2 {
  padding-bottom: 5vh;
  max-height: 50vh;
  height: 50vh;

}*/
.professor {
    max-height: 20vh;
    width: 92.5vw;
    overflow-y: hidden;
    transition: max-height .25s;
    border-left-width: 1px;
    border-left-style: solid;
}
.professor:hover{
  border-left-style: dashed;
  border-color: rgba(0,0,0,0.3);
}
.professor .rose{
  margin-left: 5vw;
}
.professor.selected2 {
    max-height: 80vh;
    /*height: 80vh;*/
    transition: max-height .25s;
}
.profTitle {
    display: flex;
    align-items: center;
    position: relative;
    font-family: "Halyard Display";
    font-weight: normal;
    width: calc(92.5vw - 5vw);
    height: 20vh;
    margin-left: 5vw;
    font-size: calc(15px + 1vw);
    overflow: hidden;
}
.blurb .professor:nth-child(1) .profTitle:hover {
    cursor: pointer;
}
.blurb .professor:nth-child(2) .profTitle h2:hover{
  cursor: pointer;
}
.profTitle h2{
  margin-right: 5vw;
  height: 100%;
  margin-bottom: 0;
  margin-top: 0;
  white-space: nowrap;
  font-size: calc(25px + 1vw);
  font-family: 'Halyard Display', sans-serif;
  display: flex;
  align-items: center;
}
.profTitle h3{
  font-size: calc(25px + 1vw);
  font-family: 'Halyard Display', sans-serif;
  margin-right: 5vw;
}
.profTitle p{
  margin: 0;
  margin-top: 10px;
}
.blurb .professor:nth-child(2) .profTitle h2{
  font-weight: normal;
  color:black;
  margin-top: 10px;
  font-size: calc(15px + 1vw)
}
.blurb .professor:nth-child(2).selected2{
}

.professor section{
  /*margin-top: 15vh;*/

}
.professor section>*{
  display: none;
}
.professor section.selected2{
  margin-top: 0;
}
.professor section.selected2>*{
    display: flex;
}

.profTitle p{
  height: 1px;
  width: 100%;
}
.profDesc {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    color: transparent;
    transition: .25s;
    margin-bottom: 5vh;
    /*margin-top: 15vh;*/
}
.selected2 .profDesc{
  color: black;
}
.profDesc div {
    width: 630px;
}
.spacer{
  width: 92.5vw;
  margin: auto;
  height: 50%;
  border-left-width: 1px;
  border-left-style: solid;
}


/*.strokeText {
    position: fixed;
    z-index: 9;
    bottom: .5vw;
    right: 2vw;
    pointer-events: none;
    opacity: 0;
    width: 100px;
    text-align: center;
}
.strokeText.hover {
    opacity: 1;
}
.strokeText.showAbout.invert {
    color: #ffffff
}*/
.artistName {
    font-family: 'Halyard Display', sans-serif;
    font-weight: 900;
    font-size: 11vw;
    transform-origin: center;
    margin: 0;
    line-height: 1
}
.credit {
    position: absolute;
    top: 90vh;
    font-size: 12px;
    text-align: center;
}
.infoTitle{
  width: 92.5vw;
  height: 40vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-left-width: 1px;
  border-left-style: solid;
}
.infoTitle h2{
  padding-left: 5vw;
  padding-right: 5vw;
  white-space: nowrap;
  font-size: calc(25px + 1vw);
  font-family: 'Halyard Display'
}
.infoTitle p{
  height: 1px;
  width: 100%;
  background-color: black;
  margin: 0;
  margin-top: 10px;
}
.info {
    padding-top: 0;
    z-index: 2;
}
.eventcontainer{
  padding-top: 0;
  position: relative;
}

.info.unlocked .speaker:last-child:after{
      background: rgba(0, 0, 0, 1);
}

.speaker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 20vh;
    text-align: left;
    color: black;
    width: 92.5vw;
    margin: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.4);
    transition: max-height 0.25s;
    overflow: visible;
}
.speaker:hover{
  border-left: 1px dashed rgba(0, 0, 0, .2)
}
.speaker.past{
    border-left-width: 1px;
    border-left-style: solid;
    color: black;
}
.speaker.past:hover {
    border-left-width: 1px;
    border-left-style: dashed;
}
.title {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: absolute;
    width: 87.5vw;
    padding: 7vh 0 3vh 5vw;
    height: 10vh;
}
.marker {
    display: none;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: calc(3vh + 8px);
    left: -9px;
}
.current .marker{
  display: flex;
}
.current:after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    height: 15vh;
    width: 1px
}
.current .marker div {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: pulsate 1s cubic-bezier(0.670, 0.005, 0.200, 1.000) infinite;
    animation-fill-mode: forwards;
}
.title:hover {
    cursor: pointer;
}
.copy {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
}
.speaker .copy {
    opacity: 0;
    margin: 22vh 0 0 10.5vw;
    color: rgba(0,0,0,1);
    transition: .25s;
    pointer-events: none;
    width: calc(92.5vw - 10.5vw);
}
.speaker .description {
    /*min-width: 30.5vw;*/
    width: 420px;
    margin-right: 5vw;
    margin-top: -7px;
}
.description h2 {
    margin-top: 0;
    font-weight: normal;
}
.speaker .photo {
    width: 30.5vw;
    /*max-height: 70vh;*/
}
.speaker .caption{
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
}
.speaker .photoContainer{
  width: 30.5vw;
  margin-right: 5vw;
}
.website {
    margin-top: 5vh;
    border-bottom-width: 1px;
    border-bottom-style: solid
}
.speaker.current .copy, .speaker.selected .copy {
    opacity: 1;
    pointer-events: all;
}
.speaker.current {
    position: relative;
    overflow: visible;
}
.speaker.selected {
    max-height: 200vh;
    padding-bottom: 50px;
}

.speaker.future.current {
    max-height: 200vh;
    padding-bottom: 50px;
}
.speaker.future.current .copy {
    opacity: 1;
}
.speaker .month {
    width: 3vw;
    font-size: 1.5vw;
    font-family: 'Halyard Display', sans-serif;
}
.date {
    font-family: 'Halyard Numbers', sans-serif;
    font-weight: lighter;
    line-height: 1;
}
.dateContainer {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}
.speaker .date {
    display: flex;
    font-size: 7.5vw;
    margin: 0 0 0 2.5vw;
    width: 12vw;
}
.speaker .name {
    font-family: "Halyard Display";
    font-weight: normal;
    width: 70vw;
    display: inline-block;
    font-size: calc(25px + 1vw);
}
.footer {
    display: flex;
    flex-wrap: wrap;
    width: 92.5vw;
    margin: auto;
    padding: 15vh 0 2vw 0;
}
/*.leftfooter img {
    width: 70px;
}*/
.leftfooter {
    width: 50%;
}
.leftfooter .logo {
    height: 70px;
}
.rightfooter {
    width: 50%;
}
label{
  display: block;
  font-size: 15px;
}
.rightfooter .email {
    font-family: 'Halyard Text', Helvetica, Arial, sans-serif;
    ;
    width: 200px;
    font-size: 15px;
    border: none;
    color: black;
    border-bottom: 1px solid black;
    background-color: transparent;
    outline: none;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
}
.rightfooter .email:focus {
    background-color: gainsboro;
    color: black;
}
.clear{
  display: inline-block;
}
div#mc_embed_signup{
  margin-top: 74px;
}
.rightfooter .button {
    font-family: 'Halyard Text', Helvetica, Arial, sans-serif;
    font-size: 15px;
    margin-left: 10px;
    background-color: transparent;
    border: 1px solid black;
    color: black;
    outline: none;
}
.rightfooter .button:hover {
    background-color: black;
    border: 1px solid black;
    color: white;
    cursor: pointer;
}

.rightfooter .button:active {
  opacity: .5;
}
.copyright {
    font-size: 13px;
    width: 50%;
    margin-bottom: 0;
}
.copyright.polyphony{
  margin-top: 15vh;
  width: 100%
}
@media screen and (max-width: 820px) {
    body{
      font-size: 13px;
    }
    #IDS {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        transition: .25s;
        left: calc(90vw - 100px + 13px);
        top: 80vh;
    }
    #IDS.loaded{
      opacity: 0;
    }
    #IDSload {
        /*width: 70vw;
        height: auto;
        margin-bottom: 5vh;*/
    }
    .homeContainer{
      height: auto;
    }
    .home{
      transition: none;
      position: relative;
    }
    .home.showAbout{
      position: absolute;
    }
    .about{
      position: absolute;
      transition: none;
    }
    .about.showAbout{
      height: auto;
      position: relative;
    }

    .aboutButton {
        /*left: calc(89vw - 100px);*/
        right: 9vw;
        top:calc(8vw - 7px);
    }
    .aboutButton p {
        border-bottom: 1px solid rgba(0, 0, 0, 1);
    }
    .schedule {
        left: 10vw;
        /*top:20vw;*/
        bottom: 14vw;
    }
    .currentDate{
      bottom:8.5vw;
      left: 10vw;
      right: inherit;
    }
    .artistName{
      transform: rotate(0deg) !important;
      width: 50% !important;
      margin: 0 0 0 0 !important;
      position:absolute;
      left: 9vw;
    }
    .ids {
        left: 9vw;
        top:calc(8vw - 14px);
        transition: none;
    }
    .ids.showAbout{
      /*transform:translate3d(-100vw,0,0)*/
    }
    .idsBlurb, .blurb, .ids.showAbout, .professor {
        width: 90vw;
        max-width: 90vw;
        max-height: none;
    }
    /*.professor.selected2 {
      max-height: 60vh;
      height: 60vh
    }
    .idsBlurb.selected2 {
        max-height: 40vh;
        height: 40vh;
    }*/
    .idsBlurb.selected2{
      color: white;
    }
    .professor{
      max-height: none;
      padding-bottom: 5vh;
      border-left: 1px solid transparent;
    }
    .professor:hover{
      border-left: 1px solid transparent;
    }
    .profTitle{
      margin-left: 10vw;
      width: 80vw;
      height: auto;
      max-height: none;
      flex-wrap: wrap;
    }
    .profTitle h3{
      width: 100%;
      margin-top: 0;
      margin-bottom: 0;
    }
    .infoTitle{
      height: auto;
      flex-wrap: wrap;
    }
    .infoTitle h2{
      margin-bottom: 0;
    }
    .profTitle p{
      /*opacity: 0;*/
    }

    .profDesc{
      color: black;
    }
    .blurb .professor:nth-child(1) .profTitle{
      pointer-events: none;
      margin-bottom: 5vh;
    }
    .blurb .professor:nth-child(2) .profTitle h2{
      font-size: calc(15px + 1vw);
      margin-bottom: 5vh;
    margin-top: 5vh;
    }
    .profDesc div {
        max-width: 80vw;
        margin-left: 10vw;
    }
    .spacer{
      margin-left: 0px;
    }
    .credit {
        display: none;
    }
    .blurbContainer {
        margin: 0;
        padding-top: calc(20vw);
        flex-direction: column;
        border-left-width: 1px;
        border-left-style: solid;
    }
    .rose {
        display: none;
    }
    .speaker {
        width: calc(100% - 1px);
        max-height: 15vh;
    }
    .speaker.past:hover{
      border-left-style: solid;
    }
    .speaker:hover{
      border-left-style: solid;
      border-color: rgba(0,0,0,0.4);
    }
    .marker {
        width: 20px;
        height: 20px;
        left: -10px;
    }
    .marker.begin.show{
        width: 20px;
        height: 20px;
        left: -10px;
    }
    .speaker .month {
        font-size: 17px;
    }
    .copy {
        flex-direction: column-reverse;
    }
    .dateContainer {
        flex-direction: column;
    }
    .speaker .name {
        margin-bottom: -8px;
    }
    .speaker .date {
        margin: 0;
    }
    .speaker .copy {
        margin-left: 10vw;
        margin-top: 16vh;
    }
    .speaker .description {
        width: 80vw;
        margin: 0 0 5vh 0;
    }
    .speaker .photoContainer{
      width: 80vw;
    }
    .speaker .photo {
        width: 80vw;
        max-width: 80vw;
    }
    .speaker .caption{
      margin-bottom: 5vh
    }
    .speaker.selected, .speaker.future.current {
        max-height: 200vh;
        padding-bottom: 0;
    }
    .marker{
      bottom:calc(1vh + 5px)
    }
    .footer {
        flex-direction: column;
    }
    .copyright{
      width: 85%;
      margin: auto;
      margin-bottom: 7.5vw
    }
    .copyright.polyphony{
      width: 85%
    }
    .title {
        width: 80vw;
        height: 10vh;
        padding-left: 10vw;
        align-items: flex-end;
        background-color: transparent;
        z-index: 7;
        padding: 10px 0 10px 10vw;
    }
    .leftfooter, .rightfooter {
        padding: 50px 0 0 0;
        width: 85%;
        margin: auto;
    }
    .rightfooter input {
        width: 110px;
    }
    .rightfooter .button {
      margin-left: 0;
    }
    .rightfooter .email{
      display: block;
    }
    textarea,
    input[type="text"],
    input[type="button"],
    input[type="submit"],
    input[type="email"] {
         -webkit-appearance: none;
         border-radius: 0;
    }
    input[type="email"] {font-size:16px !important}

    .infoTitle{
      margin-right: 0;
      margin-left: 0px;
      padding-bottom: 5vh;
    }
    .infoTitle p{
      /*opacity: 0;*/
      width: 80vw;
      margin-left: 10vw;
    }
    .infoTitle h2{
      padding-left: 10vw;
    }
    .current:after{
      height: 9vh
    }

}
