@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

.formbold-mb-5 {
  margin-bottom: 20px;
}
.formbold-pt-3 {
  padding-top: 12px;
}
.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.formbold-form-wrapper {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin: 0 auto;
  max-width: 500px;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  background: white;
}
.formbold-form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  margin-bottom: 12px;
}
.formbold-form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.formbold-form-input {
  width: 90%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #6a64f1;
  color: white;
  cursor: pointer;
}
.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}
.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.w-full {
  width: 100%;
}

.dropdown-contact {
  position: relative;
  width: 100%;
  margin-top: 50px;
  display: inline-block;
}
.dropdown-contact button {
  font-size: 20px;
  background-color: aqua;
  border: none;
  width: 300px;
  height: 50px;
  border-radius: 10px;
}

.dropdown-content-contact {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 500px;
  border-radius: 10px;
  overflow-y: auto;
  min-height: 100px;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content-contact label {
  display: block;
  padding: 5px 10px;
  cursor: pointer;
}

.dropdown-content-contact label:hover {
  background-color: #ddd;
}

.show-contact {
  display: block;
}

.selected-items {
  width: 500px;
  min-height: 50px;
  margin-top: 5px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.selected-items div {
  margin-bottom: 5px;
}

.contact-page {
  position: absolute;
  height: 1000px;
  background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.contact-left-container {
  position: absolute;
  margin-top: 80px;
  width: 40%;
  margin-left: 10%;
  height: 600px;
}

.contact-left-heading {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(60deg, #007fff, #01000a);
  background-clip: text;
  letter-spacing: 1.75px;
  margin-top: 50px;
  color: transparent;
  text-align: center;
}

.contact-left-list {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 50px;
  margin-left: 100px;
  width: 300px;
  font-family: "Poppins", sans-serif;
  color: #717882;
  text-align: center;
}

.contact-left-list span {
  font-family: "Poppins", sans-serif;
  color: black;
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 20px;
}

.contact-left-list img {
  height: 20px;
  width: 20px;
}

.contact-form-full {
  position: absolute;
  width: 40%;
  margin-top: 30px;
  margin-left: 50%;
}

.contact-footer-container {
  position: absolute;
  margin-top: 900px;
  width: 100%;
}

@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}

/* Css media Queries */

@media only screen and (max-width: 600px) {
  .contact-left-container {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .contact-left-heading {
    font-size: 20px;
    font-weight: 600;
  }

  .contact-left-list {
    margin-left: 0;
    width: 100%;
    margin-top: 40px;
  }

  .contact-page {
    height: 1500px;
  }

  .contact-form-full {
    margin-top: 400px;
    width: 100%;
    margin-left: 0;
  }

  .contact-footer-container {
    margin-top: 1200px;
    position: absolute;
    width: 100%;
  }
}

@media only screen and (min-width: 600px) and (max-width: 959px) {
  .contact-left-container {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .contact-left-heading {
    font-size: 15px;
    font-weight: 600;
  }

  .contact-left-list {
    margin-left: 0;
    width: 100%;
    margin-top: 40px;
  }

  .contact-page {
    height: 1500px;
  }

  .contact-form-full {
    margin-top: 400px;
    width: 100%;
    margin-left: 0;
  }

  .contact-footer-container {
    margin-top: 1200px;
    position: absolute;
    width: 100%;
  }
}
