#footerContainer {
  background-color: #212121;
  display: flex;
  flex-direction: row;
  position: relative;
}

#leftFooter,
#rightFooter {
  height: 100%;
  width: 50%;
  box-sizing: border-box;
}

#leftFooter {
  padding: 4rem 1rem 0rem 3rem;
}

#rightFooter {
  background-image: linear-gradient(
      rgba(54, 54, 54, 0.5),
      rgba(54, 54, 54, 0.5)
    ),
    url("../resources/imgs/footer-right.jpg");
  position: absolute;
  left: 50%;
}

#ourBeers h3 {
  font-family: "Abril Fatface", cursive;
  color: white;
  font-size: 1.25rem;
}

#ourBeers p {
  color: #f3db5d;
  text-decoration: underline;
  cursor: pointer;
  margin: 0;
  padding: 0.25rem 0;
  font-family: "Roboto Mono", monospace;
  font-size: 0.75rem;
}

#ourBeers p:hover {
  color: #57c3c5;
}

#beerList {
  column-count: 3;
}

#hoursLoc {
  display: flex;
  flex-direction: column;
}

#hoursLocHeader {
  display: flex;
  flex-direction: row;
  color: white;
  margin: 1.5rem 0;
}

.hlHeaderContainer h4 {
  cursor: pointer;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  margin: 0;
}

#hlHeader1 {
  padding-right: 3rem;
}

#hlHeader2 {
  padding: 0 3rem;
  border-left: 1px solid white;
  border-right: 1px solid white;
}

#hlHeader3 {
  padding-left: 3rem;
}

#hoursLocHeader h4:hover {
  color: #58c5c7;
  border-bottom: 2px solid #58c5c7;
}

#hoursLocContainer1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.timeContainer {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.timeContainer:nth-child(2) {
  margin-left: 2rem;
  margin-right: 1rem;
}

.hoursLocItem {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.hoursLocItem h6 {
  font-size: 0.9rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: white;
  margin: 0;
}

.hoursLocItem p {
  font-size: 0.8rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  color: #fdf1c6;
  margin: 0;
}

.hlHeaderContainer {
  display: flex;
  justify-content: space-around;
}

#conDetailLeft {
  color: #fdf1c6;
  font-size: 0.9rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  box-sizing: border-box;
  padding-right: 3rem;
  padding-top: 2rem;
}

#conDetailRight {
  padding-top: 2rem;
}

#conDetailRight p {
  font-family: "Roboto Mono", monospace;
  font-size: 0.9rem;
  font-weight: 300;
  color: #f3db5d;
  text-decoration: underline;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

#conDetailRight p:hover {
  color: #57c3c5;
}

#bottomFooterBar {
  display: flex;
  flex-direction: row;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

#bottomFooterBar span:not(:first-child) {
  margin-left: 2rem;
}

#bottomFooterBar span {
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  font-size: 0.6rem;
  color: white;
  cursor: pointer;
}

#bottomFooterBar span:hover {
  color: #57c3c5;
  text-decoration: underline;
}

#rightFooter > div {
  padding-left: 40%;
  /* padding-top: 50%; */
}

#awardsImg {
  padding-top: 50%;
}

#awardsImg img {
  width: 25rem;
  max-width: 90%;
}

#newsLetterSubscribe {
  padding-top: 5rem;
}

#newsLetterSubscribe label {
  font-family: "Abril Fatface", cursive;
  color: white;
  font-size: 1.25rem;
}

#newsLetterSubscribe section {
  margin-top: 2rem;
  margin-right: 2rem;
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: 100%;
}

#newsLetterSubscribe section input {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
  padding: 1.25rem;
  background-color: transparent;
  color: white;
  border: 1px solid #f3db5d;
  font-size: 1.1rem;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
}

#newsLetterSubscribe section input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
}

#newsLetterSubscribe section > div {
  grid-column: 2 / 2;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: #f3db5d;
  border: 1px solid #f3db5d;
  cursor: pointer;
}

#submitEmail {
  position: relative;
  box-sizing: border-box;
  padding: 0.35rem;
}

#submitEmail .backDiamond {
  left: 50%;
  top: 50%;
  position: absolute;
  background-color: #f3db5d;
}

#innerSubmitEmail {
  font-size: 1.1rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  z-index: 10;
  display: flex;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(0, 0, 0, 0.4);
}

#submitEmail:hover .backDiamond {
  animation: increaseDiamond1 1s forwards;
}

#submitEmail:hover #innerSubmitEmail {
  animation: pulseBorder 1s infinite;
}

@keyframes increaseDiamond1 {
  0% {
    width: 60px;
    height: 60px;
  }

  100% {
    width: 68px;
    height: 68px;
  }
}

@keyframes pulseBorder {
  0% {
    border: 1px solid rgb(0, 0, 0, 0.4);
  }

  20% {
    border: 1px solid rgb(0, 0, 0, 0);
  }

  70% {
    border: 1px solid rgb(0, 0, 0, 1);
  }

  100% {
    border: 1px solid rgb(0, 0, 0, 0.4);
  }
}
