#contact #sec1 {
  padding: 60px 0;
  background-color: #F0F0F0;
}
#contact #sec1 .faqs_wrap {
  margin: 60px auto 0;
  width: 1000px;
}
#contact #sec1 .faqs_wrap .details {
  line-height: 2;
  width: 80%;
  margin: 0 auto 20px;
}
#contact #sec1 .faqs_wrap .details .details__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1.5px solid #0064b6;
  background-color: white;
  padding: 4px 0;
}
#contact #sec1 .faqs_wrap .details .details__summary p {
  padding-left: 50px;
  color: #0064b6;
  font-weight: 600;
  position: relative;
}
#contact #sec1 .faqs_wrap .details .details__summary p::before {
  background-image: url(../img/contact/icon_Q.png);
  background-size: contain;
  content: "";
  width: 20px;
  height: 20px;
  transform: translateY(3px);
  margin-right: 10px;
  position: absolute;
  left: 20px;
  top: 3px;
}
#contact #sec1 .faqs_wrap .details .details__summary img {
  width: 20px;
  height: 10px;
  margin-right: 20px;
  transform: rotate(180deg);
}
#contact #sec1 .faqs_wrap .details .details__summary::-webkit-details-marker {
  display: none;
}
#contact #sec1 .faqs_wrap .details .details__summary img {
  transition: transform 0.3s ease;
}
#contact #sec1 .faqs_wrap .details .details__content {
  display: block;
  cursor: pointer;
  border: 1.5px solid #0064b6;
  border-top: none;
  background-color: #f5e7da;
  padding: 4px 40px 4px 0;
  transition: all 0.4s ease;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
#contact #sec1 .faqs_wrap .details .details__content p {
  padding-left: 50px;
  color: #0064b6;
  font-weight: 600;
  position: relative;

}
#contact #sec1 .faqs_wrap .details .details__content p::before {
  position: absolute;
  background-image: url(../img/contact/icon_A.png);
  background-size: contain;
  content: "";
  width: 20px;
  height: 20px;
  left: 20px;
  top: 6px;
}
#contact #sec1 .faqs_wrap .details.open .details__content {
  max-height: 500px;
  opacity: 1;
}
#contact #sec1 .faqs_wrap .details.open img {
  transform: rotate(360deg);
}
#contact #sec2 {
  padding: 60px 0 100px;
}

.contact_form{
  width: fit-content;
  margin: 60px auto 0;
}

.contact_form table{
  border-collapse: separate;
  border-spacing: 16px 5px;
}

.contact_form th{
  border-bottom: 3px solid #0064b6;
  color: #0064b6;
  position: relative;
  text-align: left;
  padding-left: 20px;
  padding-right: 60px;
  font-size: 20px;
  font-weight: 600;
}

.required{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: #0064b6;
  font-size: 12px;
  font-weight: 300;
  padding: 0 6px;
  border-radius: 10px;
}
.contact_form td{
  background-color: transparent;
  border: none;
  width: 500px;
}


.contact_form td input, .contact_form td textarea{
  background-color: #edf6fd;
  border: 1.5px solid #0064b6;
  width: 100%;
  padding-left: 4px;
  font-size: 20px;
}

.contact_form td input{
  height: 40px;
}

.submit_btn p{
  display: block;
  height: fit-content;
}
.submit_btn input{
  display: block;
  margin: 60px auto 0;
  width: 200px;
  height: 50px;
  background-color: #0064b6;
  color: white;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.notes{
  display: block;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 600;
}

.notes span{
  color: #9e5618;
}
@media(max-width:767px){
  #contact #sec1 {
  padding: 30px 20px;
}

#contact #sec1 .faqs_wrap {
  margin: 30px auto 0;
  width: 100%;
}

#contact #sec1 .faqs_wrap .details {
  width: 100%;
}

#contact #sec1 .faqs_wrap .details .details__summary p,
#contact #sec1 .faqs_wrap .details .details__content p  {
  font-size: 14px;
  letter-spacing: 0;
  padding-left: 35px;
}

#contact #sec1 .faqs_wrap .details .details__summary p::before,
#contact #sec1 .faqs_wrap .details .details__content p::before {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#contact #sec1 .faqs_wrap .details .details__summary img {
  margin-right: 10px;
}

#contact #sec2{
  padding: 30px 20px;
}
.contact_form{
  width: 100%;
  margin: 30px auto;
}

.contact_form table{
  border-spacing: 10px 5px;
}

.contact_form th{
  padding-left: 10px;
  padding-right: 26px;
  font-size: 13px;
  width: 30%;
}

.required{
  font-size: 8px;
}
.contact_form td{
  width: 70%;
}


.contact_form td input, .contact_form td textarea{
  font-size: 14px;
}

.contact_form td textarea{
  height: 160px;
}

.submit_btn input{
  margin: 30px auto 0;
  width: 160px;
  height: 40px;
  font-size: 16px;
  border-radius: 8px;
}

.notes{
  font-size: 10px;
}
}