@charset "UTF-8";
/*

Base font size
--------------

- Font sizes and padding/margins are based off the base
- Fonts should be using EMS
- Padding/margins should use REMS

*/
/*

Slugs & Gutters
---------------

- Slugs define vertical spacing
- Gutters define horizontal spacing

*/
/*

Colors
------

- Basic shades
- Primary, Secondary, Tertiary

*/
/*

Z-index
-------

- Semantic layers
- z-index: $top;

*/
html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}
body.is-loading {
  cursor: wait;
}

figure {
  display: inline-block;
  margin: 0;
  padding: 0;
}

input, button {
  font-size: inherit;
  font-family: inherit;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 320px) {
  body {
    content: 'phone';
  }
}
@media (min-width: 480px) {
  body {
    content: 'phone-plus';
  }
}
@media (min-width: 640px) {
  body {
    content: 'phablet';
  }
}
@media (min-width: 1025px) {
  body {
    content: 'tablet';
  }
}
@media (min-width: 1210px) {
  body {
    content: 'notebook';
  }
}
@media (min-width: 1368px) {
  body {
    content: 'laptop';
  }
}
@media (min-width: 1540px) {
  body {
    content: 'desktop';
  }
}
@media (min-width: 1800px) {
  body {
    content: 'cinema';
  }
}

.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cols--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cols--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cols--center--spaced {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cols--footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.col-1 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-1 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 1 / 12);
  }
}

.col-2 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-2 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 2 / 12);
  }
}

.col-3 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-3 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 3 / 12);
  }
}

.col-4 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-4 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 6 / 12);
  }
}
@media (min-width: 1210px) {
  .col-4 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 4 / 12);
  }
}

.col-5 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-5 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 5 / 12);
  }
}
@media (min-width: 1210px) {
  .col-5 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 5 / 12);
  }
}

.col-6 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-6 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 6 / 12);
  }
}

.col-8 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-8 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 8 / 12);
  }
}

.col-9 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-9 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 9 / 12);
  }
}

.col-10 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-10 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 10 / 12);
  }
}

.col-11 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-11 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 11 / 12);
  }
}

.col-12 {
  width: 100%;
}
@media (min-width: 640px) {
  .col-12 {
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(100% * 12 / 12);
  }
}

@font-face {
  font-family: 'Terrazzo-Regular';
  src: url("../../fonts/terrazzo-regular-webfont.eot");
  src: url("../../fonts/terrazzo-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/terrazzo-regular-webfont.woff2") format("woff2"), url("../../fonts/terrazzo-regular-webfont.woff") format("woff"), url("../../fonts/terrazzo-regular-webfont.ttf") format("truetype");
}
@font-face {
  font-family: 'SuperclarendonRg-Reg';
  src: url("../../fonts/34273F_0_0.eot");
  src: url("../../fonts/34273F_0_0.eot?#iefix") format("embedded-opentype"), url("../../fonts/34273F_0_0.woff2") format("woff2"), url("../../fonts/34273F_0_0.woff") format("woff"), url("../../fonts/34273F_0_0.ttf") format("truetype");
}
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  font-family: "Terrazzo-Regular", sans-serif;
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: 0.018em;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.h-margins h1, .h-margins h2, .h-margins h3, .h-margins h4, .h-margins h5 {
  margin-bottom: 0.875rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.has-links a {
  color: blue;
  text-decoration: underline;
}
.has-links a:hover, .has-links a.active {
  background: blue;
  text-decoration: none;
  color: #FFFFFF;
}

.sub-menu a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  margin: 0 0.3rem;
}
.sub-menu a:hover, .sub-menu a.active {
  text-decoration: underline;
  color: blue;
}

h1,
.h1 {
  font-size: 1.25rem;
}
@media (min-width: 640px) {
  h1,
  .h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1025px) {
  h1,
  .h1 {
    font-size: 2.33rem;
    line-height: 1.33;
  }
}

h2,
.h2,
blockquote,
blockquote p {
  font-size: 1rem;
}
@media (min-width: 640px) {
  h2,
  .h2,
  blockquote,
  blockquote p {
    font-size: 1.25rem;
  }
}

h3, .h3 {
  font-size: 1rem;
}

h5 strong {
  font-weight: bold;
}
h5 a {
  text-decoration: underline;
}
h5 a:hover, h5 a.active {
  background: #FFFFFF;
  text-decoration: none;
  color: #000000;
}

