.lg-column,
.Member-title-info,
.Member-option-detail {
  display: inline-block;
  width: 65%;
  vertical-align: top;
}

.sm-column,
.Member-title-cta,
.Member-option-cta {
  display: inline-block;
  width: 28%;
  vertical-align: top;
  float: right;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    transform: scale(1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

.lg-column,
.Member-title-info,
.Member-option-detail {
  display: inline-block;
  width: 65%;
  vertical-align: top;
}

.sm-column,
.Member-title-cta,
.Member-option-cta {
  display: inline-block;
  width: 28%;
  vertical-align: top;
  float: right;
}

body {
  background: #fff;
  color: #2c2d33;
  cursor: default;
  font: 400 18px/1.5em 'TTNorms', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #2c2d33;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s linear;
}

a:hover:not(.hover-same-color) {
    /* color: #959699; */
  }

a.dark {
  color: #2c2d33 !important;
}

a.dark:hover {
  color: #959699 !important;
}

#artist-menu a,
.mobile-menu a,
.blog-menu a,
.footer a,
.inline-links a,
.artist-resources a,
.see-all a,
.notable-links a,
a.donation-button,
a.read-more-button {
  font-weight: 700;
  text-transform: uppercase;
}

hr:not(.no-legacy hr) {
  display: none;
}

h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 0.9em;
  margin: 30px 0;
  padding: 0;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
  margin: 40px 0;
  padding: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin: 40px 0;
  padding: 0;
  text-transform: uppercase;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2em;
  margin: 30px 0;
  padding: 0;
  text-transform: uppercase;
}

h4.has-subtitle {
  margin-bottom: 0;
}

h5 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2em;
  margin: 30px 0;
  padding: 0;
  text-transform: uppercase;
}

h5 sup {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1em;
  margin-top: 2px;
  margin-right: 2px;
  vertical-align: top;
}

h5.support-title {
  text-transform: none;
}

h5.support-title small {
  display: block;
  font-style: italic;
}

h5.subtitle {
  margin-top: 0;
  padding-top: 0;
  text-transform: none;
}

h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5em;
  margin: 30px 0;
  padding: 0;
  text-transform: uppercase;
}

h6.directors-title {
  font-size: 15px;
}

h1.page-title,
h2.page-title,
h3.page-title,
h4.page-title,
h5.page-title,
h6.page-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3em;
  margin: 30px 0;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  text-transform: none;
}

img {
  border: 0;
  display: inline-block;
  height: auto;
  max-width: 100%;
  width: auto;
  -ms-interpolation-mode: bicubic;
}

p {
  margin: 25px 0;
  padding: 0;
}

p.note {
  font-size: 14px;
}

ol,
ul {
  margin: 25px;
  padding: 0;
}

blockquote {
  margin: 0;
  padding: 0;
}

blockquote p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4em;
}

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

table td {
  padding: 10px 0;
}

table tr > td:first-child {
  font-weight: 600;
  text-transform: uppercase;
}

table tr > td:last-child {
  color: #999;
  text-align: right;
}

strong.tiny {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8em;
  text-transform: uppercase;
}

strong.color {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5em;
  text-transform: uppercase;
}

div.divider {
  background: #2c2d33;
  height: 10px;
  margin: 35px 0;
  width: 50px;
}

div.divider.center {
  margin-left: auto;
  margin-right: auto;
}

.clear {
  clear: both;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  display: inline-block;
}

/* start commented backslash hack \*/

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* close commented backslash hack */

.title-case {
  text-transform: none;
}

div.spacer-large {
  height: 80px;
}

div.spacer-medium {
  height: 40px;
}

div.spacer-small {
  height: 10px;
}

@media all and (max-width: 1024px) {
  body {
    font-size: 14.4px;
  }

  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 28.8px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 19.2px;
  }

  h5 {
    font-size: 19.2px;
  }

  h1.page-title,
  h2.page-title,
  h3.page-title,
  h4.page-title,
  h5.page-title,
  h6.page-title {
    font-size: 12.8px;
  }

  blockquote p {
    font-size: 22.4px;
  }

  div.spacer-large,
  div.spacer-medium,
  div.spacer-small {
    height: auto;
  }
}

@media all and (max-width: 600px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 20px;
  }

  blockquote p {
    font-size: 16.8px;
  }
}

button:not(.no-legacy button),
a.btn {
  background: #3b3c41;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: 600 15px/1em 'TTNorms', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  outline: 0;
  padding: 18px 36px;
  text-transform: uppercase;
  -webkit-appearance: none;
  transition: background-color 0.2s linear;
}

/* button:hover,
a.btn:hover {
  background-color: #959699;
} */

p.btn-link {
  margin-top: 60px;
}

a.donation-button {
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  color: #2c2d33;
  height: 160px;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 160px;
  background-size: cover;
  border-radius: 50%;
}

a.donation-button span {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

a.donation-button span.circle {
  background: #eee;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  transition: height 0.2s linear, width 0.2s linear;
}

a.donation-button span.amount {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

a.donation-button span.amount small {
  font-size: 12px;
  font-weight: 700;
}

a.donation-button span.amount sup {
  display: inline;
  font-size: 0.6em;
  line-height: 1em;
  margin-top: 2px;
  margin-right: 2px;
  vertical-align: top;
}

a.donation-button span.donate {
  display: none;
}

a.donation-button:hover span.circle {
  height: 140px;
  width: 140px;
}

a.donation-button:hover span.amount {
  display: none;
}

a.donation-button:hover span.donate {
  display: block;
}

.unstyled-list {
  font-size: 13px;
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.unstyled-list.indented {
  padding-left: 45px;
}

.unstyled-list li {
  margin: 6px 0;
}

div.fancy-shadow {
  display: inline-block;
  position: relative;
}

div.fancy-shadow img {
  display: block;
  position: relative;
  transition: opacity 0.2s linear;
}

div.fancy-shadow.round a {
  border-radius: 50%;
}

div.fancy-shadow.round img {
  border-radius: 50%;
}

div.fancy-shadow i {
  height: 38px;
  left: 50%;
  margin: -19px 0 0 -27px;
  position: absolute;
  top: 50%;
  width: 54px;
}

div.fancy-shadow i .icon {
  fill: #fff;
}

div.fancy-shadow a {
  background: #2c2d33;
  display: block;
}

div.fancy-shadow a:hover img {
  opacity: 0.5;
}

#video-modal {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 99;
}

#video-modal > iframe {
  left: 50%;
  position: absolute;
  top: 50%;
}

#video-modal > i {
  cursor: pointer;
  display: block;
  height: 32px;
  right: 50%;
  margin: 0;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  width: 32px;
  transition: opacity 0.2s linear;
}

#video-modal > i:hover {
  opacity: 1;
}

#video-modal > i .icon {
  fill: #fff;
}

#google-map,
.google-map {
  background: #2c2d33;
  max-height: 800px;
}

@media all and (max-width: 1024px) {
  .issuuembed {
    display: none;
  }
}

.menu-overlay {
  background: #fff;
  cursor: pointer;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 7;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}

body.show-artist-menu .menu-overlay {
  visibility: visible;
  opacity: 0.75;
  transition: opacity 0.3s ease-in-out;
}

#content {
  position: relative;
}

@media all and (min-width: 1025px) {
  .page {
    /* margin: 330px 0 672px 0; */
    /* min-height: 1672px; */
    position: relative;
    z-index: 4;
  }

  .page-spheres {
    margin-top: 480px;
  }

  .page-plain-tall,
  .page-plain-with-menu {
    margin-top: 400px;
  }

  .footer {
    background: #fff;
    /* bottom: 0; */
    /* display: none; */
    /* left: 50px; */
    /* position: fixed; */
    /* right: 50px; */
    z-index: 3;
  }

  .footer.show {
    display: block;
  }
  .artist-height-mod {
    margin-top: 450px;
  }
}

@media all and (min-width: 1280px) {
  .artist-height-mod {
    margin-top: 420px;
  }
}

.menu {
  background-color: #2c2d33;
  color: #fff;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  width: 750px;
  z-index: 49;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

#artist-menu {
  padding-right: 100px;
  right: 0;
  transform: translateX(100%);
}

.menu-toggle {
  background: #fff;
  cursor: pointer;
  height: 100%;
  line-height: 50px;
  margin: 0;
  padding: 0;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 50px;
  z-index: 50;
  transition: color 0.2s linear, opacity 0.3s ease-in-out, background-color 0 linear 0.15s;
}

.menu-toggle:hover {
  color: #959699;
}

.menu-toggle .bg-color {
  animation: fade 7s ease-in-out;
}

.menu-toggle strong {
  transition: color 0.3s linear;
  height: 50px;
  font-size: 11px;
  line-height: 50px;
  margin: 0;
  padding: 0 35px 0 20px;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  white-space: nowrap;
}

.menu-toggle strong span {
  text-transform: none;
}

.menu-toggle strong i {
  display: inline-block;
  height: 32px;
  margin: 0 20px 0 0;
  padding: 0;
  width: 32px;
  transform: translateY(10px);
}

.menu-toggle strong i svg {
  transition: transform 0.3s ease-in-out;
}

.menu-toggle strong i .arrow-down {
  display: none;
}

.menu-toggle strong i .icon {
  animation: fade 7s ease-in-out;
}

#artist-menu-toggle {
  right: 0;
}

#artist-menu-toggle strong {
  right: 25px;
  transform: translateX(50%) rotate(90deg);
}

body.show-artist-menu #artist-menu {
  transform: translateX(100px);
}

body.show-artist-menu #artist-menu-toggle {
  background-color: #2c2d33;
  color: #fff;
  transition: color 0.2s linear, opacity 0.3s ease-in-out;
}

body.show-artist-menu #artist-menu-toggle:hover {
  color: #959699;
}

body.show-artist-menu #artist-menu-toggle strong i svg {
  transform: translateY(5px) rotate(-180deg);
}

