/* ========= contact us css start ========== */
.contact-us-section {
  margin-top: 100px;
  max-width: 990px;
  width: 100%;
  margin-bottom: 50px;
}

.contact-us-section .contact-top-section {
  margin: 5px 0;
}

.contact-us-section .contact-page-content {
  padding: 5px 0;
}

.contact-us-section h1 {
  text-align: center;
  font-size: 40px;
  color: var(--text-primary--);
  font-weight: 800;
}

.contact-us-section .contact-us-card {
  background-color: var(--text-white--);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  padding: 10px 20px 15px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.contact-us-section .contact-us-card:hover {
  border: 1px solid var(--bg-primary--);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-us-section .contact-us-card .contact-text-left {
  text-align: left;
}

.contact-us-section .contact-us-card .help-line {
  color: var(--text-secondary--);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.contact-us-section .contact-us-card .help-line span {
  font-weight: 900;
  color: var(--text-green--);
}

.contact-us-section .contact-us-card .help-line a {
  font-weight: 900;
  color: var(--text-green--);
  text-decoration: underline;
}

.contact-us-section .contact-us-card .help-line a:hover {
  background-color: var(--light-green--);
}

.contact-us-section .contact-us-card .help-line .another-phone {
  font-weight: 800;
  color: var(--text-green--);
}

.contact-us-section .contact-us-card a button {
  cursor: pointer;
  padding: 15px 20px;
  font-size: 18px;
  background-color: var(--bg-primary--);
  color: var(--text-white--);
  border: 0;
  outline: 0;
  border-radius: 8px;
}

.contact-us-section .contact-us-card p {
  color: var(--text-secondary--);
  font-size: 16px;
  font-weight: 800;
}

.contact-us-section .contact-address-card .address-txt {
  color: var(--text-secondary--);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 24px;
  margin-bottom: 5px;
}

.contact-us-section .contact-address-card {
  background-color: var(--text-white--);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  padding: 10px 20px 5px;
  margin: 0 auto;
}

.contact-us-section .contact-address-card:hover {
  border: 1px solid var(--bg-primary--);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-us-section .contact-address-card .address-txt span {
  color: var(--text-primary--);
  font-weight: 900;
}

.contact-us-section .contact-address-card .address-txt a {
  color: var(--text-green--);
  text-decoration: underline;
}

.contact-us-section .contact-address-card .address-txt a:hover {
  background-color: var(--light-green--);
}
/* ========= contact us css end ========== */

/* ========= contact form css start ========== */
.contact-form-section {
  max-width: 990px;
  width: 100%;
  margin-bottom: 100px;
}

.contact-form-section h3 {
  text-align: center;
  font-size: 40px;
  color: var(--text-primary--);
  font-weight: 800;
}

.contact-form-section form label {
  font-size: 16px;
  color: var(--text-secondary--);
  font-weight: 600;
}

.contact-form-section form label span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary--);
}

.contact-form-section form label sup {
  color: red;
}

.contact-form-section form input::placeholder,
.contact-form-section form textarea::placeholder {
  color: var(--text-secondary--);
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.contact-form-section form input,
.contact-form-section form textarea {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 4px 15px;
  background-color: #f4f4f4;
  border-radius: 5px;
  line-height: 25px;
  outline: 0;
  border: 1px solid #e6e6e6;
  width: 100%;
  font-size: 16px;
  color: var(--text-primary--);
  font-weight: 600;
}

.contact-form-section form select {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 8px 15px;
  background-color: #f4f4f4;
  border-radius: 5px;
  line-height: 25px;
  outline: 0;
  border: 1px solid #e6e6e6;
  width: 100%;
  font-size: 15px;
  color: var(--text-primary--);
  font-weight: 600;
  cursor: pointer;
}

.contact-form-section form .agreement-field {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 15px;
}

.contact-form-section form .agreement-field input[type="checkbox"] {
  width: 15px;
}

.contact-form-section form .agreement-field label a {
  color: var(--text-green--);
  text-decoration: underline;
}

.contact-form-section form .agreement-field label a:hover {
  background-color: var(--light-green--);
}

.contact-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.contact-btns .submit-form-btn {
  min-width: 200px;
}

.contact-btns .submit-form-btn .submit-btn {
  cursor: pointer;
  background-color: var(--bg-secondary--);
  width: 100%;
  height: 65px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary--);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
}

.contact-btns .submit-form-btn .submit-btn:hover {
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: var(--bg-primary--);
  color: var(--text-white--);
}

.contact-btns .conditions-btn {
  min-width: 300px;
}

.contact-btns .conditions-btn a {
  text-decoration: none;
  width: 100%;
  height: 65px;
}

.contact-btns .conditions-btn .terms-btn {
  background: var(--bg-primary--);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.contact-btns .conditions-btn .terms-btn:hover {
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: var(--bg-secondary--);
  color: var(--text-primary--);
}
