@import "./colors.css";
@import "./general.css";
@import "./header.css";
@import "./footer.css";
#content {
  width: var(--content-width);
  /* padding: 0 3em; */
  /* margin: 0 auto 5em; */
  background-color: var(--bg0_hard);
  color: var(--fg1);
  margin: 0 auto;
  margin-bottom: 5rem;
}
#content section {
  font-size: 1.2rem;
  padding: 0 1rem;
}
#content section#intro h1 {
  padding-top: 3rem;
  font-size: 2.3rem;
  text-align: center;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--fg1);
  margin-bottom: 1.5rem;
}
#content section#intro h2 {
  font-size: 1.35rem;
  text-align: center;
}
#content section#intro h3 {
  margin-top: 3rem;
  text-align: center;
}
#content section#overview {
  margin-top: 6rem;
  margin-bottom: 15rem;
}
#content section#overview p {
  margin: 0;
  margin-top: 2rem;
}
#content section#overview .text {
  text-align: justify;
}
#content section#overview #services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
#content section#overview #services p {
  margin-top: 60px;
}
#content section#overview #services ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 15px;
}
#content section#overview #services ul .fa-solid {
  color: var(--green);
}
#content section#overview #techstack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content section#overview #techstack #img-group {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
}
#content section#overview #techstack #img-group img {
  margin: 1rem;
  width: 100px;
}
#content .call-to-action {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
#content .call-to-action button {
  position: relative;
  transition: 1s;
  background-color: var(--yellow);
  padding: 10px 18px;
  font-size: 1.3rem;
  user-select: auto;
  border: 4px solid var(--orange_dark);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}
#content .call-to-action button::before, #content .call-to-action button::after {
  content: "";
  background: var(--yellow);
  transition: 0.3s;
  position: absolute;
  /* z-index: -1; */
}
#content .call-to-action button::before {
  height: calc(100% + 8px);
  width: calc(100% + 8px);
}
#content .call-to-action button::after {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}
#content .call-to-action button:hover::before {
  width: 0px;
}
#content .call-to-action button:hover::after {
  height: 0px;
}
#content .call-to-action button i {
  color: #282828;
  z-index: 2;
}

@media screen and (max-width: 800px) {
  #content section#overview {
    margin-bottom: 10rem;
  }
  #content section#overview p {
    margin: 0;
    margin-bottom: 2rem;
  }
  #content section#overview #services p {
    margin-bottom: 1rem;
  }
  #content section#overview #services ul {
    margin-left: -5rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #content section#overview #services p {
    margin-top: 40px;
  }
  #content section#overview #techstack #img-group {
    grid-template-columns: auto auto auto;
  }
  #content section#overview #techstack #img-group img {
    width: 80px;
  }
}
