@import url("reset.css");
*, *:before, *:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a:link, a:visited {
  color: gray;
}
a:link, a:visited, a:hover, a:active {
  outline: none;
}
a:focus, a:active {
  outline: none;
}

a:hover {
  color: black;
}

html {
  height: 100%;
  background-image: url("../images/temp_bgr_1.jpg");
  background-image: -webkit-image-set(url("../images/temp_bgr_1.jpg") 1x, url("../images/temp_bgr_1@2x.jpg") 2x);
  background-image: image-set("../images/temp_bgr_1.jpg" 1x, "../images/temp_bgr_1@2x.jpg" 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #eddebc;
}

body {
  position: relative;
  height: 100%;
  color: gray;
  line-height: 1.4;
  font-family: "DIN W05 Regular";
  font-size: 0.75em;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5e9c1;
  opacity: 0.8;
}

.content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex: 1;
}

.col {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row-top, .row-bottom {
  justify-content: flex-end;
}

.card {
  width: 26em;
  padding: 4em 4em 5em 4em;
  background-color: white;
  text-align: center;
}
.card h1 {
  margin-bottom: 4em;
}
.card h1 img {
  width: 12em;
}
.card h2 {
  margin-bottom: 0.25em;
  text-transform: uppercase;
}
.card p {
  margin-bottom: 2em;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.card a, .card .address {
  display: block;
  margin-bottom: 0.25em;
}

.order {
  background-color: #e4a614;
  padding: 1.5em 4em;
  text-transform: uppercase;
  letter-spacing: 0.125em;
}
.order:link, .order:visited {
  color: white;
}
.order:hover {
  color: black;
}

.row-bottom .col {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 4em 4em 0;
}

.social {
  display: flex;
  justify-content: space-between;
  width: 5em;
}

.social-link {
  width: 2em;
  mix-blend-mode: multiply;
}
.social-link .st0 {
  color: gray;
  fill: currentcolor;
}
.social-link .st1 {
  color: gray;
  stroke: currentcolor;
}
.social-link:hover .st0 {
  color: black;
  fill: currentcolor;
}
.social-link:hover .st1 {
  color: black;
  stroke: currentcolor;
}

@media (max-width: 480px) {
  .content {
    padding: 0 8vw 8vw 8vw;
  }

  .col {
    width: 100%;
  }

  .card {
    width: 100%;
  }

  .row-top .col {
    align-items: flex-end;
  }

  .row-bottom .col {
    align-items: flex-start;
    padding: 0;
  }
}
@media (max-width: 320px) {
  .order {
    font-size: 0.875em;
  }

  .card {
    padding: 3em 3em 4em 3em;
  }
  .card h1 {
    margin-bottom: 3em;
  }
  .card h1 img {
    width: 10em;
  }
}/*# sourceMappingURL=base.css.map */