@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%;
}

#vision {
  height: 350px;
  width: 100%;
}

#vision img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

#vision-small {
  display: none;
}


#main-content {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#column-one {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  height: 500px;
}

#helpline {
  background-color: var(--surrender-white);
  border-radius: 10px;
  flex: 1;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5%;
  padding: 5%;
  color: var(--stepwork-pencil-lead);
}

#helpline-title {
  width: 90%;
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--s);
  font-weight: 600;
}

#helpline-phone {
  width: 90%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  border-radius: 5px;
  gap: 5px;
}

#helpline-phone-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  background-color: var(--duct-tape-grey);
  align-items: center;
  height: 100%;
  border-radius: 5px;
}

#helpline-phone-text {
  flex: 4;
  background-color: var(--duct-tape-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  font-size: var(--xs);
  font-weight: 600;
}

#helpline-email {
  width: 90%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  border-radius: 5px;
  gap: 5px;
}

#helpline-email-icon {
  flex: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--duct-tape-grey);
  border-radius: 5px;
}

#helpline-email-text {
  background-color: var(--duct-tape-grey);
  flex: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  font-size: var(--xs);
  font-weight: 600;
}

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

#faq-action-title {
  width: 90%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--s);
  color: var(--stepwork-pencil-lead);
  text-wrap: nowrap;
  font-weight: 600;
}

#faq-action-detail {
  flex: 2;
  background-color: var(--duct-tape-grey);
  color: var(--stepwork-pencil-lead);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 5px 5px;
  font-weight: 300;
  text-align: center;
}

#faq-action-button {
  background-color: var(--sixty-day-green);
  flex: 1;
  color: var(--surrender-white);
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  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 */
}

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

#faq-action-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

#faq-action-button-text {
  font-weight: 600;
}

#column-two {
  flex: 2;
  height: 500px;
}

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

#contact-title {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--s);
  color: var(--stepwork-pencil-lead);
  font-weight: 600;
  /* width: 90%;
  height: 90%; */
}

#contact-form {
  flex: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 5%;
  /* height: 90%; */
}

#name {
  width: 98%;
  background-color: var(--duct-tape-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  gap: 5px;
  border-radius: 5px;
  height: 50px;
}

#name-icon {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

#name-icon path {
  fill: var(--stepwork-pencil-lead);
}

#first-name {
  flex: 5;
  border-radius: 5px;
  height: 100%;
}

#last-name {
  flex: 5;
  border-radius: 5px;
  height: 100%;
}

#first-name input {
  width: 100%;
  border: none;
  border-radius: 5px;
  outline: none;
  height: 100%;
}

#last-name input {
  width: 100%;
  border: none;
  border-radius: 5px;
  outline: none;
  height: 100%;
}

#email {
  width: 98%;
  background-color: var(--duct-tape-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  gap: 5px;
  border-radius: 5px;
  height: 50px;
}

#email-icon {
  flex: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

#email-input {
  flex: 10;
  border-radius: 5px;
  height: 100%;
}

#email-input input {
  width: 100%;
  border: none;
  outline: none;
  height: 100%;
  border-radius: 5px;
}

#textbox {
  width: 98%;
  background-color: var(--duct-tape-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  padding: 1%;
  border-radius: 5px;
}

#textbox textarea {
  width: 100%;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  border-radius: 5px;
}

#contact-button {
  background-color: var(--sixty-day-green);
  color: var(--surrender-white);
  border-radius: 5px;
  width: 30%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  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 */
}

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

#contact-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-button-text {
  font-weight: 600;
}

@media (min-width: 1001px) {

  #vision-large {
    display: block;
  }

  #vision-small {
    display: none;
  }

  #vision-extra-small {
    display: none;
  }

}

@media (max-width: 1000px) {
  #main-content {
    flex-direction: column;
  }

  #column-one {
    flex-direction: row;
    width: 100%;
  }

  #column-two {
    width: 100%;
  }

  #contact-module {
    gap: 20px;
  }

  #contact-form {
    gap: 10px;
  }

  #helpline {
    height: 220px;
    padding: 10px;
  }

  #faq-action {
    height: 220px;
    padding: 10px;
  }

  #vision-large {
    display: none;
  }

  #vision-small {
    display: block;
  }

  #vision-extra-small {
    display: none;
  }

}

@media (max-width: 800px) {
  #column-one {
    flex-direction: column;
    width: 100%;
  }

  #helpline {
    padding: 20px;
    flex: none;
  }

  #faq-action {
    padding: 20px;
    flex: none;
  }

  #faq-action-button {
    height: 50px;
    flex: none;
  }

  #vision-small {
    display: none;
  }

  #vision-large {
    display: none;
  }

  #vision-extra-small {
    display: block;
  }
}