/*************/
/* Contact */
/*************/
.contact {
  height: 100vh;
  width: 100%;
  color: var(--monet-color0);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: var(--monet-color23);
}
.contact-title {
  z-index: 1;
  margin: 0;
  font-size: 70px;
  padding: 30px;
}
.contact-content-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  min-height: 300px;
  width: clamp(30px, 60%, 1000px);
  height: clamp(30px, 60%, 500px);
  z-index: 1;
}
.form {
  opacity: 0;
  display: flex;
  flex-flow: column;
  height: fit-content;
  transition: opacity 0.5s ease;
  width: clamp(30px, 80%, 1000px);
}
.form.show {
  opacity: 1;
}
.form label {
  color: var(--monet-color0);
}
.form input {
  line-height: 30px;
  font-size: clamp(10px, 20px, 40px);
}
.form input,
.form textarea {
  background-color: var(--monet-color0);
  color: var(--monet-color50);
}
.no-select {
  user-select: none;
  pointer-events: none;
}
.phone-svg {
  position: absolute;
  transition: opacity 1s ease;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.label {
  font-size: 30px;
}
textarea {
  height: 80px;
}
.path-animation {
  stroke: var(--monet-color0);
  stroke-width: 0.2;
  fill: transparent;
  transition: all 1s;
  animation: draw 3s forwards;
  z-index: 2;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.socials-title {
  padding: 30px;
}
.socials {
  display: flex;
  flex-flow: row;
  justify-content: center;
  & img {
    width: 40px;
    transition: all 200ms linear;
    position: relative;
  }
  & img:hover {
    transform: scale(1.5);
  }
}
