.contact-page-main {
  padding-top: 200px;
  padding-bottom: 70px;
  background-color: var(--primary-light-grey);
}
.contact-sec2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: var(--primary-white);
  border-radius: 20px;
  padding: 50px;
}
.contact-icon {
  display: flex;
  align-items: center;
  /* justify-content: end; */
  gap: 20px;
}
.contact-icon img {
  width: 25px;
}
.contact-icon h6 {
  text-align: end;
}
.contact-page-main .container {
  display: flex;
  justify-content: space-between;
}
.contact-sec1 {
  max-width: 506px;
}
.contact-sec1 p {
  line-height: 31px;
}

.grey-color {
  color: var(--primary-grey);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 10px;
  padding-top: 20px;
}
.contact-page-container {
  max-width: 900px;
}
.contact-form {
  padding: 50px 0;
}
.contact-form form input {
  border-radius: 12px;
  border: 1px solid var(--primary-grey);
  height: 35px;
  padding-left: 10px;
}
.contact-form form textarea {
  border-radius: 12px;
  border: 1px solid var(--primary-grey);
  padding-left: 10px;
  padding-top: 10px;
}
.contact-form .form-input-one {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}

.contact-form .form-input-one input {
  width: 100%;
}
.contact-form .form-submit-button {
  width: 150px;
  height: 50px;
  transition: 1s ease;
  background-color: var(--primary-orange);
  color: var(--primary-white);
  font-size: var(--font-size-20);
  border: none;
  border-radius: 15px;
}
.contact-form .form-submit-button:hover {
  color: var(--primary-orange);
  background-color: var(--primary-light-grey);
}
.contact-form h6 {
  color: var(--primary-red);
}
input:focus {
  outline: none;
}
textarea:focus {
  outline: none;
}
.contact-form-msg-sec {
  display: flex;
  gap: 15px;
}
.contact-form-msg-sec textarea {
  width: 100%;
}
.contact-form-sub-sec {
  display: flex;
  gap: 15px;
}
.contact-form-sub-sec input {
  width: 100%;
}

.contact-form-name-sec {
  display: flex;
  gap: 15px;
}
.contact-form-name-sec input {
  width: 100%;
}
.msg-color {
  color: var(--primary-red);
}