@media all and (max-width: 1024px) {
  #content {
    margin: 0;
  }

  .menu,
  .menu-toggle {
    display: none;
  }
}

#splash {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

a.logo {
  color: #2c2d33;
  display: block;
  font-size: 13px;
  /* height: 172px; */
  overflow: hidden;
  line-height: 1.2em;
  text-decoration: none;
  width: 100px;
  /*
	&:hover strong {
		@include opacity(1);
	}
	*/
}

a.logo i {
  background-color: #2c2d33;
  background-position: center center;
  background-size: cover;
  display: block;
  /* height: 172px; */
  width: 100px;
}

a.logo i .logo-text {
  fill: #fff;
  opacity: 0;
  transition: opacity 0.2s linear;
}

a.logo i .logo-tint {
  fill: #2c2d33;
  opacity: 0;
  transition: opacity 0.2s linear;
}

a.logo i .logo-mask {
  fill: #fff;
}

a.logo strong {
  display: block;
  font-weight: 600;
  margin-top: 18px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s linear;
}

a.logo strong span {
  text-transform: none;
}

a.logo:hover i .logo-text {
  opacity: 1;
}

a.logo:hover i .logo-tint {
  opacity: 0.65;
}

@media all and (max-width: 1024px) {
  /*
	a.logo strong {
		@include opacity(1);
	}
	*/

  i .logo-text {
    opacity: 1;
  }

  i .logo-tint {
    opacity: 0.65;
  }
}


#artist-menu > div {
  margin: 65px 160px 90px 110px;
  width: 480px;
}

#artist-menu > div h4 {
  font-size: 18px;
}

#artist-menu > div p {
  color: #bfbfbf;
  font-size: 16px;
  line-height: 1.5em;
}

#artist-menu ul.grid {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 500px;
}

#artist-menu ul.grid li {
  display: block;
  float: left;
  margin: 10px 20px 10px 0;
  padding: 0;
  position: relative;
  width: 230px;
}

#artist-menu ul.grid li a img {
  display: block;
  opacity: 0.2;
  transition: opacity 0.2s linear;
}

#artist-menu ul.grid li a strong {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  left: 50%;
  letter-spacing: 1px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 210px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s linear;
}

#artist-menu ul.grid li a strong em {
  color: #b4b7bf;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

#artist-menu ul.grid li a:hover img {
  opacity: 1;
}

#artist-menu ul.grid li a:hover strong {
  opacity: 0;
}

.menu-temp-color {
  background-color: #fff !important;
}

.menu-spacing {
  margin: 20px 10px 10px !important;
}

.feature-title {
  height: 155px;
  width: 85%;
  position: relative;
  left: 125px;
  bottom: 15px;
  background-color: #fff;
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .feature-title {
    width: 96%;
    height: initial;
    position: relative;
    left: 0;
  }

  .feature-title h1 {
    font-size: 70px;
  }
}

@media all and (max-width: 600px) {
  .feature-title {
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }

  .feature-title h1 {
    font-size: 33px;
  }
}

.info-container {
  position: absolute;
  bottom: 183px;
  margin-bottom: 0;
  padding-right: 30%;
}

@media all and (min-width: 1025px) and (max-width: 1320px) {
  .info-container {
    padding-right: 30%;
  }
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .info-container {
    position: relative;
    bottom: 10px;
    left: 4px;
    padding: 0;
  }
}

@media all and (max-width: 600px) {
  .info-container {
    position: relative;
    top: 0;
    left: 3px;
    padding: 0;
  }
}

.info-container .info {
  pointer-events: none;
}

.info-container .info h2 {
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  line-height: 90%;
}

@media all and (max-width: 1024px) {
  .info-container .info h2 {
    line-height: 100%;
  }
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .info-container .info h2 {
    line-height: 100%;
  }
}

@media all and (max-width: 600px) {
  .info-container .info h2 {
    line-height: 100%;
  }
}

.info-container .info div.divider {
  margin: 25px 0;
}

.info-container .info p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin: 0;
  max-width: 120px;
  padding: 0;
  text-transform: uppercase;
}

.slider-dots {
  position: absolute;
  top: 200px;
  left: 75px;
  z-index: 1;
  z-index: 2;
}

@media all and (max-width: 1024px) {
  .slider-dots {
    top: 240px;
  }
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .slider-dots {
    display: none;
  }
}

@media all and (max-width: 600px) {
  .slider-dots {
    display: none;
  }
}

.slider-dots .img-indicator {
  margin: 0;
}

.slider-dots .img-indicator li {
  list-style: none;
}

.slider-dots .img-indicator button {
  padding: 7px;
  background-color: #ddd;
}

@media all and (max-width: 600px) {
  .slider-dots .img-indicator button {
    padding: 5px;
  }
}

.footer .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.footer .nav ul li {
  display: inline-block;
}

.footer .nav ul li a {
  border-left: 1px solid #eee;
  color: #2c2d33;
  display: inline-block;
  font-size: 14px;
  padding: 80px 20px 50px 20px;
}

.footer .nav ul li a:hover {
  color: #959699;
}

.footer .nav ul li:first-child a {
  border-left: 0;
}

