*{
  padding: 0;
  margin: 0;
}

.main-wrapper {
  width: 100%;
  height: 700px;
  position: relative;

  
}
.contact-wrapper {
  position: absolute;
  width: 100%;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.contact-hero {
  width: 100%;
  height: 159px;
  background-image: url("/assets/images/landing/common/privacy-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-contents-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0px 50px;
  box-sizing: border-box;
}
.contact-details {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 29px;
}
.contact-details h1 {
  font-family: "PlusJakartaSans-ExtraBold";
  font-size: 48px;
  line-height: 28px;
  line-height: 140%;
  color: #252525;
}
.contact-discription {
  font-family: "PlusJakartaSans-Regular";
  font-size: 20px;
  color: #252525;
  line-height: 140%;
}
.contact-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #252525;
}
.contact-contacts p {
  font-family: "PlusJakartaSans-Regular";
  font-size: 20px;
  line-height: 140%;
}
.contact-contacts img:first-of-type {
  width: 22px;
  height: 18px;
}
.contact-contacts img:last-of-type {
  width: 21px;
  height: 22px;
}
.form-wrapper {
  width: 100%;
 
  max-width: 660px;
  padding: 20px;
  border: 1px solid #EDEDED;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: #FFFFFF;
}



fieldset {
  border: none;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  gap: 12px;

}
label {
  font-family: "PlusJakartaSans-Regular";
  font-size: 16px;
  color: #252525;
  line-height: 140%;
}
.form-wrapper form {
  width: 100%;
}
.form-group input {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  font-family: "PlusJakartaSans-Regular";
  font-size: 16px;
  color: #252525;
  box-sizing: border-box;

  outline: none;
}
.form-group input:focus {
  outline: 0px;
}
.form-group textarea {
  width: 100%;
  height: 112px;
  padding: 12px 24px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  font-family: "PlusJakartaSans-Regular";
  font-size: 16px;
  color: #252525;
  box-sizing: border-box;
  outline: none;
  resize: none;
}
.cnt-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  background: #1452ca;
  border: 0px;
  color: #fdfdfd;
  font-size: 16px;
  font-family: "PlusJakartaSans-SemiBold";
  border-radius: 8px;
  height: 64px;
}
.contacts-contact-mobile {
  display: none;
}
.contacts-contact-desktop {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media only screen and (max-width: 750px) {
  .contact-details h1 {
    font-size: 24px;
  }
  .contact-discription {
    font-size: 14px;
  }
  .contacts-contact-desktop {
    display: none;
  }
  .contacts-contact-mobile {
    display: block;
  }
  .contact-contents-wrapper {
    flex-direction: column;
  }
  .main-wrapper {
    height: 800px;
  }
  .contact-wrapper{
    top: 40px;
  }
  .contact-hero {
    height: 102px;
  }
  .contact-contents-wrapper {
    padding: 0px 16px;
    box-sizing: border-box;
  }
  .form-wrapper {
    box-sizing: border-box;
    border: 0;
    padding: 0;
  }
  .form-wrapper form {
    box-sizing: border-box;
  }
  fieldset {
    padding: 0%;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-details {
    gap: 12px;
  }
}
