/* Contact section */

.contact {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e7e7e7;
  padding: 6rem;
  border-bottom: 1px solid #222222;
}

.contact-title {
  position: relative;
  white-space: nowrap;
}

.contact-title-background {
  position: absolute;
  top: 38px;
  width: 324px;
  left: -10px;
  background-color: #e489007e;
  border: 1px solid rgb(58, 58, 58);
  border-radius: 10px;
  height: 22px;
  z-index: 1;
}

.contact h1 {
  position: relative;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  color: transparent;
  -webkit-text-stroke: 1px rgb(58, 58, 58);
  margin-bottom: 40px;
  z-index: 10;
  text-align: center;
}

.med-mobile-break {
  display: none;
}

.small-mobile-break {
  display: none;
}

.contact-content {
  line-height: 2;
  color: #222222;
  text-align: center;
}

.contact-link {
  color: #df8600;
  position: relative;
  transition: all 100ms ease;
  text-decoration: none;
}

.contact-link::after {
  content: "";
  position: absolute;
  width: 106%;
  height: 1px;
  background-color: black;
  top: 50%;
  left: -3%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 450ms cubic-bezier(1, 0, 0, 1);
}

.contact-link:hover::after {
  transform: scaleX(1);
  transition: transform 450ms cubic-bezier(1, 0, 0, 1);
}

/* .contact-link:hover {
    text-shadow: 0px -12px #df8600, 0px 12px #df8600;
    transition: all 100ms ease;
  } */

.contact-email {
  display: flex;
  position: relative;
  margin-bottom: 40px;
  cursor: pointer;
  align-items: center;
  height: 80px;
  width: auto;
  border: 1px solid #222222;
  width: 40%;
  overflow: hidden;
  min-width: 343px;
  border-radius: 10px;
}

.email-hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 200ms ease;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy-text {
  opacity: 0;
  color: #e7e7e7;
  transition: opacity 200ms ease;
  font-size: 1.3rem;
}

.email-icon {
  padding: 0 40px;
  border-right: 1px solid #222222;
  box-sizing: border-box;
  height: 100%;
  align-items: center;
  display: flex;
}

.email-address {
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
  transition: opacity 200ms ease;
}
