/**-----Resets-----**/
html, body {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.min-height {
  height: 70vh;
}

.two-col {
  column-count: 2;
}

.three-col {
  column-count: 3;
}

/**-----Fonts-----**/
@font-face {
  font-family: 'Whitney Bold';
  src: url("fonts/Whitney-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'Whitney';
  src: url("fonts/Whitney-Book.otf") format("opentype");
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Whitney Bold', Arial, Helvetica, sans-serif;
}

body {
  font-family: 'Whitney', Arial, Helvetica, sans-serif;
  font-size: 18px;
}

/**-----Buttons-----**/
.btn {
  font-family: 'Whitney Bold', Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding: 10px 30px;
}

.btn-primary {
  background-color: #FF7B23;
  border-color: #FF7B23;
}

.btn-primary:hover {
  background-color: #f79c51;
  border-color: #f79c51;
}

/**-----Sidebar-----**/
#menu-container {
  position: fixed;
  box-sizing: content-box;
  z-index: 9999;
  right: -250px;
  top: 0;
  height: 100%;
  width: 250px;
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 1s;
}

#menu-container.onscreen {
  position: fixed;
  box-sizing: content-box;
  z-index: 9999;
  right: 0;
  top: 0;
  height: 100%;
  width: 250px;
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 1s;
}

#menu-expander {
  position: absolute;
  left: -60px;
  width: 60px;
  height: 60px;
  top: 0;
  padding: 5px 15px;
  background: rgba(0, 0, 0, 0.8);
  color: #f79c51;
  font-size: 30px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
}

#menu-expander:hover {
  cursor: pointer;
}

.logo {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  max-width: 70%;
}

#menu a {
  display: block;
  font-family: 'Whitney Bold', Arial, Helvetica, sans-serif;
  color: #FFF;
  text-decoration: none;
  padding: 5px 40px;
  transition: 0.3s;
}

#menu a:hover {
color:#FF7B23;
transition: 0.3s;
}

#menu-container h6 {
  padding: 0 30px;
  color: #FFF;
  font-family: 'Whitney', Arial, Helvetica, sans-serif;
  opacity: 0.8;
}

#menu-container .social-share {
  display: block;
  margin: 30px auto;
  text-align: center;
}

/**-----Standard Elements-----**/
.exhibit-intro {
  background-color: #DDD;
  background-size: cover;
}

.exhibit-intro-text {
  text-align: center;
  padding:150px 0;
  z-index: 2;
  position: relative;
}

.exhibit img {
  min-width: 100%;
}

.exhibit-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.exhibit h5 {
  color: #b2b3b6;
  font-size: 16px;
  margin-bottom: 30px;
}

.exhibit a {
  position: relative;
  z-index: 50;
}

.exhibit p {
  text-align: justify;
}

.exhibit blockquote {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 5px solid #CCC;
}

.content-padding {
  padding-left:30px;
  padding-right: 30px;
}

.teaser-slide {
  color: #FFF;
  background: #000;
}

.teaser-slide p {
  margin-bottom:15px;
  font-size: 16px;
}

.teaser-slide h1 {
  display: inline-block;
  background: #0098A1;
  padding: 10px 15px;
  margin-bottom: 30px;
}

.teaser-slide .teaser-text {
  z-index: 20;
}

.teaser-slide::before {
  content: "";
  background-size: cover;
  background-position: center center;
  position: absolute;
  max-width: 100vw;
  max-height: 100vh;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.35;
}

.exhibit-intro {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #FFF;
}

