.only_mobile_600 {
  display: none;
}

div.content_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.5rem;

  width: 100%;
  max-width: none;
  text-align: center;
}

div.content_info h2 {
  font-family: "museo-sans", sans-serif;
  font-weight: 700;
  line-height: 4rem;
  font-size: 3.375rem;
  color: var(--purple);
}

div.team_info_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.5rem;

  width: 100%;

  padding-bottom: 3.125rem;
  position: relative;
}

div.team_info_container::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--light-blue);

  position: absolute;
  top: 4rem;
  left: 0;

  transform: skewY(-2deg);

  z-index: -99;
}

div.team_info_container.invert::before {
  transform: skewY(2deg);
}

div.team_info_container::after {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #efefef;

  position: absolute;
  bottom: 0;
  left: 0;

  z-index: -99;
}

div.team_info_container .teammate > img {
  width: 324px;
  aspect-ratio: 1/1;
  border-radius: 50%;

  margin-bottom: 1.5rem;
}

div.teammate .teammate_info {
  text-align: center;
}

div.teammate .teammate_info h3 {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: var(--purple);
  font-family: "freght-sans-pro", sans-serif;
}

div.teammate .teammate_info p {
  font-family: "freght-sans-pro", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: var(--purple);

  margin-block: 0.875rem 1.5rem;
}

div.teammate .teammate_info hr {
  width: 4.5rem;
  height: 3px;
  background-color: #8128f0;
  border: none;

  margin-inline: auto;
  margin-bottom: 1.5rem;
}

#home_section {
  position: relative;

  max-width: 1920px;
  margin-inline: auto;

  margin-bottom: 10%;
  min-height: 700px;
}

#home_section .overlay {
  width: 100vw;
  height: 700px;
  max-height: 700px;

  padding-top: 3.25rem;

  overflow: hidden;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: -100;
}

#home_section .overlay::before {
  content: "";
  height: 100%;
  width: 150%;
  background-color: var(--light-blue);
  transform: skewY(-2deg);

  position: absolute;
  bottom: -4rem;
  left: 0;
  z-index: -999;
}

#home_section .content {
  margin-inline: 7.375rem;
  width: calc(100% - (7.375rem * 2));
  max-width: 1920px;
  min-height: 680px;

  padding: 6.25rem 3rem 2rem 3rem;
  background-color: var(--purple);
  border-radius: 16px 16px 0 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;

  position: absolute;
  top: 1.375rem;
  z-index: 10;
}

#home_section .content::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--purple);
  transform: skewY(-3deg);
  border-radius: 16px;

  position: absolute;
  bottom: -9%;
  left: 0;
  z-index: -999;
}

#home_section .content .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;

  flex: 1;

  color: #fff;
  text-align: left;

  max-width: 720px;
}

#home_section .content .info h2 {
  font-size: 2.25rem;
  line-height: 2.875rem;
  letter-spacing: 0.36px;
  font-weight: 500;
  margin-bottom: 0;

  color: #fff;

  opacity: 0.75;
}

#home_section .content .info h1 {
  font-size: 4rem;
  line-height: 4.375rem;
  color: #fff;

  margin-bottom: 0.5rem;
}

#home_section .content .info p {
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 300;

  line-height: 1.75rem;
  max-width: 665px;

  opacity: 0.75;
}

#home_section .content .info .bullet_list .item span {
  color: var(--light-blue);
}

#home_section .content .info .buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}

#home_section .content .info button.button {
  background-color: #fff;
  border: 2px solid #fff;

  color: var(--purple);
  width: 290px;
  padding-block: 8px;

  margin-top: calc(2.25rem - 1.75rem);

  transition: border 0.3s;
}

#home_section .content .info button.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}

#home_section .content .info button.button:hover {
  border: 2px solid #5b23b1;
  color: #5b23b1;
}

#home_section .content .header_img {
  display: flex;
  justify-content: center;
  align-items: center;
}

#home_section .content .header_img img {
  width: 100%;
  max-width: 592px;

  margin-inline: auto;
}

#testimonial {
  padding-block: 4rem 0rem;
}

#testimonial .flex_gap_64_r {
  grid-template-columns: 1fr 1.2fr;
}

#testimonial .content h3 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

#testimonial .content .ratings {
  display: flex;
  align-items: center;
  gap: 1.125rem;

  margin-top: 1.125rem;
  margin-bottom: 2.25rem;
}

#testimonial .content .ratings img {
  width: fit-content;
}

#testimonial .content p {
  font-family: "museo-sans", sans-serif;
  font-weight: 300;
  margin: 0;
}

#business_analysis_team {
  padding-top: 11.875rem;
}

#solutions_team {
  padding-top: 11.875rem;
}

#customer_success_team {
  padding-top: 11.875rem;
}

#salesforce_team {
  padding-block: 11.875rem calc(9rem + (16.25rem - 4.25rem));
}

@media only screen and (min-width: 2000px) {
  #home_section {
    margin-bottom: 0;
  }

  #testimonial {
    padding-top: 13rem;
  }
}

