.join-our-team {
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-our-team > .join-wrapper {
  box-sizing: border-box;
  background-color: var(--main-bg-color);
  display: flex;
  max-width: var(--max-screen-width);
  width: 100%;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  margin: 8rem 0;
  border-radius: var(--border-radius);
}
.join-our-team > .join-wrapper > .join-team-title {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  line-height: 1.5rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.join-our-team > .join-wrapper > h2 {
  color: var(--blue);
  font-size: var(--font-size-xxxxl);
  font-weight: var(--font-weight-bold);
  line-height: 4.063rem;
  text-align: center;
}

/*Responsive*/
@media only screen and (max-width: 1200px) {
  .join-our-team > .join-wrapper {
    padding: 3rem 1.5rem;
  }
}

@media only screen and (max-width: 960px) {
  .join-our-team > .join-wrapper {
    margin: 5rem auto;
  }
}

@media only screen and (max-width: 767px) {
  .join-our-team > .join-wrapper > h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .join-our-team > .join-wrapper {
    padding: 3rem 1.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .join-our-team > .join-wrapper {
    padding: 3rem 1rem;
    margin: 5rem 0;
  }
}
