/**
 * ABOUT US SECTION
 **/

.aboutUsContainer {
  background-color: #000000;
  padding: 50px 0px;
}

.aboutUsContent {
  width: 1600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutUsImageContainer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.aboutUsImage {
  width: 70%;
}

.aboutUsTextContainer {
  flex: 2;
}

.aboutUsTitle {
  color: #ffffff;
  font-size: 30px;
}

.aboutUsText {
  margin: 10px 0px;
  color: #ffffff;
  text-indent: 30px;
  text-align: justify;
}

/**
 * ASSOCIATES SECTION
 **/

.associatesContainer {
  width: 1600px;
  margin: auto;
  padding: 40px 0px;
}

.associatesTitle {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.associatesList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.associatesItem {
  width: 530px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.associatesName {
  font-size: 24px;
}

.associatesJob {
  font-size: 24px;
}

/**
 * CAREERS SECTION
 **/

.careersContainer {
  background-color: #ffffff;
  color: #000000;
  padding: 30px 0px;
}

.careersContent {
  width: 1600px;
  margin: auto;
}

.jobTitle, .jobDesc {
  margin: 15px 0px;
}

.careersTitle {
  font-size: 30px;
}

@media only screen and (max-width : 1650px) {
  .aboutUsContent {
    width: 1200px;
  }

  .aboutUsImage {
    width: 90%;
  }

  .associatesContainer {
    width: 1200px;
  }

  .associatesItem {
    width: 400px;
  }

  .careersContent {
    width: 1200px;
  }
}

@media only screen and (max-width : 1250px) {
  .aboutUsContent {
    width: 900px;
  }

  .aboutUsImage {
    width: 100%;
  }

  .associatesContainer {
    width: 900px;
  }

  .associatesItem {
    width: 300px;
  }

  .careersContent {
    width: 900px;
  }
}

@media only screen and (max-width : 992px) {
  .aboutUsContent {
    width: 300px;
    flex-direction: column;
  }

  .associatesContainer {
    width: 300px;
  }

  .careersContent {
    width: 300px;
  }
}