.exhibit-intro h1 {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.exhibit-intro .backing {
  content: "";
  background-size: cover;
  background-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.45;
  z-index: 1;
}


/**-----Exhibit Specific Styles-----**/

  /*-----Welcome-----*/
  .welcome-intro::before {    
    background-image: url('../images/welcome-slide.jpg');
    opacity: 0.30;
  }

  .welcome-intro .teaser-text h1 {
    background: #00497c;
  }

  .welcome-intro.teaser-slide p {
    margin: 0 0 15px 0;
    font-size: 16px;    
  }

  .welcome-intro #welcome-quote {
    margin: 0;
    font-size: 20px;
  }

  /*------China------*/
  .china-intro::before {    
    background-image: url('../images/china-slide.jpg');
  }

  .exhibit-china .exhibit-intro h1 {
    background: #FF5339;
  }

  .exhibit-china .exhibit-intro .backing {
    background-image:url('../images/china-slide.jpg');
  }

  /*------Hindu------*/
  .hindu-intro::before {    
    background-image: url('../images/hindu-slide.jpg');
  }

  .hindu-intro .teaser-text h1 {
    background: #084521;
  }

  .exhibit-hindu .exhibit-intro .backing {
    background-image:url('../images/hindu-slide.jpg');
  }

  /*------Bhuddism------*/
  .buddhism-intro::before {    
    background-image: url('../images/buddhism-slide.jpg');
  }

  .buddhism-intro .teaser-text h1 {
    background: #FF5339;
  }

  .exhibit-buddhism .exhibit-intro .backing {
    background-image:url('../images/buddhism-slide.jpg');
  }

  /*------Abrahamic------*/
  .abrahamic-intro::before {    
    background-image: url('../images/abrahamic-slide.jpg');
  }

  .abrahamic-intro .teaser-text h1 {
    background: #00497c;
  }

  .exhibit-abrahamic .exhibit-intro .backing {
    background-image:url('../images/abrahamic-slide.jpg');
  }

  /*------Masks------*/
  .masks-intro::before {    
    background-image: url('../images/masks-slide.jpg');
  }

  .masks-intro .teaser-text h1 {
    background: #4A4C51;
  }

  .exhibit-masks .exhibit-intro .backing {
    background-image:url('../images/masks-slide.jpg');
  }

  /*------Giants------*/
  .giants-intro::before {    
    background-image: url('../images/giants-slide.jpg');
  }

  .giants-intro .teaser-text h1 {
    background: #FF5339;
  }

  .exhibit-giants .exhibit-intro .backing {
    background-image:url('../images/giants-slide.jpg');
  }

  /*------Highlights------*/
  .highlights-intro::before {    
    background-image: url('../images/highlights-slide.jpg');
  }

  .highlights-intro .teaser-text h1 {
    background: #AEDA8C;
  }

  .exhibit-highlights .exhibit-intro .backing {
    background-image:url('../images/highlights-slide.jpg');
  }

/**-----Share Buttons-----**/
.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
}

.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 5px 10px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif
}

.resp-sharing-button__icon svg {
  width: 15px;
  height: 15px;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #fff;
  fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--pinterest {
  background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
  background-color: #8c0615
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--tumblr {
  background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
  background-color: #222d3c
}

.resp-sharing-button--reddit {
  background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
  background-color: #3a80c1
}

.resp-sharing-button--google {
  background-color: #dd4b39
}

.resp-sharing-button--google:hover {
  background-color: #c23321
}

.resp-sharing-button--linkedin {
  background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
  background-color: #046293
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--xing {
  background-color: #1a7576
}

.resp-sharing-button--xing:hover {
  background-color: #114c4c
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--hackernews {
background-color: #FF6600
}
.resp-sharing-button--hackernews:hover, .resp-sharing-button--hackernews:focus {   background-color: #FB6200 }

.resp-sharing-button--vk {
  background-color: #507299
}

.resp-sharing-button--vk:hover {
  background-color: #43648c
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--tumblr {
  background-color: #35465C;
  border-color: #35465C;
}

.resp-sharing-button--tumblr:hover,
.resp-sharing-button--tumblr:active {
  background-color: #222d3c;
  border-color: #222d3c;
}

.resp-sharing-button--email {
  background-color: #777777;
  border-color: #777777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
  background-color: #5e5e5e;
  border-color: #5e5e5e;
}

.resp-sharing-button--pinterest {
  background-color: #bd081c;
  border-color: #bd081c;
}

.resp-sharing-button--pinterest:hover,
.resp-sharing-button--pinterest:active {
  background-color: #8c0615;
  border-color: #8c0615;
}

@media only screen and (max-width: 769px) {
  .two-col, .three-col {
    column-count: 1;
  }

  .teaser-text {
    padding: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .two-col, .three-col {
    column-count: 1;
  }

  .teaser-text {
    padding: 30px;
  }

  .exhibit-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section .btn-primary {
    margin-bottom: 30px;
    width: 100%;
  }

  .exhibit-intro-text {
    padding: 50px 0;
  }

  .embed-responsive-item {
    display: none;
  }
  
}