body {
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  margin: 0;
  background: #212424;
  min-height: 100vh;
  background: url(bg.jpg) center center/cover no-repeat;
  background-size: cover;
}

:root {
  --primary: #FE7E33;
  --gray: #212424;
}

.grid-container {
  margin: 0 auto;
  max-width: 71rem;
  display: flex;
  height: calc(100vh - 40px);
  padding: 20px;
  align-items: center;
  box-sizing: border-box;
}

.center {
  text-align: center;
}

h1 {
  font-weight: normal;
  margin-top: 2em;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

span.homelink {
  width: 140px;
  height: 140px;
  background: #795548;
  margin: 0 auto;
  border-radius: 100px;
  color: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
span.homelink span {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
}

.uppercase {
  text-transform: uppercase;
}

.banner {
  max-width: 100%;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  border-radius: clamp(10px, 2vw, 2rem);
  padding: clamp(1rem, 4vw, 4rem);
  box-sizing: border-box;
  color: var(--gray);
  background: white;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.banner h2 {
  font-size: 1.6em;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  margin: 4rem 0;
}
.banner p {
  font-size: 1.3em;
  margin-top: 0.4em;
}
.banner p strong {
  display: inline-block;
  padding: 0 10px;
  background: #000;
  font-weight: 500;
}

.contact {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 3rem);
}
.contact .file small {
  background: red;
}
.contact .person {
  border: 4px solid var(--primary);
  flex: 0 0 calc(50% - 1.5rem);
}
.contact .person h3 {
  font-size: 1.8rem;
  font-weight: 100;
  margin-top: 0;
}
.contact .person h3 span {
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: bold;
  text-transform: uppercase;
}
.contact .person > div {
  padding: clamp(1rem,2vw,2rem);
}
.contact a {
  display: block;
  text-align: left;
  font-size: 1.2em;
  padding: 0em;
  text-decoration: none;
  font-weight: normal;
  margin: 0.5rem 0 0 0;
  line-height: 1.2;
  color: black;
  display: flex;
  align-items: center;
}
.contact a i {
  margin-right: 5px;
}
.contact a:hover {
  color: var(--primary);
}
.contact a.file {
  align-items: baseline;
}
.contact a.file small {
  background: red;
  color: #fff;
  display: inline-block;
  padding: 2px 5px;
  border-radius: 5px;
  margin-right: 10px;
  display: block;
}

@media screen and (max-width: 1023px) {
  body {
    font-size: 0.9em;
  }

  .contact {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

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