p, .p1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 0.75rem;
  margin-bottom: 0.875rem;
}
@media (min-width: 1025px) {
  p, .p1 {
    font-size: 1rem;
  }
}

.intro-copy {
  display: block;
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  padding: 3rem 0 3rem;
  text-align: center;
  margin-top: 90px;
}
.intro-copy h1 {
  font-size: 1.25rem;
  margin: 0 auto;
  width: 93%;
}
@media (min-width: 640px) {
  .intro-copy h1 {
    font-size: 3.8vw;
    line-height: 1.33;
  }
}
@media (min-width: 1540px) {
  .intro-copy h1 {
    font-size: 58px;
    width: 1432px;
  }
}
.has-intro .intro-copy {
  margin-top: 0;
}
@media (min-width: 1025px) {
  .intro-copy {
    padding: 4rem 0 4rem;
    margin-top: 170px;
  }
}

code {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  padding: 0.25em 0.5em;
  border-radius: 5px;
  margin: 0 0.25em;
}

blockquote,
blockquote p {
  text-align: center;
  color: blue;
}
blockquote strong,
blockquote p strong {
  color: #000000;
}

strong {
  font-weight: normal;
}

.txt--center {
  text-align: center;
}

.txt--left {
  text-align: left;
}

.txt--right {
  text-align: right;
}

.dbl-spc {
  line-height: 1.75;
}

.color--primary {
  color: blue;
}

.color--secondary {
  color: lime;
}

.color--grey {
  color: #ccc;
}

.txt--underline {
  text-decoration: underline;
}

.underline {
  border-bottom: solid 2px;
}

