/**
 * CLIENTS SECTIOn
 **/

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

.clientsHeader {
  width: 1600px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.corporateTitle {
  font-size: 30px;
}

.corporateDesc {
  width: 300px;
  line-height: 20px;
  padding: 0px 20px;
  border-left-color: #ffffff;
  border-left-style: solid;
  border-left-width: 2px;
  margin-left: 20px;
}

.iconsRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 1350px;
  margin: auto;
  padding-left: 250px;
  margin-top: 50px;
}

.iconContainer {
  width: 300px;
}

.corporateImage {
  height: 140px;
  width: 140px;
}

/**
 * SOLUTIONS SECTION
 */

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

.solutionsTitle {
  font-size: 30px;
}

.solutionsRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0px;
}

.solutionsRowReverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0px;
}

.solutionTextContainer {
  width: 45%;
  font-size: 20px;
}

.solutionImageContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45%;
}

.solutionImage {
  height: 140px;
  width: 140px;
}

.solutionTitle {
  font-weight: bold;
}

.corporateCTAContainer {
  background-image: url(/images/corporateimages/workspace.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
}

.corporateCTAOverlay {
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporateCTA {
  text-align: center;
  color: #ffffff;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
}

.corporateCTAButton {
  cursor: pointer;
  display: block;
  background-color: #b11f1f;
  padding: 6px 18px;
  color: #ffffff;
  font-size: 24px;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.corporateCTAButton:hover {
  background-color: #d62727;
}

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

  .iconsRow {
    width: 950px;
    padding-left: 250px;
  }

  .solutionsContainer {
    width: 1200px;
  }
}

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

  .iconsRow {
    width: 900px;
    padding-left: 0px;
  }

  .solutionsContainer {
    width: 900px;
  }

  .iconContainer {
    width: 260px;
  }
}

@media only screen and (max-width : 992px) {
  .clientsHeader {
    width: 320px;
  }

  .iconsRow {
    width: 300px;
    flex-direction: column;
  }

  .iconContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
  }

  .corporateImage {
    width: 100px;
    height: 100px;
  }

  .corporateText {
    text-align: center;
  }

  .solutionsContainer {
    width: 300px;
  }

  .solutionsRow {
    flex-direction: column-reverse;
  }

  .solutionsRowReverse {
    flex-direction: column-reverse;
  }

  .solutionImageContainer {
    width: 300px;
    margin: 40px 0px;
  }

  .solutionTextContainer {
    width: 300px;
  }
  
  .corporateCTA {
    width: 300px;
  }
}