.contactUsMain {
  margin-top: 120px;
  gap: 30px;
}
.contactUsMainSection {
  gap: 40px;
  max-width: 650px;
}
.contactUsForm {
  gap: 25px;
  position: relative;
}
.customFieldset {
  outline: none;
  border: none;
  gap: 10px;
  position: relative;
}
.contactUsImg {
  display: none;
}
.customLabel {
  font-size: 15px;
  font-weight: 600;
  color: var(--clrF);
}
.perEditorContent {
  display: none;
}
.submitFormBtn {
  background-color: var(--blueClr1);
  padding: 7px 25px;
  margin: 10px auto 0 0;
  min-height: 38px;
  color: var(--clrF);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}
.customInput,
.customTextarea {
  width: 100%;
  min-height: 45px;
  background-color: var(--clr4B);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clrF);
  outline: none;
  border: 1px solid transparent;
  transition: border 0.3s;
  padding: 15px;
}
.customInput:focus,
.customTextarea:focus {
  border-color: var(--clrF40);
}
.customTextarea {
  min-height: 180px;
  resize: none;
}
.customInput:-webkit-autofill,
.customInput:-webkit-autofill:hover,
.customInput:-webkit-autofill:focus,
.customTextarea:-webkit-autofill,
.customTextarea:-webkit-autofill:hover,
.customTextarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--clr4B) inset !important;
  outline: none;
}
.contactUsTitle {
  font-size: 25px;
  font-weight: 600;
  color: var(--clrF);
}
.contactUsText {
  font-size: 16px;
  font-weight: 500;
  color: var(--clrF);
  line-height: 180%;
  margin-top: -15px;
  text-align: justify;
}
.alertBox {
  min-height: 35px;
  padding: 10px 15px;
  border-radius: 7px;
  background-color: var(--clrF20);
  grid-template-columns: 1fr 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clrF);
  margin-bottom: 10px;
  width: 100%;
}
.alertBox.green {
  background-color: rgba(0, 128, 0, 0.384);
}
.alertBox.red {
  background-color: #b34c3a62;
}
@media screen and (min-width: 968px) {
  .contactUsMain {
    max-width: 1100px;
    margin-top: 150px;
  }
  .contactUsMainSection {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: unset;
  }
  .contactUsLeftDiv {
    height: fit-content;
    gap: 20px;
  }
  .contactUsImg {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