.btn {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  padding: 0.4375rem 0.875rem;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
.btn:hover {
  background-color: blue;
}

strong {
  font-weight: bold;
}

.block {
  display: block;
  width: 100%;
}

.container--small {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.container--big {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.container--super {
  width: 100%;
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}

.container--intro {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main {
  position: relative;
  min-height: 100vh;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  main {
    margin-top: 90px;
  }
}

.has-intro main {
  margin-top: 0;
}
main.has-submenu {
  margin-top: 32px;
}
@media (min-width: 1025px) {
  main {
    margin-top: 110px;
  }
}
.show-search main, .show-newsletter main {
  -webkit-transform: translateY(130px);
  transform: translateY(130px);
}
@media (min-width: 1025px) {
  .show-search main, .show-newsletter main {
    -webkit-transform: translateY(66px);
    transform: translateY(66px);
  }
}

.embed {
  position: relative;
  display: inline-block;
  width: 100%;
}
.embed .height {
  padding-top: 56%;
}
.embed .iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed .iframe iframe {
  width: 100%;
  height: 100%;
}

.addthis_inline_share_toolbox .at-icon-wrapper {
  background-color: transparent !important;
  border-radius: 100% !important;
}
.addthis_inline_share_toolbox .at-icon-wrapper svg {
  fill: #000000 !important;
}

.spotlight__entry {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.7rem;
}
.spotlight__entry:hover .spotlight__text {
  background: transparent;
}
.spotlight__entry:hover .spotlight__text h1 {
  opacity: 0;
}
@media (min-width: 640px) {
  .spotlight__entry {
    display: inline-block;
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .spotlight__entry {
    padding: 1.09375rem;
  }
}

.spotlight__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 75%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.spotlight__text {
  color: white;
  background: rgba(0, 0, 0, 0.32);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  line-height: 1.1;
}

.spotlight__rollover {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -103%);
  transform: translate(-50%, -103%);
  padding: 0.875rem;
  background: black;
  color: white;
  width: 420px;
  height: auto;
  z-index: 10000;
  text-align: center;
  display: none;
}
@media (min-width: 640px) {
  .show-overlay .spotlight__rollover {
    display: block;
  }
}

.no-m {
  margin: 0;
}

.mb {
  margin-bottom: 0.875rem;
}
@media (min-width: 1025px) {
  .mb {
    margin-bottom: 1.09375rem;
  }
}

.mt {
  margin-top: 0.875rem;
}
@media (min-width: 1025px) {
  .mt {
    margin-top: 1.09375rem;
  }
}

.mt--small {
  margin-top: 0.4375rem;
}
@media (min-width: 1025px) {
  .mt--small {
    margin-top: 0.875rem;
  }
}

.mt--big {
  margin-top: 1.75rem;
}
@media (min-width: 1025px) {
  .mt--big {
    margin-top: 3.5rem;
  }
}

.mb--big {
  margin-bottom: 1.75rem;
}

.mb--small {
  margin-bottom: 0.875rem;
}

.mb--tiny {
  margin-bottom: 0.4375rem;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.fs {
  width: 100%;
  height: 100%;
}

.pad {
  padding: 0.875rem;
}
@media (min-width: 1025px) {
  .pad {
    padding: 1.09375rem;
  }
}

.pad--big {
  padding: 0.875rem;
}
@media (min-width: 1025px) {
  .pad--big {
    padding: 2.625rem;
  }
}

.pad--sides {
  padding: 0 0.875rem;
}
@media (min-width: 1025px) {
  .pad--sides {
    padding: 0 1.09375rem;
  }
}

.pad--ends {
  padding: 0.875rem 0;
}
@media (min-width: 1025px) {
  .pad--ends {
    padding: 1.09375rem 0;
  }
}

.img--full {
  font-size: 0;
  line-height: 1;
}
.img--full img {
  width: 100%;
  height: auto;
}

.bg--black {
  background-color: #000000;
  color: #FFFFFF;
}

.bg--primary {
  background-color: blue;
  color: #FFFFFF;
}

.max380 {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 95%;
  max-width: 300px;
  height: 100%;
  background: blue;
  color: #FFFFFF;
  padding-top: 1.75rem;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: 0.3s;
}
.menu a {
  display: block;
}
.menu a:hover {
  opacity: 0.75;
}
.show-menu .menu {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.menu__close-overlay {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 300px);
  height: 100vh;
  z-index: 10000;
  cursor: alias;
}
.show-menu .menu__close-overlay {
  display: block;
}

.animate-for-menu {
  transition: 0.3s;
}
.show-menu .animate-for-menu {
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  background: #FFFFFF;
  padding: 0.5rem 0.875rem;
}
@media (min-width: 1025px) {
  header {
    padding: 1.09375rem;
  }
}
.has-intro header {
  color: #FFFFFF;
}
.hide-intro header {
  color: #FFFFFF;
}
.show-search header, .show-newsletter header {
  -webkit-transform: translateY(130px);
  transform: translateY(130px);
}
@media (min-width: 1025px) {
  .show-search header, .show-newsletter header {
    -webkit-transform: translateY(66px);
    transform: translateY(66px);
  }
}
@media (min-width: 640px) {
  header {
    background: transparent;
  }
}

.header__menu-toggle {
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100% * 4 / 12);
  text-align: left;
  line-height: 1;
}
.header__menu-toggle svg {
  fill: #000000;
}
@media (min-width: 640px) {
  .header__menu-toggle {
    opacity: 0;
  }
}

.header__logo {
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100% * 4 / 12);
  text-align: center;
  line-height: 1;
}
.header__logo svg {
  width: 50px;
  height: 48px;
  fill: #000000;
}
@media (min-width: 1025px) {
  .header__logo {
    width: 87px;
    height: 85px;
  }
  .header__logo svg {
    width: 87px;
    height: 85px;
  }
}
@media (min-width: 640px) {
  .has-intro .header__logo svg {
    fill: #FFFFFF;
  }
}

.menu__follow svg {
  fill: #FFFFFF;
}
.menu__follow a {
  display: inline-block;
}
.menu__follow .icon-facebook {
  margin-right: 0.2rem;
}
.menu__follow .icon-instagram {
  margin-right: 0.4rem;
}

.header__follow-icons {
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100% * 4 / 12);
  text-align: right;
  line-height: 1;
}
.header__follow-icons svg {
  fill: #000000;
}
.header__follow-icons .icon-mail {
  margin-right: 0.5rem;
}
.header__follow-icons .icon-search {
  margin-right: 0.1rem;
}
.header__follow-icons .icon-facebook {
  margin-right: 0.2rem;
}
.header__follow-icons .icon-instagram {
  margin-right: 0.4rem;
}
@media (min-width: 640px) {
  .has-intro .header__follow-icons svg {
    fill: #FFFFFF;
  }
}
.header__follow-icons a {
  display: inline-block;
  transition: 0.2s;
}
.header__follow-icons a:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.shop-link {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  color: black;
}
.has-intro .shop-link {
  color: white;
}
.hide-intro .shop-link {
  color: black;
}
@media (max-width: 640px) {
  .has-intro .shop-link {
    color: black;
  }
}

.shop-divider {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.75rem;
  color: black;
}
.has-intro .shop-divider {
  color: white;
}
.hide-intro .shop-divider {
  color: black;
}

@media (max-width: 640px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 21px;
  left: 23px;
  z-index: 4;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.menu-toggle svg {
  fill: #000000;
}
@media (min-width: 640px) {
  .menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .menu-toggle {
    top: 49px;
  }
}
.has-intro .menu-toggle svg {
  fill: #FFFFFF;
}
.hide-intro .menu-toggle svg {
  fill: #000000;
}

.menu-burger-icon {
  display: inline;
}

.menu-cross-icon {
  display: none;
}

.show-menu .menu-burger-icon {
  display: none;
}
.show-menu .menu-cross-icon {
  display: inline;
}

.search-form,
.newsletter-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  z-index: 4;
  text-align: center;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: 0.3s;
}
.search-form input,
.newsletter-form input {
  display: inline-block;
  text-align: left;
  width: 80%;
  height: 100%;
  padding: 0.875rem;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  outline: 0;
}
.search-form input ::-webkit-input-placeholder,
.newsletter-form input ::-webkit-input-placeholder {
  color: #FFFFFF;
}
.search-form input :-moz-placeholder,
.newsletter-form input :-moz-placeholder {
  color: #FFFFFF;
}
.search-form input ::-moz-placeholder,
.newsletter-form input ::-moz-placeholder {
  color: #FFFFFF;
}
.search-form input :-ms-input-placeholder,
.newsletter-form input :-ms-input-placeholder {
  color: #FFFFFF;
}
.search-form button,
.newsletter-form button {
  display: inline-block;
  padding: 0.875rem;
  background: transparent;
  border: 0;
  text-decoration: underline;
  color: #FFFFFF;
  cursor: pointer;
}

.show-search .search-form {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.show-newsletter .newsletter-form {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.close-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 66px;
  left: 0;
  z-index: 100;
}
.show-search .close-overlay, .show-newsletter .close-overlay {
  display: block;
}

.newsletter {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;
}

.event--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  padding: 0.875rem 0;
}
.event--small .event__info {
  width: calc(100% - 82px);
  padding-left: 0.875rem;
  margin: 0;
}
.event--small:hover .event__date {
  background: black;
  color: white;
}
@media (min-width: 640px) {
  .event--small {
    padding: 1.09375rem 0.875rem;
    width: 50%;
  }
}

.event__date {
  position: relative;
  width: 60px;
  height: 60px;
  background: white;
  color: blue;
  text-align: center;
  line-height: 1;
}
.event__date.reverse {
  background: black;
  color: white;
}
.event__date .num,
.event__date .num--small {
  font-family: "SuperclarendonRg-Reg", serif;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.25;
}
.event__date .num--small {
  font-size: 18px;
  line-height: 2.85;
}
.event__date .month, .event__date .year {
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  bottom: 6px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.1em;
}
.event__date .year {
  top: 6px;
  bottom: auto;
}
@media (min-width: 640px) {
  .event__date {
    width: 82px;
    height: 85px;
  }
  .event__date .num {
    font-size: 54px;
    line-height: 1.25;
  }
  .event__date .num--small {
    font-size: 22px;
    line-height: 3.5;
  }
  .event__date .month {
    font-size: 11px;
    bottom: 10px;
  }
}

.event--big {
  width: 50%;
  padding: 0.875rem;
}
.event--big .wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 50%;
}
.event--big .event__date {
  width: 50%;
  height: 100%;
  background: white;
  color: blue;
  text-align: center;
  line-height: 1;
}
.event--big .event__date.reverse {
  background: black;
  color: white;
}
.event--big .event__date .num {
  font-family: "SuperclarendonRg-Reg", serif;
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  height: 0.875em;
}
@media (min-width: 640px) {
  .event--big .event__date .num {
    font-size: 9vw;
  }
}
@media (min-width: 1540px) {
  .event--big .event__date .num {
    font-size: 138px;
  }
}
.event--big .event__date .num--small {
  font-family: "SuperclarendonRg-Reg", serif;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  height: 0.875em;
}
@media (min-width: 640px) {
  .event--big .event__date .num--small {
    font-size: 4.5vw;
  }
}
@media (min-width: 1540px) {
  .event--big .event__date .num--small {
    font-size: 69px;
  }
}
@media (min-width: 640px) {
  .event--big .event__date .month, .event--big .event__date .year {
    font-size: 16px;
  }
  .event--big .event__date .month {
    bottom: 11px;
  }
  .event--big .event__date .year {
    top: 11px;
  }
}

.event__image {
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pabs {
  position: absolute;
  top: 0;
  left: 0;
}

.fs {
  width: 100%;
  height: 100%;
}

.calendar .event--big {
  display: none;
}
@media (min-width: 780px) {
  .calendar .event--small {
    display: none;
  }
  .calendar .event--big {
    display: block;
  }
}

.thumbnail {
  display: block;
  padding: 0.875rem;
  margin-bottom: 2.1875rem;
}
.thumbnail:hover {
  color: blue;
}

.thumbnail__image {
  display: block;
  font-size: 0;
  line-height: 1;
}
.thumbnail__image img {
  width: 100%;
  height: auto;
}

.feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.875rem;
}
@media (min-width: 640px) {
  .feed {
    padding: 0.875rem 2.625rem;
  }
}
@media (min-width: 1025px) {
  .feed {
    padding: 2.625rem;
  }
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.875rem;
}
@media (min-width: 640px) {
  .grid {
    padding: 0.875rem 2.625rem;
  }
}
@media (min-width: 1025px) {
  .grid {
    padding: 2.625rem;
  }
}

.masonry {
  padding: 0.875rem 0;
}
@media (min-width: 1025px) {
  .masonry {
    padding: 2.625rem 0;
  }
}

.tool-pagination {
  position: fixed;
  bottom: -100%;
  opacity: 0;
}

.article__header {
  margin: 1.75rem auto 0;
  padding-top: 0.875rem;
}

.article__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0.875rem auto 0;
}

