header section {
  position: relative;
  height: 100vh;
}

.header-text {
  width: 50%;
  padding-left: 5%;
  position: absolute;
  bottom: 60%;
}
.header-text p {
  font-size: 20px;
  width: 70%;
}
.header-design {
  background-color: #b92c00;
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 12%;
}

.circle {
  width: 120px;
  height: 120px;
  position: absolute;
  background: rgba(217, 217, 217, 0.6);
  border-radius: 50%;
}
.circle-1 {
  bottom: 30px;
  left: -50px;
}

.circle-2 {
  top: 10px;
  left: 30%;
}

.circle-3 {
  bottom: 10px;
  left: 60%;
}
.circle-4 {
  right: 3%;
  top: 30%;
}

.form {
  width: 40%;
  margin: auto;
  padding: 20px;
  background-color: #f3f3f3;
  height: 75%;
  position: absolute;
  top: 5%;
  right: 5%;
  background: #f3f3f3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
form {
  margin-top: 20px;
}
.input-label {
  visibility: hidden;
  font-size: var(--fs-500);
  width: 100%;
  display: inline-block;
  margin: 0 0 0 10%;
  text-align: left;
}
label.active {
  display: inline-block;
  font-size: var(--fs-500);
  width: 100%;
  visibility: unset;
}
.form-struc {
  display: flex;
  width: 100%;
}
.form-struc div {
  width: 50%;
  margin: 10px 0;
  text-align: center;
}
.form-struc div input {
  width: 80%;
  font-size: var(--fs-500);
  height: 50px;
  outline: none;
  border: none;
  background-color: #f3f3f3;
  border-bottom: 1px solid #000000;
  margin: auto;
}
.text-area {
  width: 100%;
  /* margin: 10px 0; */
  margin-top: 20px;
  text-align: center;
}
.text-area textarea {
  width: 90%;
  height: 260px;
  resize: none;
  outline: none;
  border: none;
  background-color: #f3f3f3;
  border-bottom: 1px solid #000000;
  margin: auto;
  font-size: var(--fs-500);
}
.text-area label {
  text-align: left;
}
.text-area_label {
  margin: 0 0 10px 5%;
}
.submit {
  margin-top: 20px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
}

.submit div {
  /* max-width: 50px; */

  border-radius: 10px;
  height: 80px;
  overflow: hidden;
}

.submit button {
  margin-right: 1rem;
  display: inline-block;
  /* width: 90%; */
  /* width: 50px; */
  padding: 15px 30px;
  font-weight: 500;
  height: 50px;
  font-size: var(--fs-500);
  background-color: #008db9;
  border: none;
  color: #f3f3f3;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
}

/* DesignIT social media */

.designIT-social-media .social-media {
  width: 90%;
  margin: auto;
}
.designIT-social-media .social-media h1 {
  margin: 30px 0;
  text-align: center;
}
.designIT-social-media .social-media-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.designIT-social-media .social-media-list div {
  width: 25%;
  max-width: 350px;
  min-width: 250px;
  height: 400px;
  padding: 1rem;
  background-color: #008db9;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
  color: white;
  margin: 1rem;
}
.designIT-social-media .social-media-list div:nth-of-type(2) {
  background-color: #b92c00;
}
.designIT-social-media .social-media-list div img {
  max-width: 100px;
}

/* Map */

#map {
  width: 100%;
  height: 500px;
  margin: 30px 0;
}
.map h1 {
  width: 100%;
  text-align: center;
  margin: auto;
}
.popup {
  background-color: #f3f3f3;
  width: 100px;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

/* FAQ */
.designit-faq {
  width: 90%;
  margin: 30px auto;
}

.faq-contents {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.faq-designs {
  width: 40%;
}
.faq-img,
.faq-img img {
  max-width: 500px;
  width: 100%;
}

/* QUESTION TITLE + ARROW */

.questions {
  background-color: #008db9;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 50%;
}
.question {
  border-bottom: 0.5px solid #bff8ff;
  padding: 1rem 0.6;
}
.questions__title {
  text-align: center;
}

.question__title {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  transition: color 0.15s ease-in-out;
}

.question__title:hover {
  cursor: pointer;
}

.question__title::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  position: absolute;
  bottom: 0;
}

.question__button {
  border: 0;
  background: inherit;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
}

/* ANSWERS */

.question__text {
  /* display: none; */
  position: relative;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: visibility 0s, opacity 0.5s linear;
}

.question__text:before {
  content: "";
  display: block;
  width: 112%;
  height: 1px;
  position: absolute;
  bottom: 0;
}

/* TOGGLE STYLES */

.show-text .question__text {
  display: block;
  transition: all 0.5s ease-in-out;
  line-height: 1.7;
  width: 85%;
  padding-block-end: 1rem;
  visibility: visible;
  opacity: 1;
  height: unset;
}

.show-text .question__button {
  transform: rotate(180deg);
}

.show-text .question__title {
  font-weight: 700;
}

.show-text .question__title::after {
  display: none;
}

/* Spinner */


@media (min-width: 58rem)  {
  @media (max-height: 900px) {
    .text-area textarea {
      height: 150px;
    }
  }
  @media (max-height: 700px) {
    .text-area textarea {
      height: unset;
    }
  }
}

@media (max-width: 58rem) {
  .contact-header {
    width: 90%;
    margin: auto;
    height: unset;
  }
  .header-design {
    display: none;
  }

  .header-text {
    width: 100%;
    position: unset;
    padding-left: 0;
    margin: auto;
    margin-bottom: 20px;
  }
  .header-text p {
    width: 100%;
    text-align: center;
  }

  .form {
    position: unset;
    width: 100%;
    height: fit-content;
  }
  .designIT-social-media .social-media-list {
    overflow-x: scroll;
    justify-content: unset;
  }
  .social-media-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
  }

  .social-media-list {
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }

  /* FAQ */
  .faq-contents {
    flex-direction: column;
    margin: auto;
  }
  .faq-contents .faq-designs {
    width: 100%;
    margin: auto;
  }
  .faq-contents .faq-designs p {
    text-align: center;
  }
  .faq-contents .faq-designs .faq-img {
    width: 100%;
  }

  .questions {
    width: 92%;
    padding: 1rem;
  }

.faq-img, .faq-img img {
    margin: auto;
   }
}

@media (max-width: 36rem) {
  .form-struc {
    flex-direction: column;
  }
  .form-struc div {
    width: 100%;
  }
  .form-struc div input {
    width: 92%;
  }

  .input-label {
    margin: 0 0 0 12px;
}
}

@media (max-width: 32rem) {
}
