ul.cards {
  display: flex;
  justify-content: center;
  gap: 3%;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
ul.cards li {
  background-size: cover;
  background-position: center;
  height: 30rem;
  width: 20%;
  text-align: center;
  position: relative;
  transition-property: box-shadow;
  -webkit-transition-property: box-shadow;
  -moz-transition-property: box-shadow;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
}
ul.cards li:hover {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
ul.cards li:hover div {
  background-color: white;
}
ul.cards li:hover p:first-child {
  color: #B4A05A;
}
ul.cards li:hover p:last-child span:nth-child(2) {
  color: #B4A05A;
}
ul.cards li a {
  display: flex;
  height: 100%;
  align-items: flex-end;
  color: inherit;
  text-decoration: none;
  letter-spacing: 2px;
}
ul.cards li a div {
  background-color: rgba(255, 255, 255, 0.75);
  margin: 1rem;
  flex: 1;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  transition-property: background-color;
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
}
ul.cards li a div p {
  margin: 0;
}
ul.cards li a div p:first-child {
  font-size: 1.375rem;
  text-transform: uppercase;
  transition-property: color;
  -webkit-transition-property: color;
  -moz-transition-property: color;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
}
ul.cards li a div p:last-child {
  font-size: 0.813rem;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0 3rem;
  gap: 1em;
}
ul.cards li a div p:last-child span:first-child,
ul.cards li a div p:last-child span:last-child {
  border-bottom: 1px #B4A05A solid;
  flex-grow: 1;
}
ul.cards li a div p:last-child span:nth-child(2) {
  flex-shrink: 0;
}

body {
  font-family: Oxygen, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smooth: antialiased;
  font-size: 16px;
  margin: 0;
}
body > header > div {
  height: 5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
}
body > header > div img {
  height: 3em;
}
body > header > div select {
  border: none;
  font-family: inherit;
  font-size: inherit;
}
body > header > div > span {
  display: flex;
  gap: 1em;
}
body > header > nav {
  background-color: #646464;
  text-align: center;
  text-transform: uppercase;
  line-height: 3em;
}
body > header > nav a {
  text-decoration: none;
  color: white;
}
body > header > nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}
body > main > .with-padding {
  padding: 0 14%;
}
body > footer {
  background-color: #646464;
  color: white;
  padding: 0 14%;
}
body > footer a {
  text-decoration: none;
  color: white;
}
body > footer > div {
  display: flex;
  justify-content: space-between;
  gap: 7em;
  padding: 4em 0;
}
body > footer > div ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body > footer > div > ul {
  line-height: 2em;
}
body > footer > div > ul li:first-child {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 3em;
}
body > footer > div > ul a {
  font-size: 0.875em;
}
body > footer > div > ul:first-child li:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 1em;
}
body > footer > div > ul:first-child li:not(:first-child) a {
  text-decoration: underline;
}
body > footer > div div {
  flex-grow: 1;
}
body > footer > div div p {
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  margin: 0;
  line-height: 3em;
}
body > footer > div div p span {
  position: relative;
  padding-right: 1em;
  background-color: #646464;
}
body > footer > div div p:before {
  content: "";
  position: absolute;
  bottom: 50%;
  border-bottom: 1px white solid;
  width: 100%;
  z-index: 0;
}
body > footer > div div ul {
  display: flex;
  gap: 1em;
}
body > footer > div div ul li {
  box-sizing: border-box;
  height: 3em;
  width: 3em;
  text-align: center;
  border-radius: 50%;
  border: 2px solid white;
  vertical-align: top;
}
body > footer > div div ul li a {
  display: block;
  font-size: revert;
  line-height: calc(3em - 4px);
}
body > footer > p {
  font-size: 0.75em;
  border-top: 1px solid white;
  line-height: 4em;
  margin: 0;
  display: flex;
  gap: 2em;
  justify-content: center;
}

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