@media all and (min-width: 1280px) {
  .footer .nav ul li a {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media all and (max-width: 1024px) {
  .footer .nav {
    display: none;
  }
}

.footer h4 {
  font-size: 14px;
  margin-right: 20px;
  margin-top: 0;
  padding-top: 0;
}

.footer p {
  font-size: 14px;
  margin-right: 20px;
  margin-top: 0;
  padding-top: 0;
}

.footer p i {
  background-color: #ddd;
  display: inline-block;
  height: 12px;
  margin-right: 5px;
  width: 12px;
  border-radius: 50%;
  transform: translateY(1px);
}

.footer p span.day {
  display: inline-block;
  width: 125px;
}

.footer p span.slash {
  font-style: normal;
  margin: 0 5px;
}

.footer p span.hours-more-info {
  display: block;
}

.footer p span.hours-more-info a {
  font-size: 12px;
}

.footer p.renovations {
  margin-right: 100px;
}

.footer .bc-member .btn {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 18px 0;
  margin-top: 1.25rem;
  width: 151px;
}

.footer .row {
  margin: 50px 60px;
  overflow: hidden;
}

.footer .row .overview {
  float: left;
  width: 20%;
}

.footer .row .info {
  float: left;
  margin: 0 0 40px 0;
  position: relative;
  width: 80%;
}

.footer .row .info .title {
  float: left;
  width: 23%;
}

.footer .row .info .items {
  float: left;
  max-height: 195px;
  width: 77%;
}

.footer .row .info .items .text-large {
  float: left;
  width: 35%;
}

.footer .row .info .items .text-small {
  float: left;
  width: 25%;
}

.footer .row .info .items:hover .image img {
  opacity: 0.2;
}

.footer .row .info .items .image {
  float: left;
  margin: 0 0 0 3%;
  padding: 0;
  width: 22.75%;
}

.footer .row .info .items .image:first-child {
  margin-left: 0;
}

.footer .row .info .items .image img {
  display: block;
  width: 100%;
  transition: opacity 0.2s linear;
}

.footer .row .info .items .image strong {
  bottom: 0;
  color: #2c2d33;
  font-size: 20px;
  font-weight: 700;
  left: 0;
  max-width: 22%;
  line-height: 1.2em;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.footer .row .info .items .image strong em {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.footer .row .info .items .image:hover img,
.footer .row .info .items .image:hover strong {
  opacity: 1;
}

@media all and (max-width: 1024px) {
  .footer .row {
    margin: 50px 20px;
  }

  .footer .row .overview {
    width: 50%;
  }

  .footer .row .info {
    width: 50%;
  }

  .footer .row .info.events {
    display: none;
  }

  .footer .row .info .title {
    display: none;
  }

  .footer .row .info .items {
    float: none;
    max-height: none;
    width: auto;
  }

  .footer .row .info .items .text-large,
  .footer .row .info .items .text-small {
    float: none;
    width: auto;
  }
}

@media all and (max-width: 600px) {
  .footer .row {
    margin: 40px 10px;
  }

  .footer .row .overview,
  .footer .row .info {
    float: none;
    width: auto;
  }

  .footer .row .info {
    margin-top: 70px;
  }
}

.footer .copyright {
  color: #a3a4a7;
  font-size: 14px;
  line-height: 1.4em;
}

.footer .logo-asc a {
  background: transparent url("/img/theme/logo-asc.png?20140429") 0 0 no-repeat;
  display: block;
  height: 65px;
  width: 140px;
  background-size: 140px 65px;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (-webkit-device-pixel-ratio: 2) {
  .footer .logo-asc a {
    background-image: url("/img/theme/logo-asc@2x.png?20140429");
  }
}

.footer .site-credit {
  clear: both;
  color: #a3a4a7;
  font-size: 14px;
}

.footer .site-credit a {
  text-decoration: none;
  text-transform: uppercase;
}

.footer .site-credit .bolt em {
  font-size: 0;
}

.footer .site-credit .bolt svg {
  display: inline-block;
  vertical-align: text-top;
  width: 1.25em;
  height: 1.25em;
  margin: 0 0.2em;
}

.two-columns {
  background: transparent url("/img/theme/2-columns.gif?20140429") 68% 0 repeat-y;
  overflow: hidden;
  width: 100%;
  clear: both;
  display: flex;
}

.two-columns:after {
  content: '';
  display: table;
  clear: both;
}

.two-columns.no-background {
  background: transparent;
}

.two-columns .left {
  float: left;
  margin: 0;
  padding: 90px 0;
  width: 68%;
  border-collapse: collapse;
}

.two-columns .left > div {
  margin: 0 7.5%;
  position: relative;
  width: 85%;
}

.two-columns .left > div h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.two-columns .left > div h2 span {
  text-transform: none;
}

.two-columns .left > div h2.innovation,
.two-columns .left > div h3.innovation {
  clear: both;
  display: block;
  height: 53px;
  width: 268px;
}

.two-columns .left > div h2.innovation .black,
.two-columns .left > div h3.innovation .black {
  fill: #000;
}

.two-columns .left > div h2.innovation .white,
.two-columns .left > div h3.innovation .white {
  fill: #fff;
}

.two-columns .left > div h2.innovation strong,
.two-columns .left > div h3.innovation strong {
  display: none;
}

.two-columns .left > div > h4 {
  clear: both;
}

.two-columns .left > div .column-small {
  clear: both;
  float: left;
  margin-bottom: 70px;
  margin-right: 5%;
  width: 38%;
}

.two-columns .left > div .column-small blockquote {
  max-width: 230px;
}

.two-columns .left > div .column-large {
  float: left;
  margin-bottom: 30px;
  width: 57%;
}

.two-columns .left > div .column-large .video-thumb {
  margin: 30px 0;
}

.two-columns .left > div .column-large .fancy-shadow {
  margin-top: 2rem;
}

.two-columns .left > div .column-large .innovation-buttons {
  display: inline-block;
  width: 100%;
  margin: 2rem 0 1rem;
}

.two-columns .left > div .column-large .innovation-buttons a {
  float: left;
}

.two-columns .left > div .column-large .innovation-buttons a:last-child {
  float: right;
}

.two-columns .left > div .column-large .innovation-buttons .btn {
  width: 38%;
  background: #2B2C31;
  padding: 1.25rem 1rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
}

.two-columns .left > div .column-large .innovation-buttons .btn:hover {
  background-color: #6bdb94;
}

@media all and (max-width: 600px) {
  .two-columns .left > div .column-large .innovation-buttons .btn {
    width: 40%;
  }
}

@media all and (max-width: 1024px) {
  .two-columns .left > div .column-large .innovation-buttons .btn {
    width: 37%;
  }
}

.two-columns .left > div .column-large .unstyled-list {
  clear: both;
}

.two-columns .left > div .column-equal {
  float: left;
  margin-right: 6%;
  width: 44%;
}

.two-columns .right {
  background: #ddd;
  float: left;
  margin: 0;
  padding: 80px 0;
  width: 32%;
  border-collapse: collapse;
}

.two-columns .right > div {
  margin: 0 12%;
  width: 76%;
}

.two-columns .right > div .quick-note {
  margin: 0 auto 70px auto;
  max-width: 304px;
  text-align: center;
}

.two-columns .right > div .quick-note .fancy-shadow {
  margin-left: auto;
  margin-right: auto;
  max-width: 280px;
}

.two-columns .right > div .quick-note .sidebar-cta-img {
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
}

.two-columns .right > div .quick-note .sidebar-cta-img img {
  height: 100%;
  border-radius: 0;
}

@media all and (max-width: 600px) {
  .two-columns .right > div .quick-note .sidebar-cta-img {
    width: 200px;
    height: 200px;
  }
}

.two-columns .right > div .quick-note h3 {
  font-size: 24px;
  margin: 1rem 0 0;
}

.two-columns .right > div .quick-note p {
  margin: 0.75rem 0;
}

.two-columns .right > div .testimonial {
  margin: 0 auto;
  max-width: 275px;
}

.two-columns .right > div .testimonial blockquote {
  margin-right: 40px;
}

.two-columns .right > div .testimonial .author {
  font-size: 14px;
  font-weight: 700;
  margin-top: 0;
  padding-top: 0;
  text-transform: uppercase;
}

.two-columns .right > div .testimonial .fancy-shadow {
  float: right;
  position: relative;
  top: -40px;
  width: 150px;
}

.two-columns .right > div .testimonial .read-more {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.two-columns .fancy-shadow {
  width: 100%;
}

.two-columns .fancy-shadow img {
  width: 100%;
}

.two-columns .right-empty {
  float: left;
  padding: 180px 0;
  width: 32%;
}

.two-columns .right-empty .fancy-shadow {
  width: auto;
}

.two-columns p.inline-links a {
  font-size: 13px;
}

.two-columns p.inline-links span {
  display: inline-block;
  font-size: 13px;
  margin: 0 5px;
}

.two-columns .nudge-down {
  padding-bottom: 25px;
}

@media all and (min-width: 1280px) {
  .two-columns .left > div {
    margin: 0 15%;
    width: 70%;
  }
}

@media all and (max-width: 1024px) {
  .two-columns {
    background: transparent;
    display: block;
  }

  .two-columns .left,
  .two-columns .right {
    clear: both;
    float: none;
    overflow: hidden;
    padding: 50px 0;
    width: auto;
  }

  .two-columns .left > div,
  .two-columns .right > div {
    margin: 0 30px;
    width: auto;
  }

  .two-columns .left > div .quick-note,
  .two-columns .left > div .testimonial,
  .two-columns .right > div .quick-note,
  .two-columns .right > div .testimonial {
    margin: 0 auto;
    width: 100%;
  }

  .two-columns .right-empty {
    display: none;
  }
}

@media all and (max-width: 600px) {
  .two-columns .left,
  .two-columns .right {
    padding: 30px 0;
  }

  .two-columns .left > div,
  .two-columns .right > div {
    margin: 0 10px;
  }

  .two-columns .left > div .column-large,
  .two-columns .left > div .column-small,
  .two-columns .left > div .column-equal,
  .two-columns .right > div .column-large,
  .two-columns .right > div .column-small,
  .two-columns .right > div .column-equal {
    float: none;
    margin-bottom: 30px;
    margin-right: 0;
    width: auto;
  }

  .two-columns .left > div .quick-note,
  .two-columns .left > div .testimonial,
  .two-columns .right > div .quick-note,
  .two-columns .right > div .testimonial {
    float: none;
    margin: 0 auto;
    width: auto;
  }
}



.two-column-paragraphs {
  padding-bottom: 40px;
  padding-top: 20px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 60px;
       column-gap: 60px;
}

.two-column-paragraphs p {
  margin-top: 0;
  margin-bottom: 35px;
}

@media all and (max-width: 1024px) {
  .two-column-paragraphs {
    -moz-column-count: 1;
         column-count: 1;
  }

  .two-column-paragraphs p {
    margin-bottom: 15px;
  }
}

.susan-jedrzejewski p {
  -moz-column-break-after: always;
  column-break-after: always;
}

.two-even-columns {
  overflow: hidden;
}

.two-even-columns.press-kits {
  background: #ddd;
}

.two-even-columns h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.two-even-columns h2 span {
  text-transform: none;
}

.two-even-columns > div {
  overflow: hidden;
  padding: 90px 0;
  margin: 0 auto;
  width: 90%;
}

.two-even-columns > div .left,
.two-even-columns > div .right {
  float: left;
  margin-right: 12%;
  width: 44%;
}

.two-even-columns > div .right {
  margin-right: 0;
}

@media all and (min-width: 1280px) {
  .two-even-columns.press-kits {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media all and (min-width: 1025px) {
  .two-even-columns > div {
    width: 79%;
  }
}

@media all and (max-width: 1024px) {
  .two-even-columns > div {
    margin: 0 30px;
    padding: 50px 0;
    width: auto;
  }
}

@media all and (max-width: 600px) {
  .two-even-columns > div {
    margin: 0 10px;
  }

  .two-even-columns > div .left,
  .two-even-columns > div .right {
    float: none;
    margin: 0;
    width: auto;
  }
}

.three-columns {
  overflow: hidden;
  width: 100%;
}

.three-columns > div {
  float: left;
  margin-right: 3.333333%;
  width: 30%;
}

.three-columns > div p {
  color: #999;
}

.three-columns > div p strong {
  color: #2c2d33;
  font-weight: 400;
}

@media all and (max-width: 600px) {
  .three-columns {
    display: inline;
    overflow: visible;
  }

  .three-columns > div {
    float: none;
    width: auto;
  }
}

.four-columns {
  overflow: hidden;
}

.four-columns > div {
  float: left;
  margin-right: 3%;
  width: 22%;
}

.four-columns > div p {
  color: #999;
}

.four-columns > div p strong {
  color: #2c2d33;
  font-weight: 400;
}

@media all and (max-width: 1024px) {
  .four-columns {
    display: inline;
    overflow: visible;
  }

  .four-columns > div {
    margin-right: 6%;
    width: 44%;
  }

  .four-columns > div:nth-child(odd) {
    clear: both;
  }
}

@media all and (max-width: 600px) {
  .four-columns > div {
    float: none;
    margin-right: 0;
    width: auto;
  }
}

.leadership-left {
  float: left;
  margin: 0 5% 0 0;
  width: 20%;
}

.leadership-left div.fancy-shadow img {
  width: 100%;
}

.leadership-right {
  float: left;
  width: 75%;
}

.leadership-right h4 {
  margin: 0;
  padding: 0;
}

.leadership-right h5 {
  margin: 0;
  padding-top: 0;
  text-transform: none;
}

.staff {
  overflow: hidden;
}

.staff > div {
  float: left;
  padding: 20px 0;
  text-align: center;
  width: 25%;
}

.staff > div h4 {
  margin-bottom: 0;
  padding-bottom: 5px;
}

.staff > div h5 {
  font-size: 14px;
  line-height: 1.1em;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
}

.staff > div p {
  margin-top: 10px;
}

@media all and (max-width: 1024px) {
  .staff {
    display: inline;
    overflow: visible;
  }

  .staff > div {
    width: 50%;
  }

  .staff > div:nth-child(odd) {
    clear: both;
  }
}

@media all and (max-width: 600px) {
  .staff > div {
    float: none;
    width: auto;
  }
}

.misc-cta {
  background-color: #ddd;
  clear: both;
  overflow: hidden;
  padding-bottom: 70px;
  width: 100%;
}

.misc-cta .title {
  float: left;
  margin-right: 12%;
  width: 24%;
}

.misc-cta .title h5 {
  font-weight: 400;
  text-transform: none;
}

.misc-cta .info {
  float: left;
  width: 58%;
}

.misc-cta .info .inline-links a {
  font-size: 14px;
}

@media all and (max-width: 1024px) {
  .misc-cta {
    padding-bottom: 20px;
  }

  .misc-cta .title,
  .misc-cta .info {
    float: none;
    margin-right: 0;
    width: 100%;
  }
}

.blog-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  left: 0;
  margin-left: 5px;
  position: absolute;
  top: 45%;
  white-space: nowrap;
  transform: translate(-50%, 0) rotate(-90deg);
}

.blog-menu li {
  display: inline-block;
  font-size: 13px;
  margin: 10px 0;
  padding: 0;
}

.blog-menu li a {
  border: 2px solid transparent;
  display: inline-block;
  padding: 6px 10px;
  transition: color 0.2s linear, border-color 0.2s linear;
}

.blog-menu li.active a:hover {
  border-color: #959699;
  color: #959699;
}

@media all and (min-width: 1025px) {
  .blog-menu {
    display: block;
  }
}

.blog-item-row {
  margin-bottom: 50px;
  overflow: hidden;
}

@media all and (max-width: 600px) {
  .blog-item-row {
    margin-bottom: 0;
  }
}

.blog-item {
  float: left;
  margin: 0 8%;
  text-align: center;
  width: 34%;
}

.blog-item h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1em;
  margin: 35px 0 5px 0;
  padding: 0;
}

.blog-item h6 {
  font-size: 24px;
  line-height: 1.1em;
  margin: 5px 0;
  padding: 0;
}

.blog-item p {
  color: #989898;
  font-size: 16px;
  margin: 20px 0;
  padding: 0;
}

@media all and (max-width: 600px) {
  .blog-item {
    float: none;
    margin: 0;
    padding-bottom: 30px;
    width: auto;
  }
}

a.read-more-button {
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  color: #2c2d33;
  height: 160px;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 160px;
  background-size: cover;
  border-radius: 50%;
}

a.read-more-button span {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

a.read-more-button span.circle {
  background: #eee;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  transition: height 0.2s linear, width 0.2s linear;
}

a.read-more-button:hover span.circle {
  height: 140px;
  width: 140px;
}

.blog-load-more {
  text-align: center;
}

@media all and (max-width: 1024px) {
  .blog-load-more {
    padding: 70px 0;
  }
}

.blog-link-back {
  font-size: 14px;
  font-weight: 700;
  margin-top: -40px;
  text-transform: uppercase;
}

.artist-resources {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275);
  transform: translateX(100%);
}

.artist-resources .info {
  clear: both;
  display: flex;
}

.artist-resources .info:after {
  content: '';
  display: table;
  clear: both;
}

.artist-resources .info > div {
  border-collapse: collapse;
}

@media all and (max-width: 1024px) {
  .artist-resources {
    transition: none;
    transform: none;
  }

  .artist-resources .info {
    display: block;
  }
}

.artist-resources-toggle {
  background: #eee;
  cursor: pointer;
  height: 100%;
  left: -125px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 125px;
  transition: color 0.2s linear;
}

.artist-resources-toggle:hover {
  color: #959699;
}

.artist-resources-toggle strong {
  font-size: 11px;
  left: 50%;
  line-height: 1.2em;
  margin: 0 0 0 -10px;
  padding: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.artist-resources-toggle strong i {
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0;
  width: 32px;
  transform: translateY(10px);
}

.artist-resources-toggle strong i svg {
  transition: transform 0.3s ease-in-out;
}

.artist-resources-toggle strong span {
  display: block;
  margin-top: 20px;
}

@media all and (max-width: 1024px) {
  .artist-resources-toggle {
    display: none;
  }
}

body.show-artist-resources .artist-resources {
  transform: translateX(300px);
}

body.show-artist-resources .artist-resources-toggle strong i svg {
  transform: rotate(-180deg);
}

.sphere-of-impact-overview {
  padding-bottom: 100px;
  text-align: center;
}

.sphere-of-impact-overview h4 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: -15px;
}

.sphere-of-impact-overview h4 strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.sphere-of-impact-overview i {
  display: inline-block;
  height: 55px;
  width: 55px;
}

.sphere-of-impact-overview h5 {
  font-size: 12px;
  font-weight: 600;
  margin: 50px 0;
  letter-spacing: 2px;
}

.sphere-of-impact-overview p {
  padding: 15px 0;
}

.sphere-of-impact-overview p strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sphere-of-impact-overview div.divider {
  margin-top: 45px;
}

.section-artist-related-posts {
  clear: both;
  display: block;
  margin-bottom: 100px;
}

.section-artist-related-videos .video-item-row {
  margin-top: 60px;
}

.section-artist-related-videos .video-item-row:first-child {
  margin-top: 0;
}

.section-artist-related-videos .video-item-row .video-item {
  width: 80%;
  margin: 0 10% 60px 10%;
}

/* === Artist Filter and Search === */

.show-filter {
  display: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 30px;
}

@media all and (max-width: 1024px) {
  .show-filter {
    display: block;
    text-align: right;
    padding-right: 30px;
  }
}

.show-filter + .form-container {
  margin-top: 70px;
}

@media all and (max-width: 600px) {
  .show-filter + .form-container {
    margin-top: 0;
  }
}

@media all and (min-width: 1025px) {
  .show-filter + .form-container {
    margin-top: 160px;
  }
}

.search-active {
  border-bottom: 2px solid #3071c7;
}

.search-active:hover {
  border-bottom: 2px solid #959699;
}
/* === Page Styles === */

.page-artist .video-item .fancy-shadow::before {
  z-index: 0;
}

.page-artist .video-item i {
  z-index: 2;
}

.page-artist .video-item .video-image {
  width: 100%;
  padding: 28.175% 0;
  position: relative;
  z-index: 1;
  background-size: 100%;
  background-position: top center;
}

.page-artist .video-item h6 {
  text-align: center;
}

.page-artists a.is-hidden {
  display: none;
}

.page-artists-apply h2,
.page-artists-residency-program h2 {
  margin: 0 0 1rem;
}

.page-artists-apply ul,
.page-artists-residency-program ul {
  margin: 0 20px;
}

.page-artists-apply .Page-heading,
.page-artists-residency-program .Page-heading {
  margin-bottom: 4rem !important;
}

.page-artists-apply .Page-heading h2,
.page-artists-residency-program .Page-heading h2 {
  margin: 40px 0;
}

.page-artists-apply .StaggeredTiles,
.page-artists-residency-program .StaggeredTiles {
  display: flex;
  padding: 20% 0;
}

.page-artists-apply .StaggeredTiles-col,
.page-artists-residency-program .StaggeredTiles-col {
  flex-wrap: nowrap;
}

.page-artists-apply .StaggeredTiles-col img,
.page-artists-residency-program .StaggeredTiles-col img {
  box-shadow: 15px 10px 15px rgba(0, 0, 0, 0.2);
}

.page-artists-apply .StaggeredTiles-col--left,
.page-artists-residency-program .StaggeredTiles-col--left {
  width: 37%;
  margin: -2rem auto auto;
  margin-left: 0;
}

.page-artists-apply .StaggeredTiles-col--right,
.page-artists-residency-program .StaggeredTiles-col--right {
  width: 57%;
  margin: 0 auto;
  margin-right: 0;
}

.page-artists-apply .ContentBlock,
.page-artists-residency-program .ContentBlock {
  margin-bottom: 4rem;
}

.page-artists-apply .ContentBlock:last-child,
.page-artists-residency-program .ContentBlock:last-child {
  margin-bottom: 0;
}

.page-artists-apply .ContentBlock p,
.page-artists-residency-program .ContentBlock p {
  margin: 1rem 0;
}

.page-artists-apply .ContentBlock a strong,
.page-artists-residency-program .ContentBlock a strong {
  display: block;
  margin-top: 1rem;
}

.page-artists-apply .ContentBlock-col,
.page-artists-residency-program .ContentBlock-col {
  display: inline-block;
  vertical-align: top;
  width: 48%;
  margin: auto;
}

@media all and (max-width: 600px) {
  .page-artists-apply .ContentBlock-col,
  .page-artists-residency-program .ContentBlock-col {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.page-artists-apply .cta.cta--apply,
.page-artists-residency-program .cta.cta--apply {
  padding-top: 45px;
}

@media all and (max-width: 600px) {
  .page-artists-apply .cta.cta--apply,
  .page-artists-residency-program .cta.cta--apply {
    padding-top: 0;
  }
}

.gallery {
  background: #fff;
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery ul.items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery ul.items li.item {
  background: #2c2d33;
}

.gallery ul.items li.item img {
  display: block;
  width: 100%;
}

.gallery i.close,
.gallery i.info {
  cursor: pointer;
  display: block;
  height: 38px;
  position: absolute;
  right: 50px;
  top: 40px;
  width: 38px;
}

.gallery i.close .icon {
  fill: #2c2d33;
}

.gallery i.info .icon {
  fill: #fff;
}

.gallery i .icon {
  transition: fill 0.2s linear;
}

.gallery i.play {
  height: 162px;
  left: 50%;
  margin-top: -81px;
  margin-left: -57px;
  position: absolute;
  top: 50%;
  width: 114px;
}

.gallery i.play svg {
  width: 114px;
  height: 162px;
}

.gallery i.play .icon {
  width: 114px;
  height: 162px;
  fill: #fff !important;
}

.gallery div.info {
  background: #ddd;
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 32%;
}

.gallery div.info > div {
  margin: 80px 12%;
  width: 76%;
}

.gallery div.info > div p {
  font-size: 17px;
  line-height: 1.4em;
  max-width: 250px;
}

@media all and (max-width: 1024px) {
  .gallery div.info {
    width: 50%;
  }

  .gallery div.info > div p {
    max-width: none;
  }
}

@media all and (max-width: 600px) {
  .gallery div.info {
    width: 100%;
  }

  .gallery div.info > div {
    margin: 60px 10px;
    width: auto;
  }
}

.gallery ul.gallery-menu {
  background: #fff;
  display: block;
  height: 70px;
  left: 50%;
  list-style: none;
  margin: 0 0 0 -110px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
  width: 220px;
}

.gallery ul.gallery-menu li {
  cursor: pointer;
  display: block;
  float: left;
  height: 70px;
  padding: 0;
  width: 110px;
}

.gallery ul.gallery-menu li.prev i {
  display: block;
  height: 38px;
  padding: 16px 30px 16px 42px;
  width: 38px;
}

.gallery ul.gallery-menu li.next i {
  display: block;
  height: 38px;
  padding: 16px 42px 16px 30px;
  width: 38px;
}

.gallery ul.gallery-menu li i svg {
  height: 38px;
  width: 38px;
}

.gallery ul.gallery-menu li i .icon {
  fill: #2c2d33;
  transition: fill 0.2s linear;
}

@media all and (max-width: 600px) {
  .gallery ul.gallery-menu {
    display: none;
  }
}

.gallery-home {
  background: #fff;
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-home ul.items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-home ul.items li.item {
  background: #2c2d33;
}

.gallery-home ul.items li.item img {
  display: block;
  width: 100%;
  opacity: 0.4;
}

.gallery-home ul.items li.item > div.title {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-home ul.items li.item > div.title h2 {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 1.3em;
  padding: 20px 0;
}

@media all and (max-width: 1024px) {
  .gallery-home ul.items li.item > div.title h2 {
    font-size: 48px;
    padding: 0 0 10px 0;
  }
}

@media all and (max-width: 600px) {
  .gallery-home ul.items li.item > div.title h2 {
    font-size: 36px;
    margin: 0;
    padding: 0;
  }
}

.gallery-home ul.items li.item > div.quote {
  position: absolute;
  right: 50px;
  top: 100px;
  width: 285px;
}

.gallery-home ul.items li.item > div.quote p {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media all and (max-width: 1280px) {
  .gallery-home ul.items li.item > div.quote {
    display: none;
  }
}

.gallery-home ul.gallery-menu {
  display: block;
  height: 70px;
  left: 50%;
  list-style: none;
  margin: 0 0 0 -110px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 15%;
  width: 220px;
}

.gallery-home ul.gallery-menu li {
  cursor: pointer;
  display: block;
  float: left;
  height: 70px;
  padding: 0;
  width: 110px;
}

.gallery-home ul.gallery-menu li.prev i {
  display: block;
  height: 38px;
  padding: 16px 30px 16px 42px;
  width: 38px;
}

.gallery-home ul.gallery-menu li.next i {
  display: block;
  height: 38px;
  padding: 16px 42px 16px 30px;
  width: 38px;
}

.gallery-home ul.gallery-menu li i svg {
  height: 38px;
  width: 38px;
}

.gallery-home ul.gallery-menu li i .icon {
  fill: #fff;
  transition: fill 0.2s linear;
}

@media all and (max-width: 1024px) {
  .gallery-home ul.gallery-menu {
    top: 0;
  }
}

@media all and (max-width: 600px) {
  .gallery-home ul.gallery-menu {
    display: none;
  }
}

.box-item-row {
  overflow: hidden;
  width: 100%;
}

.box-item {
  float: left;
  margin: 0 1.5%;
  padding: 0 0 100px 0;
  text-align: center;
  width: 30.333333%;
}

.box-item h5 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1em;
  margin: 35px auto 5px auto;
  max-width: 280px;
  padding: 0;
}

.box-item p {
  color: #989898;
  font-size: 16px;
  margin: 20px auto;
  max-width: 280px;
  padding: 0;
}

.box-item.dark-paragraph p {
  color: #2c2d33;
}

@media all and (max-width: 600px) {
  .box-item {
    float: none;
    margin: 0;
    padding-bottom: 30px;
    width: auto;
  }
}

@media all and (max-width: 1024px) {
  .box-item-row {
    display: inline;
    overflow: visible;
    width: auto;
  }

  .box-item {
    clear: both;
    float: none;
    margin: 0 auto;
    max-width: 300px;
    width: auto;
  }
}

.testimonials {
  overflow: hidden;
  padding: 40px 0 70px 0;
  width: 100%;
}

.testimonials .testimonial {
  margin: 0 !important;
  padding: 40px 0;
  width: 100% !important;
}

.testimonials .testimonial .testimonial-left {
  float: left;
  margin-right: 6%;
  width: 31%;
}

.testimonials .testimonial .testimonial-left .fancy-shadow {
  float: right;
  margin-top: 30px;
  width: 150px;
}

.testimonials .testimonial .testimonial-right {
  float: left;
  width: 62%;
}

.testimonials .testimonial .author {
  font-size: 14px;
  font-weight: 700;
  margin-top: 0;
  padding-top: 0;
  text-transform: uppercase;
}

.testimonials ul.arrows-menu {
  display: block;
  height: 38px;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.testimonials ul.arrows-menu li {
  cursor: pointer;
  display: block;
  float: left;
  margin-right: 20px;
  padding: 0;
}

.testimonials ul.arrows-menu li.prev i {
  display: block;
  height: 38px;
  width: 38px;
}

.testimonials ul.arrows-menu li.next i {
  display: block;
  height: 38px;
  width: 38px;
}

.testimonials ul.arrows-menu li i svg {
  height: 38px;
  width: 38px;
}

.testimonials ul.arrows-menu li i .icon {
  fill: #2c2d33;
  transition: fill 0.2s linear;
}

@media all and (max-width: 600px) {
  .testimonials {
    padding: 20px 0;
  }

  .testimonials .testimonial {
    clear: both;
    float: none;
    width: auto;
  }

  .testimonials .testimonial .testimonial-left,
  .testimonials .testimonial .testimonial-right {
    clear: both;
    float: none;
    width: auto;
  }

  .testimonials .testimonial .testimonial-left .fancy-shadow,
  .testimonials .testimonial .testimonial-right .fancy-shadow {
    float: none;
    margin-top: 0;
  }
}

.sponsor-item {
  clear: both;
  overflow: hidden;
  padding: 0 0 70px 0;
}

.sponsor-item .sponsor-logo {
  float: left;
  margin-right: 6%;
  width: 24%;
}

.sponsor-item .sponsor-logo img {
  max-width: 200px;
  width: 100%;
}

.sponsor-item .sponsor-info {
  float: left;
  width: 70%;
}

.sponsor-item .sponsor-info h5 {
  text-transform: none;
}

@media all and (max-width: 600px) {
  .sponsor-item {
    padding: 0;
  }

  .sponsor-item .sponsor-logo,
  .sponsor-item .sponsor-info {
    float: none;
    margin-right: 0;
    width: auto;
  }
}

.needs-support > div {
  margin: 0;
  padding: 0;
  width: 50%;
  float: left;
}

.needs-support > div .inner.mod0 {
  margin-right: 50px;
}

.needs-support > div .inner.mod1 {
  margin-left: 50px;
}

@media all and (max-width: 1024px) {
  .needs-support > div {
    width: 100%;
  }

  .needs-support > div .inner,
  .needs-support > div .inner.mod0,
  .needs-support > div .inner.mod1 {
    margin: 0;
  }
}

.needs-support > div .inner,
.needs-support > div .inner p i,
.needs-support > div h5 {
  text-align: center;
}

.needs-support > div .inner .text p {
  text-align: justify;
}

.Member {
  padding-top: 40px;
}

.Member-title {
  margin-bottom: 4rem;
}

.Member-title:before {
  content: '';
  display: table;
}

.Member-title:after {
  content: '';
  display: table;
  clear: both;
}

.Member-title-info h2 {
  margin: 0 0 .25rem;
}

.Member-title-info p {
  margin-top: .25rem;
}

.Member-title-cta {
  margin-top: 0.5rem;
}

.Member-title-cta a {
  font-family: "TTNorms", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.Member-option {
  margin: 0 0 4rem;
}

.Member-option:before {
  content: '';
  display: table;
}

.Member-option:after {
  content: '';
  display: table;
  clear: both;
}

.Member-option-detail h3 {
  font-size: 28px;
  font-weight: 400;
  text-transform: none;
  margin: 0;
}

.Member-option-detail sup {
  font-size: 18px;
}

.Member-option-detail p {
  margin-top: 0.25rem;
}

.Member-option-cta a {
  display: inline-block;
}

.Member-option-cta .cta-details {
  font-style: italic;
  margin-top: 4.5rem;
}

.Member .gm-program-info {
  margin-bottom: 4rem;
}

.Give {
  padding-top: 40px;
}

.Give-title {
  margin: 0 0 3rem;
}

.Give-cta {
  display: inline-block;
  margin: 2rem 0;
}

.Give-interested-cta {
  font-weight: 600;
}

.Give .footnote-cta {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.Give-option {
  margin-bottom: 4rem;
}

.Give-option:first-child {
  margin-bottom: 0;
}

.Give-option h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  margin: 0;
}

.Give-option-cta svg {
  transition: fill 0.4s ease;
}

.Give-option-cta p {
  display: inline-block;
  font-weight: 400;
  margin-left: 0.5rem;
}

.Give-option-cta:hover svg {
  fill: #959699;
}

.Give .more-info {
  margin-top: 25px;
  margin-bottom: 4rem;
}

.support-pages .sideblurb {
  margin-bottom: 8rem;
}

.support-pages .sideblurb .quick-note {
  margin-bottom: 3rem !important;
}

.page-about-get-involved .page h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  margin: 0;
}

.press-item-row {
  margin-bottom: 50px;
  overflow: hidden;
}

@media all and (max-width: 600px) {
  .press-item-row {
    margin-bottom: 0;
  }
}

.press-item {
  float: left;
  margin: 0 8%;
  text-align: center;
  width: 34%;
}

.press-item h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1em;
  margin: 35px 0 5px 0;
  padding: 0;
}

.press-item h6 {
  font-size: 24px;
  line-height: 1.1em;
  margin: 5px 0;
  padding: 0;
}

.press-item p {
  color: #989898;
  font-size: 16px;
  margin: 20px 0;
  padding: 0;
}

@media all and (max-width: 600px) {
  .press-item {
    float: none;
    margin: 0;
    padding-bottom: 30px;
    width: auto;
  }
}

a.read-more-button {
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  color: #2c2d33;
  height: 160px;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 160px;
  background-size: cover;
  border-radius: 50%;
}

a.read-more-button span {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

a.read-more-button span.circle {
  background: #eee;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  transition: height 0.2s linear, width 0.2s linear;
}

a.read-more-button:hover span.circle {
  height: 140px;
  width: 140px;
}

.press-post {
  border-top: 1px solid #ddd;
  clear: both;
  margin-top: 70px;
  padding-top: 70px;
}

.press-post:after {
  clear: both;
}

.press-post.no-border,
.press-post:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.press-post .inline-links a {
  font-size: 14px;
}

.press-post .image {
  float: left;
  margin-right: 6%;
  width: 34%;
}

.press-post .info {
  float: left;
  margin-right: 6%;
  width: 34%;
}

.press-post .info h4 {
  margin-top: 0;
}

.press-post .extras {
  float: left;
  width: 20%;
}

.press-post .extras p {
  margin-left: 40px;
}

.press-post .extras p.btn {
  margin-left: 0;
}

@media all and (max-width: 1024px) {
  .press-post .image {
    margin-right: 0;
    padding-bottom: 30px;
    width: 100%;
  }

  .press-post .info {
    width: 70%;
  }

  .press-post .extras {
    width: 24%;
  }
}

@media all and (max-width: 600px) {
  .press-post .image,
  .press-post .info,
  .press-post .extras {
    float: none;
    margin-right: 0;
    width: 100%;
  }

  .press-post .image p,
  .press-post .info p,
  .press-post .extras p {
    margin-left: 0;
  }
}

.press-load-more {
  text-align: center;
}

@media all and (max-width: 1024px) {
  .press-load-more {
    padding: 70px 0;
  }
}

.Video-gallery .video-item-row {
  margin-bottom: 50px;
}

@media all and (max-width: 600px) {
  .Video-gallery .video-item-row {
    margin-bottom: 0;
  }
}

.Video-gallery #video-posts {
  margin-bottom: 0;
}

.Video-gallery .hero-video-item {
  display: inline-block;
  width: 40%;
  margin: 0 4%;
}

.Video-gallery .hero-video-item .fancy-shadow {
  display: block;
}

.Video-gallery .hero-video-item .fancy-shadow:before {
  bottom: -25%;
}

.Video-gallery .hero-video-item .fancy-shadow i {
  z-index: 1;
}

.Video-gallery .hero-video-item .fancy-shadow .video-image {
  width: 100%;
  padding: 28.175% 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.Video-gallery .hero-video-info {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}

.Video-gallery .hero-video-info h5 {
  margin: 0;
  font-weight: 700;
}

.Video-gallery .hero-video-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.Video-gallery .hero-video-info h6 a {
  color: #2c2d33;
}

.Video-gallery .hero-video-info p {
  color: #a1a1a1;
  font-size: 18px;
  font-weight: 400;
  margin: 5px 0;
}

.Video-gallery .hero-video-more {
  margin-top: 30px;
}

.Video-gallery .hero-video-details {
  display: inline-block;
  vertical-align: top;
  margin-right: 10%;
}

.Video-gallery .hero-video-details p {
  font-size: 12px;
  margin: 0;
}

.Video-gallery .hero-video-artists {
  display: inline-block;
  margin-right: 4%;
}

.Video-gallery .hero-video-artists a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.Video-gallery .hero-video-share h6 {
  display: inline-block;
  text-transform: none;
  margin-right: 1rem;
  letter-spacing: normal;
}

.Video-gallery .hero-video-share ul {
  display: inline-block;
  list-style: none;
  padding-left: 0;
  margin: 0;
  vertical-align: middle;
}

.Video-gallery .hero-video-share ul li {
  float: left;
  margin-right: 1rem;
}

.Video-gallery .hero-video-share ul li:last-child {
  margin-right: 0;
}

.Video-gallery .hero-video-share a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

@media all and (max-width: 1024px) {
  .Video-gallery .hero-video .hero-video-item {
    display: block;
    width: 100%;
    margin: 0;
    padding-bottom: 40px;
  }

  .Video-gallery .hero-video .hero-video-item .fancy-shadow {
    display: block;
  }

  .Video-gallery .hero-video .hero-video-item .fancy-shadow .video-image {
    padding: 37% 0;
  }

  .Video-gallery .hero-video .hero-video-info {
    display: block;
    float: none;
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .Video-gallery .hero-video .hero-video-info h5 {
    font-size: 24px;
  }

  .Video-gallery .hero-video .hero-video-info p {
    font-size: 16px;
    margin: 20px 0;
  }

  .Video-gallery .hero-video .hero-video-more {
    margin: 0 auto;
  }

  .Video-gallery .hero-video .hero-video-more h6 {
    font-size: 14.4px;
  }

  .Video-gallery .hero-video .hero-video-details {
    display: block;
    margin-right: 0;
  }

  .Video-gallery .hero-video .hero-video-details p {
    font-size: 12px;
    margin: 0;
  }

  .Video-gallery .hero-video .hero-video-artists {
    margin-right: 80px;
  }

  .Video-gallery .hero-video .hero-video-share {
    display: inline-block;
    float: none;
  }

  .Video-gallery .hero-video .hero-video-share ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .Video-gallery .hero-video .hero-video-share a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
  }
}

@media all and (max-width: 600px) {
  .Video-gallery .hero-video .hero-video-item {
    display: block;
    width: 100%;
    margin: 0;
    padding-bottom: 40px;
  }

  .Video-gallery .hero-video .hero-video-info {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .Video-gallery .hero-video .hero-video-info h5 {
    font-size: 24px;
  }

  .Video-gallery .hero-video .hero-video-more {
    width: 96%;
    padding: 0 8px 40px;
  }

  .Video-gallery .hero-video .hero-video-more h6 {
    font-size: 14.4px;
  }
}

.Video-gallery .video-item {
  display: inline-block;
  text-align: center;
  width: 24.97%;
  margin: 0 4% 60px;
  vertical-align: top;
  transition: opacity 4s linear;
}

.Video-gallery .video-item .fancy-shadow {
  display: block;
  margin-bottom: 30px;
}

.Video-gallery .video-item .fancy-shadow:before {
  bottom: -25%;
}

.Video-gallery .video-item .fancy-shadow i {
  z-index: 1;
}

.Video-gallery .video-item .fancy-shadow .video-image {
  width: 100%;
  padding: 28.175% 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.Video-gallery .video-item h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1em;
  margin: 35px 0 5px 0;
  padding: 0;
}

.Video-gallery .video-item h6 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 5px 0;
  padding: 0;
  font-weight: 600;
}

.Video-gallery .video-item p {
  color: #989898;
  font-size: 16px;
  margin: 20px 0;
  padding: 0;
}

@media all and (max-width: 1024px) {
  .Video-gallery .video-item {
    display: block;
    margin: 0;
    padding-bottom: 50px;
    width: auto;
  }
}

@media all and (max-width: 600px) {
  .Video-gallery .video-item {
    display: block;
    margin: 0;
    padding-bottom: 50px;
    width: auto;
  }

  .Video-gallery .video-item .video-image {
    padding: 150px;
  }
}

.Video-gallery .video-post {
  border-top: 1px solid #ddd;
  clear: both;
  margin-top: 70px;
  padding-top: 70px;
}

.Video-gallery .video-post:after {
  clear: both;
}

.Video-gallery .video-post.no-border,
.Video-gallery .video-post:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.Video-gallery .video-post .inline-links a {
  font-size: 14px;
}

.Video-gallery .video-post .image {
  float: left;
  margin-right: 6%;
  width: 34%;
}

.Video-gallery .video-post .info {
  float: left;
  margin-right: 6%;
  width: 34%;
}

.Video-gallery .video-post .info h4 {
  margin-top: 0;
}

.Video-gallery .video-post .extras {
  float: left;
  width: 20%;
}

.Video-gallery .video-post .extras p {
  margin-left: 40px;
}

.Video-gallery .video-post .extras p.btn {
  margin-left: 0;
}

@media all and (max-width: 1024px) {
  .Video-gallery .video-post .image {
    margin-right: 0;
    padding-bottom: 30px;
    width: 100%;
  }

  .Video-gallery .video-post .info {
    width: 70%;
  }

  .Video-gallery .video-post .extras {
    width: 24%;
  }
}

@media all and (max-width: 600px) {
  .Video-gallery .video-post .image,
  .Video-gallery .video-post .info,
  .Video-gallery .video-post .extras {
    float: none;
    margin-right: 0;
    width: 100%;
  }

  .Video-gallery .video-post .image p,
  .Video-gallery .video-post .info p,
  .Video-gallery .video-post .extras p {
    margin-left: 0;
  }
}

.Video-gallery .noMore {
  text-align: center;
  margin: 0 auto;
  border-bottom: solid 2px #000;
  width: 200px;
  transition: opacity 0.5s ease;
}

.btn-container {
  text-align: center;
}

@media all and (max-width: 1024px) {
  .btn-container {
    margin: 0 0 70px;
  }
}

@media all and (max-width: 600px) {
  .btn-container {
    margin: 20px 0 80px;
  }
}

.Individual-video .back-link {
  font-weight: 600;
  text-transform: uppercase;
}

.Individual-video .video-item-row {
  margin-bottom: 50px;
}

@media all and (max-width: 600px) {
  .Individual-video .video-item-row {
    margin-bottom: 0;
  }
}

.Individual-video .video-item-row .video-container {
  width: 100%;
}

.Individual-video .video-item-row .video-container .fancy-shadow {
  display: block;
}

.Individual-video .video-item-row .video-container .fancy-shadow:before {
  bottom: -25%;
}

.Individual-video .video-item-row .video-container .wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.26%;
}

.Individual-video .video-item-row .video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.Individual-video .video-item-info {
  text-align: center;
  margin-bottom: 4rem;
}

.Individual-video .video-item-info .video-description {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  margin-right: 2rem;
  text-align: left;
}

.Individual-video .video-item-info .video-description p {
  color: #a1a1a1;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.Individual-video .video-item-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

.Individual-video .video-item-info .video-details {
  display: inline-block;
  width: 10%;
  vertical-align: top;
  margin-right: 2rem;
  text-align: left;
}

.Individual-video .video-item-info .video-share {
  display: inline-block;
  width: 10%;
  vertical-align: top;
  text-align: left;
  margin-right: 2rem;
}

.Individual-video .video-item-info .video-share ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.Individual-video .video-item-info .video-share a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.Individual-video .video-item-info .related-artists {
  display: inline-block;
  width: 15%;
}

.Individual-video .video-item-info .related-artists h6 {
  text-align: left;
}

.Individual-video .video-item-info .related-artists ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #a1a1a1;
  text-align: left;
  text-transform: uppercase;
}

@media all and (max-width: 1024px) {
  .Individual-video .video-item-row .video-container {
    margin-bottom: 2.5rem;
  }

  .Individual-video .video-item-info .video-description {
    display: block;
    width: 100%;
  }

  .Individual-video .video-item-info .video-details {
    display: block;
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
  }

  .Individual-video .video-item-info .video-share {
    display: block;
    width: 100%;
    margin: .5rem 0 .5rem;
  }

  .Individual-video .video-item-info .video-share h6 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
  }

  .Individual-video .video-item-info .video-share ul {
    display: inline-block;
    vertical-align: middle;
  }

  .Individual-video .video-item-info .video-share li {
    float: left;
    margin-right: 1rem;
  }

  .Individual-video .video-item-info .video-share li:last-child {
    margin-right: 0;
  }

  .Individual-video .video-item-info .related-artists {
    display: block;
    width: 100%;
    margin: .5rem 0 2.5rem;
    text-align: left;
  }

  .Individual-video .video-item-info .related-artists h6 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
  }

  .Individual-video .video-item-info .related-artists ul {
    display: inline-block;
    vertical-align: middle;
  }

  .Individual-video .video-item-info .related-artists li {
    float: left;
    margin-right: 1rem;
  }

  .Individual-video .video-item-info .related-artists li:last-child {
    margin-right: 0;
  }
}

@media all and (max-width: 600px) {
  .Individual-video .video-item-row {
    padding: 0 .5rem;
  }

  .Individual-video .video-item-row .video-container {
    margin-bottom: 2.5rem;
  }

  .Individual-video .video-item-info {
    padding: 0 .5rem;
  }

  .Individual-video .video-item-info .video-description {
    display: block;
    width: 100%;
  }

  .Individual-video .video-item-info .video-details {
    display: block;
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
  }

  .Individual-video .video-item-info .video-share {
    display: block;
    width: 100%;
    margin: .5rem 0 1rem;
  }

  .Individual-video .video-item-info .video-share h6 {
    display: block;
    vertical-align: middle;
    margin-right: 1rem;
  }

  .Individual-video .video-item-info .video-share ul {
    display: inline-block;
    vertical-align: middle;
  }

  .Individual-video .video-item-info .video-share li {
    float: left;
    margin-right: 1rem;
  }

  .Individual-video .video-item-info .video-share li:last-child {
    margin-right: 0;
  }

  .Individual-video .video-item-info .related-artists {
    margin: .5rem 0 3.5rem;
  }

  .Individual-video .video-item-info .related-artists h6 {
    display: block;
  }
}


.Rental .column-small {
  margin-bottom: 0 !important;
}

.Rental .section-half {
  display: inline-block;
  width: 49%;
  float: left;
}

.Rental .section-half:last-child {
  margin-left: 2%;
}

@media all and (max-width: 1024px) {
  .Rental .section-half {
    display: block;
    width: 100%;
    float: none;
  }

  .Rental .section-half:last-child {
    margin-left: 0;
  }
}

.Rental .section-half-alt {
  display: inline-block;
  width: 49%;
  float: right;
}

.Rental .section-half-alt:first-child {
  margin-left: 2%;
}

@media all and (max-width: 1024px) {
  .Rental .section-half-alt {
    display: block;
    width: 100%;
    float: none;
  }

  .Rental .section-half-alt:first-child {
    margin-left: 0;
  }
}

.Rental .section-half h2,
.Rental .section-half-alt h2 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.Rental-thanks-msg {
  font-weight: bold;
}

.Rental-thanks-sidebar {
  padding-top: 4rem;
}

.Rental-image-intro {
  display: inline-block;
  width: 100%;
  margin-bottom: 7rem;
}

.Rental-image-intro .left-img {
  display: inline-block;
  width: 49%;
  float: left;
  overflow: hidden;
  margin-top: 3rem;
  height: 300px;
}

.Rental-image-intro .left-img img {
  height: 100%;
  max-width: 1000%;
}

@media all and (max-width: 600px) {
  .Rental-image-intro .left-img {
    display: block;
    width: 100%;
    float: none;
    margin: 0 0 1rem 0;
    height: auto;
  }

  .Rental-image-intro .left-img img {
    height: auto;
    width: 100%;
    margin: 0;
  }
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .Rental-image-intro .left-img {
    display: block;
    width: 100%;
    float: none;
    margin: 0 0 1rem 0;
    height: auto;
  }

  .Rental-image-intro .left-img img {
    height: auto;
    width: 100%;
    margin: 0;
  }
}

.Rental-image-intro .right-img {
  display: inline-block;
  width: 45%;
  overflow: hidden;
  text-align: center;
  float: right;
  height: 275px;
}

.Rental-image-intro .right-img img {
  height: 100%;
  max-width: 1000%;
}

@media all and (max-width: 600px) {
  .Rental-image-intro .right-img {
    display: block;
    width: 100%;
    float: none;
    height: auto;
  }

  .Rental-image-intro .right-img img {
    height: auto;
    width: 100%;
    margin: 0;
  }
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .Rental-image-intro .right-img {
    display: block;
    width: 100%;
    float: none;
    height: auto;
  }

  .Rental-image-intro .right-img img {
    height: auto;
    width: 100%;
    margin: 0;
  }
}

@media all and (max-width: 600px) {
  .Rental-content {
    margin: 0;
  }
}

.Rental-content-row {
  display: inline-block;
  width: 100%;
  margin: 4rem 0;
}

@media all and (max-width: 600px) {
  .Rental-content .slick-list {
    overflow: hidden;
  }
}

.Rental-content .slick-track,
.Rental-content .slick-slide {
  background-color: transparent;
}

.Rental-content .section-gallery {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.Rental-content .section-gallery .img-container {
  max-height: 500px;
}

.Rental-content .section-gallery img {
  width: 100%;
}

.Rental-content .section-gallery-buttons {
  margin-top: 1rem;
}

.Rental-content .section-gallery-buttons i svg {
  width: 25px;
  margin-right: .5rem;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .Rental-content .section-gallery-buttons {
    margin-bottom: 1rem;
  }
}

.Rental-content .capacity {
  display: inline-block;
  text-align: center;
  margin-right: 2rem;
}

.Rental-content .capacity:last-child {
  margin-right: 0;
}

.Rental-content .capacity p {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: normal;
}

.Rental-content .capacity-progress {
  display: inline-block;
  width: 50px;
  height: 50px;
}

.Rental-content .capacity-progress input[type=text] {
  font-weight: 600;
}

.Rental .fancy-shadow.round {
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 50%;
}

.Rental .fancy-shadow.round img {
  height: 100%;
  border-radius: 0;
}

@media all and (max-width: 600px) {
  .Rental .fancy-shadow.round {
    width: 200px;
    height: 200px;
  }
}

.Rental .right {
  padding-top: 0;
}

.Rental .right > div {
  margin: 0;
  width: 100%;
}

.social-links {
  margin-bottom: 10px;
}

.social-links span {
  display: block;
  margin-right: 1rem;
}

@media all and (max-width: 1024px) {
  .social-links span {
    display: inline;
  }
}

.social-links a {
  margin-right: 1rem;
}

@media all and (max-width: 600px) {
  .social-links {
    display: none;
  }
}

.like-wrapper {
  margin-bottom: 220px;
}

@media all and (max-width: 600px) {
  .like-wrapper {
    display: none;
  }
}

.site-banner {
  background-color: #6bdb94;
  padding: .5rem 0;
  position: relative;
  z-index: 999;
  text-align: center;
}

.site-banner a {
  text-decoration: underline;
}

@media all and (min-width: 1025px) {
  .site-banner {
    position: fixed;
    width: 100%;
    padding: .5rem 0;
  }
}

@media all and (max-width: 1024px) {
  .site-banner {
    padding: 1rem 5.8rem 1.5rem;
  }
}

@media all and (max-width: 600px) {
  .site-banner {
    padding: 1rem 4rem 1.5rem 1rem;
    text-align: left;
  }

  .site-banner p {
    width: 100% !important;
  }
}

.site-banner h1 {
  font-weight: 400;
  text-transform: none;
  font-size: 14px;
  color: #eee;
  margin: 0;
}

.site-banner h3 {
  font-size: 16px;
  margin: 10px .5rem 5px 0;
  color: #eee;
}

@media all and (min-width: 1025px) {
  .site-banner h3 {
    display: inline-block;
  }
  .site-banner .expand-links-container {
    display: inline-block;
    margin-left: 2rem;
  }
}

.site-banner-expand {
  display: inline-block;
  color: #eee;
  font-weight: 600;
  cursor: pointer;
  margin: 0 1rem 0 0;
  transition: color 0.4s ease;
}

.site-banner-expand:hover {
  color: #fff;
}

.site-banner-expanded {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-40px);
  transition: transform 0.4s ease, opacity 0.5s ease, z-index 0.4s ease;
  background-color: #000;
  margin: 0;
  padding: 1rem 3.5rem 1rem 2.5rem;
  cursor: pointer;
  z-index: -1;
  color: #fff;
}

.site-banner-expanded.active {
  transform: translateY(0px);
  opacity: 1;
  z-index: 1;
}

@media all and (min-width: 1025px) {
  .site-banner-expanded br {
    display: none;
  }
}

.site-banner-cta {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  opacity: 0;
  transition: all 0.4s ease;
  color: #fff;
  margin: 0;
}

.site-banner-cta.active {
  opacity: 1;
  cursor: pointer;
  z-index: 1;
}

@media all and (max-width: 1024px) {
  .site-banner-cta {
    top: 1rem;
    left: 1rem;
  }
}

@media all and (min-width: 1025px) {
  .site-banner-cta {
    left: 1rem;
  }
}

.site-banner p {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin: 0;
}

@media all and (max-width: 740px) {
  .site-banner p {
    width: 80%;
  }
}

.site-banner p span {
  color: #eee;
  font-weight: 600;
}

.site-banner a {
  color: #fff;
  transition: color, 0.4s, ease;
}

.site-banner a:hover {
  color: #eee;
}

.breakpoint {
  display: none;
}

@media all and (min-width: 1024px) and (max-width: 1170px) {
  .breakpoint {
    display: block;
  }
}

@media all and (min-width: 1279px) and (max-width: 1400px) {
  .breakpoint {
    display: block;
  }
}

.hidden-alt {
  opacity: 0;
  max-height: 0 !important;
  display: none;
}

i.large-icon {
  height: 160px;
  width: 160px;
}

i.large-icon svg {
  height: 160px;
  width: 160px;
}

i.large-icon.large-icon-gray .icon {
  fill: #ddd;
}

.programming-item {
  padding: 30px 0;
  text-align: center;
}

.programming-item h5 em {
  display: block;
  font-size: 15px;
  font-style: normal;
  line-height: 1em;
}

.programming-item h5 strong {
  display: block;
  margin-top: 15px;
}

.programming-item p {
  border-top: 3px solid #2c2d33;
  color: #999;
  margin: 10px auto;
  padding-top: 25px;
  width: 260px;
}

.see-all {
  float: right;
  position: relative;
  top: -80px;
}

.spheres-of-impact-feature {
  background: #2c2d33 url("/img/theme/spheres-of-impact-feature.jpg?20140429") center center no-repeat;
  padding: 100px 0;
  text-align: center;
  width: 100%;
  background-size: cover;
}

.spheres-of-impact-feature > div {
  margin: 0 auto;
  max-width: 700px;
}

.spheres-of-impact-feature ul {
  display: block;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 500px;
}

.spheres-of-impact-feature ul li {
  display: inline-block;
  margin: 20px;
}

.spheres-of-impact-feature ul li,
.spheres-of-impact-feature ul i,
.spheres-of-impact-feature ul svg {
  height: 48px;
  width: 48px;
}

.spheres-of-impact-feature ul .icon {
  fill: #fff;
}

.spheres-of-impact-feature h4 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1em;
}

.spheres-of-impact-feature p {
  color: #b1b2b7;
}

@media all and (max-width: 600px) {
  .spheres-of-impact-feature {
    padding: 50px 0;
  }

  .spheres-of-impact-feature ul {
    width: auto;
  }

  .spheres-of-impact-feature h4 {
    font-size: 24px;
    line-height: 1.1em;
  }
}

.issuuembed {
  width: 100% !important;
}

#google-map img {
  max-width: none;
}

.no-text-transform {
  text-transform: none !important;
}

@media all and (max-width: 600px) {
  .sideblurb {
    margin-bottom: 4rem;
  }
}

@media all and (max-width: 1024px) {
  .sideblurb {
    margin-bottom: 4rem;
  }
}

.sideblurb .sidebar-img {
  position: relative;
}

.sideblurb .sidebar-img-container {
  width: 280px !important;
  height: 280px !important;
  overflow: hidden;
  border-radius: 50% !important;
}

.sideblurb .sidebar-img-container img {
  height: 100% !important;
  border-radius: 0 !important;
}

@media all and (max-width: 600px) {
  .sideblurb .sidebar-img-container {
    width: 200px !important;
    height: 200px !important;
  }
}

.sideblurb .sidebar-img::before {
  content: '';
  background-image: url("/img/theme/fancy-shadow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  right: 2%;
  bottom: -40%;
  width: 90%;
  height: 90%;
  pointer-events: none;
}

@media all and (max-width: 600px) {
  .sideblurb .sidebar-img::before {
    right: 10%;
    bottom: -20%;
    width: 70%;
    height: 70%;
  }
}

.sideblurb .quick-note {
  margin-bottom: 0;
}

@media all and (max-width: 600px) {
  .sideblurb .quick-note {
    margin-bottom: 4rem !important;
  }
}

@media all and (max-width: 1024px) {
  .sideblurb .quick-note {
    margin-bottom: 4rem !important;
  }
}

.sideblurb .button {
  text-align: center;
  margin-bottom: 5rem;
}

@media all and (max-width: 1024px) {
  .sideblurb .button {
    margin-bottom: 0;
  }
}

@media all and (max-width: 600px) {
  .sideblurb .button {
    margin-bottom: 0;
  }
}

.btn-disabled {
  background-color: #dadada !important;
  cursor: default !important;
}

.btn-disabled:hover {
  background-color: #dadada !important;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 600px) {
  .slick-list {
    overflow: visible;
  }
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  background-color: #fff;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  background-color: #fff;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  width: 11.8%;
  margin: 5px .25%;
  position: relative;
  vertical-align: middle;
  padding: 10px 20px;
  border: 3px solid #ddd;
  background-color: #fff;
  font-family: 'TTNorms', 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: #bfbfbf;
  text-align: left;
}

@media all and (min-width: 1024px) and (max-width: 1115px) {
  .select2-container {
    width: 11%;
  }
}

@media all and (max-width: 1024px) {
  .select2-container {
    width: 33%;
    margin: 5px 0;
  }
}

@media all and (min-width: 540px) and (max-width: 780px) {
  .select2-container {
    width: 33%;
    margin: 5px 0;
  }
}

@media all and (min-width: 601px) and (max-width: 696px) {
  .select2-container {
    width: 32.9%;
    margin: 5px 0;
  }
}

@media all and (max-width: 600px) {
  .select2-container {
    width: 100%;
    margin: 5px 0;
  }
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  font-family: 'TTNorms', 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: #bfbfbf;
  background-color: #fff;
  border: 3px solid #ddd;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__options a {
  display: list-item;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
}

.select2-search--dropdown .select2-search__field {
  padding: 10px 2px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  -webkit-appearance: none;
}

.select2-container--default .select2-selection--single:focus {
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 8px;
  position: relative;
  z-index: 999;
}

/*   .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; } */

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #ddd transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  height: 0;
  left: 30%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 80%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #ddd transparent;
  border-width: 0 5px 6px 5px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #fff;
  outline: 0;
  -webkit-appearance: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: solid .05px #ddd;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f6f6f6;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

/* .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; } */

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

/* .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; } */

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 2px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #ddd transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #ddd transparent;
  border-width: 0 5px 6px 5px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

/* .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; } */

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #fff;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.lg-column {
  display: inline-block;
  width: 65%;
  vertical-align: top;
}

.sm-column {
  display: inline-block;
  width: 28%;
  vertical-align: top;
  float: right;
}

.ArtistResources {
  background: #eee;
  top: 50px;
  height: 280px;
  padding-right: 300px;
  position: fixed;
  right: 50px;
  width: 80%;
  z-index: 1;
}

.ArtistResources-info {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  padding: 20px 0;
  width: 100%;
}

.ArtistResources-info h5 strong {
  white-space: nowrap;
}

.ArtistResources-info-heading {
  align-self: center;
}

.ArtistResources-info-item {
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0 1.5%;
}

.ArtistResources-info-item a {
  font-size: 14px;
  font-weight: 400;
}

.ArtistResources-info-item h5 {
  font-size: 16px;
  line-height: 1.2em;
  margin: 30px 0 35px 0;
}

.ArtistResources-info-item h5 div.divider {
  display: inline-block;
  margin: 0;
}

.ArtistResources-info-item h5 strong {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin-right: 25px;
}

.ArtistResources-info-item i {
  display: inline-block;
  height: 20px;
  width: 20px;
}

.ArtistResources-info-item i .icon {
  fill: #ddd;
}

.ArtistResources-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4em;
  text-transform: uppercase;
}

.ArtistResources-social-photo img {
  display: block;
  height: 100px;
  width: 100px;
}

.ArtistResources-toggle {
  box-sizing: border-box;
}

@media all and (max-width: 600px) {
  .ArtistResources {
    padding: 20px 10px;
  }
}

@media all and (max-width: 1024px) {
  .ArtistResources {
    height: auto;
    max-width: none;
    position: static;
    padding: 10px 30px;
  }

  .ArtistResources-social h5,
  .ArtistResources-social img,
  .ArtistResources-social i,
  .ArtistResources-social-photo {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .ArtistResources {
    max-width: 350px;
  }

  .ArtistResources-num1 {
    max-width: 425px;
  }

  .ArtistResources-num2 {
    max-width: 650px;
  }

  .ArtistResources-num3 {
    max-width: 800px;
  }

  .ArtistResources-info-heading {
    flex-grow: 0;
  }

  .ArtistResources-info-socials {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    flex-grow: 1;
  }

  .ArtistResources-social-photo {
    height: 100px;
    margin: 25px 15px 10px 0;
    width: 100px;
  }
}

@media only screen and (min-width: 1390px) {
  .ArtistResources h5 {
    white-space: nowrap;
  }

  .ArtistResources-info {
    align-items: center;
    height: 100%;
  }

  .ArtistResources-info-item i {
    margin-top: 35px;
  }

  .ArtistResources-num1 {
    max-width: 650px;
  }

  .ArtistResources-num2 {
    max-width: 700px;
  }

  .ArtistResources-num3 {
    max-width: 1200px;
  }

  .ArtistResources-social {
    display: flex;
  }
}

