.email-contact-section {
  padding: 80px 0;
  background-color: rgba(46, 84, 235, 1) !important;
  background: linear-gradient(90deg, rgba(95, 152, 240, 0.4) 14.69%, rgba(46, 84, 235, 1) 34.33%);
  color: #ffffff;
}


.contact-wrapper {
  display: flex;
  gap: 80px;
  align-items: end;
  justify-content: space-between;
}

.contact-left {
  width: 48%;
  max-width: 550px;
}

.contact-heading {
  font-family: "playfair display", serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 54px;
  line-height: 55.6px;
  margin-bottom: 26px;
  margin-top: 0px;

}

.contact-description {
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0%;
  margin: 0;
}

.contact-right {
  width: 45%;
  max-width: 470px;
}

.contact-items {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.contact-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.7;

}

.contact-email:not(.contact-button) {
  font-weight: 500;
  font-size: 18px;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  width: fit-content;
}

.contact-email:not(.contact-button)::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  will-change: transform;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-email.contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #222222;
  padding: 12px 4px;
  max-width: 192px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 200px;


}

.contact-email.contact-button:hover {
  opacity: .8;

}

.contact-email:not(.contact-button):hover {
  opacity: 0.8;
}

.contact-email:not(.contact-button):hover::after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

@media (max-width: 968px) {


  .contact-right {
    justify-content: flex-start;
  }

  .contact-items {
    gap: 32px;
  }

  .contact-wrapper {
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
    max-width: 550px;
  }

  .contact-right {
    width: 100%;
    max-width: 470px;
  }

  .contact-items {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .contact-item {

    gap: 6px;
  }

  .contact-label {
    font-weight: 300;
    font-size: 14px;
    line-height: 22.4px;
  }

  .email-contact-section {
    padding: 50px 0;
  }

  .contact-heading {
    font-size: 35px;
    line-height: 36px;
  }

  .contact-description {
    font-size: 18px;
    line-height: 25px;
  }


}