/* hero stuff */
.about-hero-text-div {
  margin-left: 7rem;
  margin-top: 5rem;
  font-size: 1.5rem;
  max-width: 70rem;
}

.about-hero-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9rem;
}

.about-hero-container {
  padding-bottom: 10rem;
}

@media screen and (max-width: 1650px) {
  .about-hero-text-div {
    max-width: 64rem;
  }
}

@media screen and (max-width: 1517px) {
  .about-hero-items {
    justify-content: center;
    text-align: center;
  }
  .about-hero-text-div {
    margin-left: 0;
  }
}

@media screen and (max-width: 960px) {
  .about-hero-text-div {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 666px) {
  .about-hero-text-div {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .about-hero-items {
    margin-bottom: 3rem;
  }
  .about-hero-text-div {
    margin-top: 3rem;
  }
}

.about-to-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10rem;
}

.about-content-button {
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--fads-vibrant-blue);
  text-align: center;
  border-radius: 45%;
  margin-bottom: 0.8rem;
  padding-top: 0px;
  transition: padding-top 0.2s, margin-bottom 0.2s;
}

.about-chevron {
  width: 3rem;
  height: 3rem;
  filter: drop-shadow(0 0 0.25rem var(--fads-deep-blue));
  margin-top: 0.2rem;
}

a:visited {
  color: var(--style-white);
}

.about-content-button:hover {
  margin-bottom: 0.1rem;
  padding-top: 2px;
}

/* body stuff */

.about-content-container {
  padding: 3rem;
  padding-top: 0;
}

.devs-header {
  text-align: center;
}

.devs-header-text {
  margin-top: 0;
}

.dev-bio-container {
  display: flex;
  background-color: var(--style-white);
  padding: 2rem;
  flex-direction: row;
  justify-content: space-between;
  color: var(--style-black);
  border-radius: 1rem;
}

.bio-container-top {
  border-radius: 3rem 3rem 1rem 1rem;
}

.bio-container-bottom {
  border-radius: 1rem 1rem 3rem 3rem;
}

.dev-info {
  text-align: center;
  width: 20rem;
  margin-right: 2.5rem;
  margin-left: 2.5rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  width: 20rem;
}

h5 {
  margin: 0;
  width: 20rem;
}

.dev-pic {
  width: 10rem;
  height: 10rem;
  border-radius: 30%;
}

.dev-quote {
  padding-top: 3rem;
  padding-right: 5rem;
}

.dev-quote::before {
  float: left;
  content: " \0022";
  font-size: 5rem;
  font-family: lexend-black;
  height: 100%;
}

.dev-socials {
  border-left: 2px solid var(--fads-deep-purple);
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-button {
  background-color: var(--fads-vibrant-blue);
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 45%;
  transition: border-radius 0.5s;
  margin-bottom: 0.5rem;
}

.social-bottom {
  margin-bottom: 0;
}

.social-button:hover {
  border-radius: 30%;
}

.dev-social-icon {
  fill: var(--style-white);
  width: 2.5rem;
  height: 2.5rem;
  padding-top: 0.5rem;
  filter: drop-shadow(0 0 0.25rem var(--fads-deep-blue));
}

.dev-social_link {
  fill: var(--style-white);
  width: 2rem;
  height: 2rem;
  padding-top: 0.7rem;
  filter: drop-shadow(0 0 0.25rem var(--fads-deep-blue));
}

@media screen and (max-width: 1214px) {
  .dev-bio-container {
    flex-direction: column;
    padding: 1rem;
    align-items: center;
  }
  .dev-socials {
    flex-direction: row;
    padding-top: 1rem;
    border-top: 2px solid var(--fads-deep-purple);
    border-left: 0;
  }
  .dev-quote {
    border-right: 0px;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-top: 2rem;
    min-width: 0rem;
  }
  .social-button {
    margin-left: 1rem;
  }
}

@media screen and (max-height: 730px) {
  .about-hero-items {
    margin-bottom: 0rem;
  }
}
