@import url("../../../main.css");
@import url("../navigation/navigation.css");
@import url("../footer/footer.css");

#page-content {
  width: 96%;
  background-color: var(--clean-and-serene-white);
  /* height: 100%; */
  padding: 5%;
}

.answer {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0%;
  background-color: var(--duct-tape-grey);
  border-radius: 0 0 5px 5px;
  padding: 5px;
  text-align: center;
}

#page-content #frequently-asked-questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.frequently-asked-question {
  position: relative;
}

.question {
  background-color: var(--surrender-white);
  border-radius: 5px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px;
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

.frequently-asked-question:hover .question {
  border-radius: 5px 5px 0 0;
}

#call-to-actions {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

#meetings-action {
  flex: 2.5;
  background-image: url("../../assets/map-overlay.png");
  height: 250px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10%;
}

#meeting-action-detail {
  background-color: var(--surrender-white-8o);
  border-radius: 5px;
  width: 90%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#meeting-action-button {
  background-color: var(--ninety-day-red);
  color: var(--surrender-white);
  border-radius: 5px;
  width: 30%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  font-weight: 600;
}

#meeting-action-button:hover {
  background-color: var(--ninety-day-red-hover);
}

#contact-action {
  flex: 1;
  height: 250px;
  background-color: var(--surrender-white);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10%;
}

#contact-action-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 40%;
  width: 90%;
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#contact-action-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--sixty-day-green);
  color: var(--surrender-white);
  width: 80%;
  border-radius: 5px;
  height: 15%;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  font-weight: 600;
}

#contact-action-button:hover {
  background-color: var(--sixty-day-green-hover);
}

@media (max-width: 1000px) {

  .question {
    height: min-content;
    min-height: 75px;
  }

  #frequently-asked-questions {
    grid-template-columns: repeat(1, 1fr);
  }

  #call-to-actions {
    flex-direction: column;
    height: min-content;
  }

  #meetings-action {
    flex: none;
    height: 300px;
  }

  #contact-action {
    flex: none;
  }
}

@media (max-width: 500px) {
  #meeting-action-button {
    width: 60%;
  }
}