.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 50px 15px;
}
@media (min-width: 768px) {
  .landing {
    padding: 50px 30px;
  }
}
@media (min-width: 992px) {
  .landing {
    flex-direction: row;
    padding: 100px;
  }
}

.landing__col {
  display: flex;
}
.landing__col.stokehouse {
  background-color: rgb(0, 39, 118);
}
.landing__col.stokehouse .landing__logo {
  order: 1;
}
.landing__col.stokehouse .landing__heading {
  order: 2;
}
.landing__col.pasta {
  background-color: rgb(232, 230, 210);
}
.landing__col.pasta .landing__heading {
  color: black;
}
@media (min-width: 992px) {
  .landing__col {
    flex: 0 50%;
    position: relative;
  }
  .landing__col.stokehouse, .landing__col.pasta {
    background-color: transparent;
  }
  .landing__col.stokehouse {
    align-items: center;
    padding-right: 50px;
  }
  .landing__col.pasta {
    align-items: center;
    justify-content: flex-end;
    padding-left: 50px;
  }
}

.landing__col + .landing__col {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .landing__col + .landing__col {
    margin-top: 0;
  }
}

.landing__img-container {
  flex: 0 0 50%;
  position: relative;
}
.landing__img-container img {
  width: 100%;
  height: auto;
}
.landing__img-container img.desktop {
  display: none;
}
@media (min-width: 992px) {
  .landing__img-container img.mobile {
    display: none;
  }
  .landing__img-container img.desktop {
    display: block;
    width: auto;
    height: 70vh;
    max-height: 500px;
  }
}
@media (min-width: 1200px) {
  .landing__img-container img.desktop {
    max-height: 600px;
  }
}

.landing__content {
  position: relative;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .landing__content {
    padding: 80px 60px;
  }
}
@media (min-width: 992px) {
  .landing__content {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none;
  }
}

.landing__logo img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .landing__logo {
    max-width: 350px;
  }
}

.landing__arrow {
  display: none;
}

.landing__heading {
  color: white;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: absolute;
  bottom: 25%;
  transform: translateY(50%);
}
@media (min-width: 768px) {
  .landing__heading {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .landing__heading {
    margin-top: 50px;
    font-size: 20px;
    position: static;
  }
}

body {
  transition: background-color 0.3s ease-in-out;
}
body.stokehouse .bars, body.pasta .bars {
  opacity: 0.1;
}
@media (min-width: 992px) {
  body.stokehouse {
    background-color: rgb(0, 39, 118);
  }
  body.stokehouse .landing__col.stokehouse .landing__img-container a {
    display: inline-block;
    position: relative;
  }
  body.stokehouse .landing__col.stokehouse .landing__img-container a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
    pointer-events: none;
  }
  body.stokehouse .landing__col.stokehouse .landing__content {
    display: flex;
  }
  body.stokehouse .landing__col.stokehouse .landing__arrow {
    display: block;
    position: fixed;
    left: 50px;
    top: -50px;
    z-index: 200;
    font-size: 80px;
    color: white;
    transform: translateX(-50%);
  }
  body.stokehouse .landing__col.pasta .landing__img-container {
    opacity: 0.3;
  }
}
@media (min-width: 992px) {
  body.pasta {
    background-color: rgb(232, 230, 210);
  }
  body.pasta .landing__col.pasta .landing__img-container a:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
    pointer-events: none;
  }
  body.pasta .landing__col.pasta .landing__content {
    display: flex;
  }
  body.pasta .landing__col.pasta .landing__arrow {
    display: block;
    position: fixed;
    right: -15px;
    bottom: -50px;
    z-index: 200;
    font-size: 80px;
    color: black;
    transform: translateX(-50%);
  }
  body.pasta .landing__col.stokehouse .landing__img-container {
    opacity: 0.3;
  }
}

.bars {
  display: none;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .bars {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(50%);
  }
}

@font-face {
  font-family: "spartan_lt_stdbook_classified";
  src: url("../fonts/spartanltstd-bookclass-webfont.woff2") format("woff2"), url("../fonts/spartanltstd-bookclass-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.landing__heading {
  font-family: "spartan_lt_stdbook_classified";
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.18em;
}

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