.contact-sec {
  padding: 160px 0;
  background-image: url("../../../public/images/contact.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.contact-sec::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url("../../../public/images/left-golden.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 333px;
  height: 1015px;
  left: 0;
  top: 0;
}

.contact-sec::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url("../../../public/images/right-golden.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 333px;
  height: 1015px;
  bottom: 0;
  right: 0;
}

.contact-sec .contact-sec-content {
  border-radius: 12px;
  padding: 34px;
  position: relative;
  z-index: 1;
  background: #f6d7b81a;
  /* border-top: 2px solid #9fd815;
  border-bottom: none;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-image: linear-gradient(180deg, #9fd815 0%, rgba(159, 216, 21, 0) 100%);
  border-image-slice: 1;
  border-image-source: linear-gradient(
    180deg,
    #9fd815 0%,
    rgba(159, 216, 21, 0) 100%
  );
  border-image-outset: 0;
  border-image-repeat: stretch; */
}

.contact-sec .contact-sec-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(180deg, #f8c18b 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-sec-left h4 {
  color: var(--theme-color);
  font-weight: 400;
  font-size: 50px;
}

.contact-sec-left h3 {
  color: #f8c18b;
  font-weight: 400;
  font-size: 60px;
  font-family: "DM Serif Text", serif;
  font-style: italic;
}

.contact-sec-left h3 span {
  color: var(--theme-color);
}

.contact-sec-left p {
  color: var(--white-color);
  font-style: italic;
}

.contact-info li {
  margin-bottom: 40px;
}

.contact-info li a {
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
}

.contact-sec-left .contact-info {
  padding: 0;
  list-style-type: none;
  margin-top: 40px;
}

.contact-social {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
}

.contact-social li a:hover {
  color: var(--white-color);
  background: #f8c18b;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.contact-social li a {
  transition: all ease 0.3s;
  color: var(--theme-color);
  background: unset;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.contact-form-right {
  background: linear-gradient(180deg, #f8c18b 0%, #f6d7b8 100%);
  padding: 25px 30px;
  border-radius: 20px;
}

.contact-form-right h2 {
  color: var(--black-color);
  font-weight: 500;
  font-size: 60px;
  margin-bottom: 20px;
  font-style: italic;
}

.contact-form-right h2 span {
  color: var(--theme-color);
}

.contact-form-right form input {
  width: 100%;
  height: 30px;
  border: unset;
  border-bottom: 1px solid var(--black-color);
  color: var(--black-color);
  background: unset;
  outline: none;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-style: italic;
}

.contact-form-right form textarea {
  width: 100%;
  height: 100px;
  border: unset;
  border-bottom: 1px solid var(--black-color);
  color: var(--black-color);
  background: unset;
  outline: none;
  margin-bottom: 20px;
  resize: none;
  padding-bottom: 10px;
  font-style: italic;
}

.contact-form-right form button {
  background: linear-gradient(180deg, #373737 0%, #000000 100%);
  color: #f6d7b8;
  border-radius: 5px;
  outline: none;
  border: none;
  width: 100%;
  height: 55px;
  font-size: 18px;
  font-weight: 500;
}

.contact-social li a:hover svg {
  fill: #000;
}

@media (max-width: 1366px) {
  .contact-sec {
    padding: 70px 0px;
  }

  .contact-sec-left h3 {
    font-size: 55px;
  }
}

@media (max-width: 428px) {
  .contact-sec-left h3 {
    font-size: 44px;
  }

  .contact-sec .contact-sec-content {
    padding: 10px;
  }

  .contact-form-right h2 {
    font-size: 44px;
  }

  .contact-sec::before {
    display: none;
  }
}

@media (max-width: 390px) {
  .contact-sec-left h3 {
    font-size: 35px;
  }

  .contact-form-right {
    padding: 15px 15px;
  }

  .contact-form-right h2 {
    font-size: 33px;
  }

  .contact-sec-left p {
    font-size: 14px;
  }
}
