body {
  background-color: #f5f5f5;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
}

.terciary-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.only-mobile {
  display: flex;
}
.only-desktop {
  display: none;
}

.left-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 32px;
}

.left-info hr {
  border: 1px solid var(--altiGray);
  background-color: var(--altiGray);
}

.right-info {
  padding-top: 32px;
}

h1 {
  font-size: 2.25rem;
  line-height: 3rem;
  color: #f5f5f5;
  text-transform: uppercase;
}

.tag {
  font-family: grotesk;
  font-size: 0.85rem;
  color: #f5f5f5;
}

.social-share {
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-bottom: 24px;
  padding-top: 8px;
  gap: 24px;
}

.icon-hover {
  fill: white;
  transition: all 0.3s ease-in-out;
}

.icon-hover:hover {
  fill: var(--altiYellow);
  transform: scale(1.1);
}

.job-title {
  text-transform: uppercase;
}

.job-description {
  font-family: grotesk;
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: -0.1px;
  color: var(--altiGreen);
  text-align: justify;
}

.job-description li {
  text-align: justify;
}

.right-info h2 {
  padding-top: 64px;
  padding-bottom: 32px;
  color: var(--altiGreen);
}

li::before {
  content: "•";
  color: var(--altiYellow);
  display: block;
  width: 10px !important;
}

li {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}

@media (min-width: 1000px) {
  .section-wrapper {
    display: flex;
    flex-direction: row;
    gap: 64px;
  }

  .right-info {
    width: 65%;
    padding-top: 128px;
    padding-left: 80px;
  }

  .left-info {
    width: 35%;
    margin-left: -80px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .job-description {
    max-width: 800px;
  }

  .only-mobile {
    display: none;
  }
  .only-desktop {
    display: flex;
  }
}
/* FORM STYLES  */

.form-title {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-bottom: 64px;
}

.form-title h1 {
  color: var(--altiGreen);
}

.form-title p {
  color: var(--alti2Gray);
}

/* FORM STYLES */

.field-title {
  font-family: grotesk;
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: -0.5px;
  color: var(--altiGreen);
}

.form-group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 8px;
}

.field-title {
  padding-bottom: 4px;
}

.form-field-group input {
  width: 100%;
  border: 1px solid var(--altiGreen);
  padding: 6px;
  background: none;
}

.checkbox {
  font-family: grotesk;
  font-size: 14px;
}

.checkbox a {
  font-weight: 900;
}

.submit-group {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

button {
  margin-top: 16px;
  margin-bottom: 32px;
  border: none;
  cursor: pointer;
}

.form-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#altiplano-green-logo {
  width: 280px;
  margin-top: 32px;
  margin-bottom: 64px;
}

@media (min-width: 769px) {
  .form-group {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .attachment-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
  }

  .form-field-group {
    min-width: 400px;
  }

  .attachment-field {
    max-width: 50%;
  }
}
