#visitaBanner {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

#siteContent {
  width: 70%;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.storeLinks {
  font-weight: 600;
  margin-top: 22px;
  display: block;
}
.storeLinks:hover {
  color: #00000085;
}
#agendaTitle {
  width: fit-content;
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 1px;
  color: #000000;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 600;
  margin-bottom: 35px;
}

#agendaText {
  width: fit-content;
  font-family: "Gotham";
  font-style: normal;
  font-size: 15px;
  line-height: 19px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  max-width: 750px;
}

#formContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.inputContainer {
  width: 45%;
  float: left;
  height: 52px;
  margin: 15px 0px;
  border: 1px solid;
  display: block;
  position: relative;
}

.contactInput {
  padding: 0px;
  background: transparent;
  border: none;
  height: 50px;
  width: calc(100% - 15px);
  line-height: 50px;
  margin-left: 15px;
  margin-bottom: unset;
  color: #000000;
}

.contactInput::placeholder {
  color: #000000;
}

.selectInput {
  width: 100%;
  padding: 0 15px;
  color: black;
  height: 100%;
  border: unset;
  background-image: url("../../files/downArrow.svg");
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 54%;
  font-weight: 300;
}
.selectInput option {
  font-weight: 300;
}
.textAreaContainer {
  width: 95%;
  height: 200px;
}

.contactTextarea {
  height: 100%;
  line-height: 20px;
  padding-top: 12px;
}

.sendForm {
  justify-content: center;
  display: flex;
  margin-top: 10px;
  margin-bottom: 80px;
  width: fit-content;
  overflow: hidden;
}

.sendForm .redLineBtn {
  float: right;
}
.textAreaTitle {
  width: 95%;
  color: #8f9194;
}

@media screen and (max-width: 768px) {
  .inputContainer {
    width: 100%;
  }

  .redLineBtn {
    width: 125px;
  }
  #siteContent {
    width: 90%;
  }
}
