#contact {
  width: 100%;
  height: fit-content;
  background-color: var(--bg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-body);
  color: var(--text);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 50px;
  align-items: flex-start;
  justify-content: space-evenly;
  padding-top: 100px;
  padding: 50px;
  margin-bottom: 0px;
  opacity: 0;
  animation-name: none;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  transition: all 4s ease;
}

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

  align-items: flex-start;
  width: 45%;
  height: 100%;
  align-self: self-start;
  padding: 10px;
  gap: 10px;
}

h5 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-heading);
  color: var(--accent-2);
}

.contact-container p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-heading);
  color: var(--accent);
}
form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  border: 1px solid var(--line);
  border-radius: 15px;
  width: 100%;
  height: fit-content;
  padding: 15px 5px;
  gap: 5px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 80%;
}
.form-group label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-heading);
  color: var(--text);
}
.form-group input {
  background-color: transparent;
  padding: 20px 50px;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 5px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: var(--text);
  transition: all 1s ease;
}
.form-group input:hover {
  border-bottom: 1px solid var(--accent-2);
}
.form-group input::placeholder {
  position: absolute;
  left: 10px;
}
.form-group input:focus,
#message:focus {
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-shadow: var(--shadow);
}
.full {
  width: 83%;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#message {
  width: 100%;
  background-color: transparent;
  color: var(--text);
  border: none;
  border-bottom: 1px solid var(--accent-2);
}

.btn-submit {
  padding: 15px;
  width: 85%;
  background-color: var(--accent-2);
  border: none;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-heading);
  color: var(--text);
  cursor: pointer;
  transition: all 1s ease;
}

.btn-submit:hover {
  background-color: var(--text);
  color: var(--accent-2);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 17px;
  width: 45%;
  gap: 50px;
  margin-left: 90px;
}

h6 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-heading);
  color: var(--accent-2);
}
.contact-info-side p {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-heading);
  color: var(--accent);
}
.contact-info-side ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-self: flex-start;
  list-style: none;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-heading);
  color: var(--accent-2);
  padding: 0px;
}
.contact-info-side ul li {
  background-color: var(--bg);
  padding: var(--gutter);
  border-radius: var(--radius);
  border-left: 5px solid var(--accent-2);
  cursor:default;
  transition: all var(--speed) var(--easing);
}
.contact-info-side ul li:hover {
  transform: translateX(10px);
  background-color: var(--line);
  box-shadow: var(--shadow);
}
