.contact-sec {
  margin-bottom: 90px;
}

.contact-sec .contact-sec-content {
  background-color: #fff;
  border-radius: 40px;
  padding: 34px;
  position: relative;
  z-index: 1;
}

.contact-sec .contact-sec-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 770px;
  height: 100%;
  border-radius: 40px;
  background-image: url("../../../public/images/shade-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-sec .contact-sec-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 770px;
  height: 100%;
  border-radius: 40px;
  background-image: url("../../../public/images/shade-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-sec-left h4 {
  color: var(--theme-color);
  font-weight: 400;
  font-size: 50px;
}

.contact-sec-left h3 {
  color: #e4476b;
  font-weight: 400;
  font-size: 50px;
}

.contact-sec-left p {
  color: var(--theme-color);
}

.contact-info li {
  margin-bottom: 40px;
}

.contact-info li a {
  color: var(--theme-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: var(--theme-gradient);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.contact-social li a {
  color: var(--theme-color);
  background: unset;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.contact-sec-left {
  padding: 55px 0 0;
}

.contact-form-right {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 20px;
}

.contact-form-right h2 {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 60px;
  margin-bottom: 20px;
}

.contact-form-right form input {
  width: 100%;
  height: 30px;
  border: unset;
  border-bottom: 1px solid #a9a9a9;
  color: #00000080;
  outline: none;
  margin-bottom: 50px;
}

.contact-form-right form textarea {
  width: 100%;
  height: 100px;
  border: unset;
  border-bottom: 1px solid #a9a9a9;
  color: #00000080;
  outline: none;
  margin-bottom: 20px;
  resize: none;
}

.contact-form-right form button {
  background: var(--theme-gradient);
  color: var(--white-color);
  border-radius: 10px;
  outline: none;
  border: none;
  width: 100%;
  height: 55px;
  font-size: 18px;
  font-weight: 500;
}
