html {
  font-size: 12px; }
  @media (min-width: 48rem) {
    html {
      font-size: 14px; } }
  @media (min-width: 64rem) {
    html {
      font-size: 16px; } }
body {
  font-size: 133%; }
  @media (min-width: 48rem) {
    body {
      font-size: 114%; } }
  @media (min-width: 64rem) {
    body {
      font-size: 100%; } }
h1, h2, h3, h4 {
  font-family: 'Courier New', Courier, monospace; }
  h1 *, h2 *, h3 *, h4 * {
    color: #0b0205; }

.outer {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7; }
  @media (min-width: 90rem) {
    .outer {
      padding-top: 10rem; } }
.inner {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  min-height: 100vh;
  box-shadow: 1px 0 8px 2px rgba(0, 0, 0, 0.05);
  width: 100%; }
  @media (min-width: 64rem) {
    .inner {
      min-height: auto; } }
  .inner > * {
    min-height: 100vh; }
    @media (min-width: 90rem) {
      .inner > * {
        min-height: auto; } }
.main {
  flex-grow: 1; }
  @media (min-width: 80rem) {
    .main {
      padding-bottom: 6rem; } }
.index-container {
  padding: 4rem 2rem; }
  @media (min-width: 48rem) {
    .index-container {
      padding: 4rem; } }
::selection {
  background-color: #a5a5a5; }

@font-face {
  font-family: 'AvenirNextPro';
  src: url("../fonts/2FDF27_8_0.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/2FDF27_8_0.eot?#iefix") format("embedded-opentype"), url("../fonts/2FDF27_8_0.woff2") format("woff2"), url("../fonts/2FDF27_8_0.woff") format("woff"), url("../fonts/2FDF27_8_0.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal; }

body {
  font-family: 'AvenirNextPro', 'Courier New', Courier, monospace; }

h2, h3, h4 {
  font-family: 'AvenirNextPro', 'Courier New', Courier, monospace;
  font-weight: bold; }

.page-title {
  font-family: 'Courier New', Courier, monospace;
  font-size: 4rem;
  color: #9C6DA5;
  letter-spacing: -2px;
  font-weight: bold;
  text-transform: lowercase;
  margin-bottom: .5rem;
  line-height: 1;
  word-spacing: -1rem; }

.item-title {
  letter-spacing: 4px; }

.menu {
  background-color: #9C6DA5; }

.side-menu {
  margin-top: 6rem;
  display: flex;
  width: 100%;
  justify-content: center; }

.side-menu__container {
  position: sticky;
  right: 0;
  top: 0;
  display: none; }
  @media (min-width: 48rem) {
    .side-menu__container {
      display: block; } }
.side-menu__container a:hover {
  color: purple;
  text-decoration: none; }

.menu-list {
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 5rem 4rem 0 6rem; }
  @media (min-width: 48rem) {
    .menu-list {
      padding: 5rem 2rem 0 2rem; } }
  @media (min-width: 64rem) {
    .menu-list {
      padding: 5rem 3rem 0 4rem; } }
  @media (min-width: 80rem) {
    .menu-list {
      padding: 5rem 4rem 0 6rem; } }
  .menu-list * {
    color: #f7f7f7; }
  .menu-list a:hover {
    color: currentColor;
    font-weight: bold; }
  .menu-list > li {
    display: inline-block;
    padding: .75rem;
    transition: transform .3s;
    height: 1.125rem; }
    .menu-list > li:not(:last-of-type) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
    .menu-list > li:hover {
      transition: transform .3s;
      height: 1.125rem; }
    .menu-list > li.active {
      color: #e7bbff;
      font-weight: bold; }
      .menu-list > li.active > a {
        color: currentColor; }

.menu-mobile .menu-list {
  padding: 0 4rem 6rem 0; }

.ea-btn {
  cursor: pointer;
  color: #fff;
  background-color: #9C6DA5;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 0 auto;
  padding: .5rem 4rem;
  border-radius: .0625rem;
  display: flex;
  border: .5rem solid;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  box-shadow: .0625rem 0 1rem #d7d7e7; }
  .ea-btn:hover {
    background-color: rgba(156, 109, 165, 0.85);
    box-shadow: .0625rem 0 2rem #d7d7e7; }
  .ea-btn:active {
    opacity: .8;
    transform: scale(1.1); }
  @media (min-width: 48rem) {
    .ea-btn {
      margin: 4rem auto 0; } }
@media (min-width: 48rem) {
  .small-screen {
    display: none; } }

.medium-screen {
  display: none; }
  @media (min-width: 48rem) {
    .medium-screen {
      display: inline-block; } }
  @media (min-width: 64rem) {
    .medium-screen {
      display: none; } }
.large-screen {
  display: none; }
  @media (min-width: 64rem) {
    .large-screen {
      display: inline-block; } }
.home {
  position: relative;
  z-index: 0;
  min-height: 60vh; }
  .home__content {
    padding: 4rem 6rem 4rem 2rem;
    width: 75%;
    color: #0b0205;
    font-size: 1rem; }
    @media (min-width: 64rem) {
      .home__content {
        padding: 4rem;
        width: 60%; } }
  .home__title {
    font-size: 4rem;
    color: #9C6DA5;
    letter-spacing: -2px;
    font-weight: bold;
    text-transform: lowercase;
    margin-bottom: .5rem;
    line-height: 1;
    word-spacing: -1rem; }
  .home__subtitle {
    font-size: 1.25rem;
    letter-spacing: .675rem;
    font-weight: bold;
    color: #a5a5a5;
    text-transform: uppercase;
    text-align: center;
    margin: 1.5rem 0 0 4px;
    line-height: 1; }
  .home__text {
    padding: 3rem 4.25rem 0 0;
    word-break: break-word; }
    @media (min-width: 48rem) {
      .home__text {
        padding: 2rem 12rem 0 0; } }
    @media (min-width: 64rem) {
      .home__text {
        padding: 3rem 2rem 0 0; } }
  .home__contact {
    width: 60%;
    position: fixed;
    left: 5%;
    top: 5%;
    border: 4px solid #2C1B47;
    background-color: #777;
    opacity: 0;
    visibility: hidden;
    padding: 2rem 4rem;
    z-index: -1;
    max-height: 70vh;
    overflow-y: auto; }
    .home__contact * {
      color: #fff; }
    .home__contact.visible {
      opacity: 1;
      visibility: visible;
      z-index: 2;
      transition: opacity .5s; }
  .home__contact-btn {
    position: relative;
    bottom: 1;
    color: #fff;
    background-color: #9C6DA5;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 4px;
    margin: 0 auto;
    padding: 1px 4rem;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 1px;
    display: flex;
    border: .5rem solid;
    box-shadow: 1px 0 32px #d7d7e7; }
    @media (min-width: 48rem) {
      .home__contact-btn {
        bottom: -6rem;
        margin: 6rem auto; } }
  .home__close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer; }
  .home__image {
    position: absolute;
    right: -27.5%;
    top: 24%;
    width: 13.5rem;
    z-index: 1; }
    @media (min-width: 23.75rem) {
      .home__image {
        right: -25.5%; } }
    @media (min-width: 48rem) {
      .home__image {
        right: -2.5%;
        top: 28.5%;
        width: 15.5rem; } }
    @media (min-width: 64rem) {
      .home__image {
        right: -7.5%;
        top: 17.5%; } }
    @media (min-width: 90rem) {
      .home__image {
        top: 22.5%;
        width: 20rem; } }
    .home__image::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: white;
      right: -1rem;
      bottom: 1rem;
      z-index: -1; }
  .home__caption {
    position: absolute;
    left: 1px;
    bottom: -1.5rem;
    font-size: .75rem;
    color: #0b0205; }

.cards {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  color: #0b0205; }

.card {
  margin: 6rem 0;
  position: relative; }
  .card::before {
    content: '';
    height: .375rem;
    width: 10rem;
    position: absolute;
    background-color: #0b0205;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%); }
  @media (min-width: 48rem) {
    .card__body {
      padding: 0 4rem 2rem 0; } }
  .card__text > p {
    margin: 0 0 1rem 0; }
  .card__title {
    font-weight: bold;
    font-family: 'AvenirNextPro', 'Courier New', Courier, monospace;
    margin: 1rem 0; }
  .card__date {
    margin: .25rem 0;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    font-size: .875rem;
    letter-spacing: .25rem;
    text-align: right; }
  @media (min-width: 48rem) {
    .card__img > img {
      object-fit: cover; } }
  .card__movie {
    position: relative;
    padding-top: 56.25%; }
    .card__movie iframe {
      border: 0;
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%; }

.header {
  position: relative; }
  .header .top-menu__container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4rem; }
  .header .top-menu__icon {
    position: absolute;
    top: 1rem;
    right: -5rem;
    z-index: 1000;
    color: #fff; }

.menu-mobile {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #9C6DA5;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  opacity: 0;
  visibility: hidden; }
  .menu-mobile.visible {
    z-index: 99;
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease-in-out; }

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  position: relative;
  left: 50%;
  transform: translateX(-30%); }
  @media (min-width: 48rem) {
    .footer__inner {
      align-items: center; } }
.footer__socials {
  display: flex;
  justify-content: space-evenly;
  align-items: center; }
  .footer__socials a {
    display: inline-block;
    color: #a5a5a5; }
    .footer__socials a:not(:first-of-type) {
      margin-left: 1.5rem; }

.footer__text {
  font-size: 80%;
  color: #a5a5a5; }

/*# sourceMappingURL=styles.css.map */