body {
  background-color: var(--deep-black);
}

aside {
  padding-top: 5rem;
  border-right: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
  margin-bottom: 1rem;
  align-content: start;
}

aside .rounded-date {
  justify-self: start;
  align-self: start;
  padding: 1rem 2rem;
}

main {
  border-bottom: 1px solid var(--cream);
  margin-bottom: 1rem;
  color: var(--cream);
}

main > section {
  padding: 5rem calc(100vw / 36) 1rem;
}

.about-intro {
  padding: 5rem calc(100vw / 36) 1rem;
}

.about-intro h3 {
  font-weight: 400;
}

.what-we-stand {
  padding-top: 0rem;
}

.heading-3 {
  color: inherit;
}

.what-we-stand .developments {
  margin-left: 0;
  padding-left: 0;
}

.what-we-stand .developments li {
  border-left: 3px solid white;
  padding-left: 2rem;
}

.what-we-stand .developments li:first-child {
  padding-top: 0;
}

.what-we-stand .developments li:last-child {
  border-left: 3px solid white;
}

.what-we-stand .developments li:last-child::after {
  content: '';
  display: block;
  position: absolute;
  left: -3px;
  top: 10px;
  width: 3px;
  height: calc(100% - 10px);
  background-color: var(--deep-black);
  z-index: 2;
}

.what-we-stand .developments li::before {
  left: -10px;
  z-index: 3;
}

.what-we-stand .developments li:not(:last-child):not(:first-child)::before {
  top: -8px;
}

.what-we-stand .developments li:first-child::before {
  top: 0;
}

.what-we-stand .developments li:last-child::before {
  top: -10px;
}

.what-we-stand .developments p {
  margin: 0;
  padding-bottom: 1em;
}

.what-we-stand .developments h3,
.what-we-stand .developments p {
  margin: 0;
}
.what-we-stand .developments h3 {
  margin-bottom: 1em;
}

.on-your-mind form {
  display: grid;
  grid-template-rows: repeat(4, 4rem) 6rem 2rem max-content;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1em;
  grid-template-areas:
  "name name"
  "email email"
  "region city"
  "subject subject"
  "story story"
  "file file"
  "others submit";
  grid-column-gap: 8px;
  margin-bottom: 2rem;
}

.on-your-mind form input {
  padding-left: 1em;
  font-weight: 300;
}

.on-your-mind form textarea {
  padding: 2em 1em;
  font-weight: 300;
}

.on-your-mind form input::placeholder,
.on-your-mind form textarea::placeholder {
  padding-left: 1em;
  text-transform: uppercase;
}

.on-your-mind form input[type="submit"] {
  border: none;
  background-color: var(--green);
  border-radius: 16px;
  text-transform: uppercase;
  justify-self: end;
  align-self: center;
  padding: 0.5em 2em;
}

.on-your-mind input[name="fullname"] { grid-area: name; }
.on-your-mind input[type="email"] { grid-area: email; }
.on-your-mind input[name="city"] { grid-area: city; }
.on-your-mind input[name="region"] { grid-area: region; }
.on-your-mind input[name="subject"] { grid-area: subject; }
.on-your-mind textarea { grid-area: story; }
.on-your-mind input[type="submit"] { grid-area: submit; justify-self: end;}

.on-your-mind #file {
  grid-area: file;
  color: var(--cream);
  cursor: pointer;
}

.on-your-mind #file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}

.on-your-mind #file span {
  font-weight: 300;
}

.on-your-mind fieldset {
  grid-area: others;
  border: none;
  margin: 0;
  padding: 0;
}

.on-your-mind fieldset label {
  display: block;
  font-weight: 300;
}

.on-your-mind fieldset label:first-child {
  margin-bottom: 1em;
}

.on-your-mind fieldset input[type="checkbox"] {
  border-color: var(--cream);
  color: var(--cream);
  font-weight: 300;
}

@media(max-width: 768px) {
  aside,
  main {
    border: none;
  }
  aside {
    border-bottom: 1px solid var(--cream);
  }
  main > section,
  .about-intro {
    padding: 3rem 0 1rem;
  }

  .on-your-mind form {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr) 6rem repeat(3, 1fr);
    grid-template-areas:
      "name"
      "email"
      "region"
      "city"
      "subject"
      "story"
      "file"
      "others"
      "submit";
  }

  .on-your-mind form input[type="submit"] {
    justify-self: stretch;
    padding: 1em;
  }
}
