.desktop.about {
  background-color: rgba(90, 66, 43, 1);
  padding: 4rem 0;
  padding: 0;
}
.mobile.about {
  background: url("../images/about.png");
  background-color: rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 4rem 0;
}
.desktop .about-two-sections {
  display: flex;
  justify-content: space-evenly;
}
.desktop .about-heading {
  margin: 4px;
  color: rgba(254, 251, 243, 1);
  font-family: Tenor Sans;
  font-size: 48px;
  text-decoration: underline;
}
.mobile .about-heading {
  color: rgba(254, 251, 243, 1);
  font-family: Tenor Sans;
  font-size: 32px;
  text-decoration: underline;
  text-align: center;
}
.desktop .about-description {
  margin: 2rem 0;
  color: rgba(254, 251, 243, 1);
  font-family: Raleway;
  font-weight: 200;
  line-height: 1.3;
  font-size: 22px;
  margin-right: 4rem;
}
.mobile .about-description {
  padding: 2rem;
  color: rgba(254, 251, 243, 1);
  font-family: Raleway;
  font-weight: 200;
  line-height: 1.6;
  font-size: 16px;
  text-align: center;
}
.about-link-holder {
  display: flex;
  justify-content: center;
}
.desktop .about-link-holder {
  justify-content: flex-start;
}
.about-link {
  margin: 4px;
  color: rgba(254, 251, 243, 1);
  font-family: Raleway;
  font-weight: 400;
}
.about-link:hover {
  text-decoration: underline;
}
.desktop .about-link {
  font-size: 24px;
}
.mobile .about-link {
  text-align: center;
  font-size: 16px;
}
.desktop .first-about-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 4rem 2rem;
  margin-right: 0;
  margin-left: 4rem;
}
.desktop .second-about-section {
  text-align: center;
  margin: 0;
  flex: 1;
}
.second-about-section img {
  object-fit: cover;
  max-height: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 0;
}
.meet-our-team {
  background-color: #fffbf3;
  color: rgba(90, 66, 43, 1);
  font-family: Tenor Sans;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .meet-our-team {
    padding: 2rem;
    background-color: #fff;
    color: rgba(90, 66, 43, 1);
  }
}
.meet-our-team .heading {
  margin: 3rem 0;
  text-decoration: underline;
  font-size: 48px;
}
.meet-our-team .team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.meet-our-team .team-member {
  margin: 2rem;
  color: white;
  background-color: #5b432c;
  border-radius: 50% 50% 2rem 2rem;
}
@media screen and (max-width: 768px) {
  .meet-our-team .team-member {
    color: #5b432c;
    background-color: #fffbf3;
  }
}
.meet-our-team .team-member img {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.meet-our-team .team-member .member-name {
  padding: 0.6rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 2rem;
}
.meet-our-team .team-member ul {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