.article__image {
  margin: 0 auto 0.875rem;
  padding: 0 0.4375rem;
}
.article__image.first-of-type {
  margin-top: 1.75rem;
}

.article__text {
  max-width: 800px;
  margin: 1.75rem auto;
}
.article__text.first-of-type {
  margin-top: 0;
  text-align: center;
}
.article__text p {
  margin: 0 0 0.875rem;
}
.article__text blockquote {
  text-align: center;
  margin: 1.75rem auto;
  padding: 1.75rem 3.5rem;
}
.article__text blockquote p {
  margin: 0;
}

.article__details {
  padding: 0;
  margin: 0;
  list-style: none;
}
.article__details span {
  display: inline-block;
}
.article__details .label {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .event__date h2 {
    display: inline-block;
  }
  .event__date h2:first-of-type::after {
    content: " — ";
  }
}

.newsletter-form-inline input {
  display: inline-block;
  text-align: left;
  width: 70%;
  height: 100%;
  padding: 0.875rem;
  border: solid 2px blue;
  background: transparent;
  color: blue;
  outline: 0;
}
.newsletter-form-inline input::-webkit-input-placeholder {
  color: blue;
}
.newsletter-form-inline input:-moz-placeholder {
  color: blue;
}
.newsletter-form-inline input::-moz-placeholder {
  color: blue;
}
.newsletter-form-inline input:-ms-input-placeholder {
  color: blue;
}
.invert .newsletter-form-inline input {
  background: white;
}
@media (min-width: 1025px) {
  .newsletter-form-inline input {
    width: 80%;
  }
}
.newsletter-form-inline button {
  display: inline-block;
  width: 28%;
  padding: 0.875rem;
  background: blue;
  border: solid 2px blue;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
}
.newsletter-form-inline button:hover {
  background: black;
  border: solid 2px black;
}
.invert .newsletter-form-inline button {
  border: solid 2px white;
  color: white;
  background: transparent;
}
@media (min-width: 1025px) {
  .newsletter-form-inline button {
    width: 18%;
  }
}

.newsletter__subtitle {
  max-width: 380px;
  margin: 0 auto;
  color: blue;
}
.invert .newsletter__subtitle {
  color: white;
}
