html {
  font-size: 62.5%; }

body {
  background: #f5f5f5;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  font-family: 'Lora', serif; }

.wrap {
  height: 100vh;
  width: 100vw;
  margin: auto;
  overflow: hidden;
  position: relative; }
  .wrap .background-image {
    -webkit-animation-name: load;
    animation-name: load;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    background: url("../img/background.png") no-repeat right center;
    background-size: cover;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0; }
  .wrap a {
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .wrap a:hover {
      opacity: 0.7; }

@-webkit-keyframes load {
  from {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
    opacity: 0; }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }

@keyframes load {
  from {
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
    opacity: 0; }
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }
  .wrap .content {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 0 2rem;
    margin: 0 auto;
    padding-top: 3rem;
    background: rgba(255, 255, 255, 0.7);
    height: calc(100% - 9.7rem);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0; }
    @media (max-height: 470px) {
      .wrap .content {
        height: calc(100% - 5.7rem);
        overflow: auto; } }
    @media (min-width: 1090px) {
      .wrap .content {
        padding-right: 0;
        padding-top: 20vh;
        background: none;
        padding-left: 8.5rem; } }
    .wrap .content h1 {
      margin: 0; }
    .wrap .content .logo {
      position: relative;
      display: block;
      margin-bottom: 1rem; }
      @media (min-width: 1090px) {
        .wrap .content .logo {
          margin-bottom: 4rem; } }
      .wrap .content .logo img {
        width: 228px;
        height: 108.84px; }
      .wrap .content .logo:after {
        content: '';
        width: calc(100% - 17.5rem);
        height: 8px;
        position: absolute;
        background: #801311;
        top: 51px;
        right: 0; }
    .wrap .content .nav {
      display: -webkit-box;
      display: flex;
      -webkit-box-align: center;
      align-items: center;
      margin-bottom: 1rem; }
      @media (min-width: 1090px) {
        .wrap .content .nav {
          margin-bottom: 4rem; } }
      .wrap .content .nav a {
        color: #7f1416;
        text-decoration: none;
        font-size: 1.8rem; }
        @media (min-width: 1090px) {
          .wrap .content .nav a {
            font-size: 2.4rem; } }
      .wrap .content .nav .divider {
        width: 0.2rem;
        height: 2rem;
        background: black;
        display: inline-block;
        margin: 0 2rem; }
        @media (min-width: 1090px) {
          .wrap .content .nav .divider {
            height: 2.4rem; } }
    .wrap .content .about-content,
    .wrap .content .location-content {
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      max-width: 56.6rem;
      overflow: hidden;
      height: 0; }
      .wrap .content .about-content p:first-of-type,
      .wrap .content .location-content p:first-of-type {
        margin-bottom: 3rem; }
      .wrap .content .about-content strong,
      .wrap .content .about-content a,
      .wrap .content .location-content strong,
      .wrap .content .location-content a {
        color: #7f1416; }
      .wrap .content .about-content .phone,
      .wrap .content .location-content .phone {
        color: #801311;
        font-size: 2.5rem;
        text-decoration: none;
        display: block;
        font-weight: bold;
        font-family: sans-serif; }
      .wrap .content .about-content .address-link,
      .wrap .content .location-content .address-link {
        text-decoration: none;
        color: black; }
      .wrap .content .about-content.shown,
      .wrap .content .location-content.shown {
        opacity: 1;
        visibility: visible;
        height: auto; }
  .wrap .blend {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: #801311;
    mix-blend-mode: multiply;
    z-index: 0; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .wrap .blend {
        opacity: 0.9; } }
    @supports (-ms-ime-align: auto) {
      .wrap .blend {
        opacity: 0.9; } }
  .wrap .footer {
    padding: 4rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw; }
    @media (max-height: 470px) {
      .wrap .footer {
        padding-top: 2rem;
        padding-bottom: 2rem; } }
    @media (min-width: 1090px) {
      .wrap .footer {
        padding: 4rem 6rem;
        padding-left: 8.5rem; } }
    .wrap .footer p {
      margin: 0;
      color: #fff;
      font-size: 1.2rem;
      z-index: 3;
      position: relative; }