@media only screen and (max-width: 1700px) {
  #home_section .content {
    margin-inline: 1.125rem;
    width: calc(100% - 1.125rem * 2);
  }
}

@media only screen and (max-width: 1440px) {
  div.team_info_container {
    gap: 4rem;
  }

  div.team_info_container .teammate > img {
    width: 250px;
  }

  #home_section .content .header_img {
    flex: 0.8;
  }
  #home_section .content .info .buttons {
    gap: 1rem;
  }

  #home_section .content .info .buttons .button {
    width: 250px;
  }
}

@media only screen and (max-width: 1240px) {
  .flex_gap_64 .only_mobile,
  .flex_gap_64_r .only_mobile,
  .flex_gap_64 .on_mobile,
  .flex_gap_64_r .on_mobile {
    display: block;
    width: 100%;
    max-width: 560px;
    z-index: 1;
  }

  #home_section .content {
    margin-inline: 0;
    width: calc(100%);
    border-radius: 0;
    padding-inline: 1.125rem;
  }

  #home_section .content::before {
    border-radius: 0;
  }

  #home_section .content .info h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  #home_section .content .info h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  #testimonial .flex_gap_64_r {
    gap: 2rem;
  }
}

@media only screen and (max-width: 1020px) {
  div.content_info {
    padding-inline: 1.125rem;

    gap: 6.25rem;
  }

  div.team_info_container::before,
  div.team_info_container::after {
    display: none;
  }

  div.team_info_container {
    flex-wrap: wrap;
    justify-content: center;

    width: fit-content;
    padding-bottom: 0;
  }

  div.team_info_container .teammate {
    max-width: 250px;
  }

  #home_section .non_mobile,
  #home_section .overlay {
    display: none;
  }

  #home_section .overlay::before {
    background-color: transparent;
  }

  #home_section .content {
    width: 100%;
    max-height: 100%;

    margin-inline: auto;
    border-radius: 0;
    justify-content: flex-start;

    position: static;

    padding: 1.125rem 2rem 0 2rem;
    flex-direction: column-reverse;
    gap: 1.75rem;
  }
  #home_section .content::before {
    border-radius: 0;

    transform: skewY(-10deg);
  }

  #home_section .content .info {
    gap: 1.125rem;
  }

  #home_section .content .info h1 {
    font-size: 4rem;
    line-height: 4.375rem;
  }

  #home_section .content .info h2 {
    font-size: 2.25rem;
    line-height: 2.875rem;
  }

  #home_section .content .info .buttons .button {
    padding-block: 0.875rem;
  }

  #testimonial {
    position: relative;

    padding-block: 7.5rem 0rem;
  }

  #testimonial .flex_gap_64_r {
    gap: 2rem;
    grid-template-columns: 1fr;

    padding-bottom: 6.5rem;
  }

  #testimonial .content {
    text-align: center;
  }

  #testimonial .content .ratings {
    justify-content: center;
  }

  #business_analysis_team {
    padding-block: 6.5rem;

    position: relative;
  }

  #business_analysis_team::before {
    content: "";
    background-color: var(--soft-blue);
    width: 100%;
    height: 70%;

    position: absolute;
    top: 0;
    left: 0;
    transform: skewY(0deg);

    z-index: -99;
  }

  #business_analysis_team::after {
    content: "";
    background-color: var(--soft-blue);
    width: 100%;
    height: 70%;

    position: absolute;
    bottom: 0;
    left: 0;
    transform: skewY(-8deg);

    z-index: -99;
  }

  #solutions_team {
    padding-block: 8.5rem;
  }

  #salesforce_team {
    padding-block: 8.5rem 6.5rem;
  }

  #customer_success_team {
    padding-block: 6.5rem;

    position: relative;
  }

  #customer_success_team::before {
    content: "";
    background-color: var(--soft-blue);
    width: 100%;
    height: 70%;

    position: absolute;
    top: 0;
    left: 0;
    transform: skewY(4deg);

    z-index: -99;
  }

  #customer_success_team::after {
    content: "";
    background-color: var(--soft-blue);
    width: 100%;
    height: 70%;

    position: absolute;
    bottom: 0;
    left: 0;
    transform: skewY(10deg);

    z-index: -99;
  }
}

@media only screen and (max-width: 800px) {
  div.content_info h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: -0.72px;
  }

  #home_section .content {
    padding: 1.125rem;
  }

  #home_section .content .info h1 {
    font-size: 2.25rem;
    line-height: 2.875rem;
    letter-spacing: -0.72px;
  }

  #home_section .content .info h2 {
    font-size: 1.125rem;
    line-height: 2.5rem;
  }

  #home_section .content .info p {
    font-family: "museo-sans", sans-serif;
  }
}

@media only screen and (max-width: 600px) {
  .non_mobile_600 {
    display: none;
  }
  .only_mobile_600 {
    display: block;
  }

  div.team_info_container {
    gap: 4rem 2.5rem;
  }

  div.team_info_container .teammate {
    max-width: 140px;
  }

  div.team_info_container .teammate > img {
    width: 140px;
  }

  div.teammate .teammate_info p {
    font-size: 1rem;
  }
}
