.genHeroSection {
  min-height: 600px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 100px 40px 100px;
  gap: 30px;
  position: relative;
  background: linear-gradient(30deg, #3b686b 0%, #132a32 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
}

.genHeroSection h1 {
  font-weight: normal;
  font-family: ms;
  font-size: 40px;
  color: white;
  max-width: 700px;
  line-height: 1.5;
  text-align: center;
}

.genHeroSection p {
  font-family: mr;
  max-width: 700px;
  color: white;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.aboutWWA {
  min-height: 700px;
  height: fit-content;
  display: flex;
  gap: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px;
}

.aboutWWAImageContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.aboutWWAImageContainer .imageCard {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid white;
  background: linear-gradient(30deg, #3b686b 0%, #132a32 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  z-index: 200;
}

.aboutWWAImageContainer .imageCardX {
  width: 300px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  margin-left: -200px;
  border: 4px solid white;
  background: linear-gradient(30deg, #3b686b 0%, #132a32 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  z-index: 100;
}

.aboutWWAImageContainer .imageCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutWWADetails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.aboutWWADetails h1 {
  font-weight: normal;
  font-family: ms;
  font-size: 40px;
  max-width: 600px;
  line-height: 1.5;
}

.aboutWWADetails p {
  font-family: mr;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.7;
}


.skilledTeam {
  min-height: 700px;
  height: fit-content;
  display: flex;
  gap: 80px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.02);
}

.skilledTeamImageContainer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.skilledTeamImageContainer .imageCard {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid white;
  background: linear-gradient(30deg, #3b686b 0%, #132a32 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  z-index: 200;
}

.skilledTeamImageContainer .imageCardX {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 40px;
  margin-left: -300px;
  border: 4px solid white;
  background: linear-gradient(30deg, #3b686b 0%, #132a32 100%);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  z-index: 100;
}

.skilledTeamImageContainer .imageCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skilledTeamDetails {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.skilledTeamDetails h1 {
  font-weight: normal;
  font-family: ms;
  font-size: 40px;
  max-width: 600px;
  line-height: 1.5;
}

.skilledTeamDetails p {
  font-family: mr;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
}

.ourClients {
  min-height: 700px;
  height: fit-content;
  display: flex;
  gap: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 80px 100px 80px;
}

.ourClients h1 {
  font-weight: normal;
  font-family: ms;
  font-size: 40px;
  max-width: 600px;
  line-height: 1.5;
  text-align: center;
}

.ocImageContainer {
  padding: 0 40px 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.ocImageContainer img {
  height: 100px;
}

@media (max-width: 992px) {
  .genHeroSection {
    padding: 100px 50px 80px 50px;
  }
  .aboutWWA {
    padding: 50px 40px 50px 40px;
    flex-direction: column-reverse;
  }
  .aboutWWADetails p {
    max-width: 800px;
  }
  .skilledTeam {
    padding: 50px 40px 50px 40px;
    flex-direction: column;
  }
}

@media (max-width: 786px ) {
  .genHeroSection p {
    font-size: 12px;
  }
  .genHeroSection h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .genHeroSection {
    padding: 140px 40px 40px 40px;
  }
  .genHeroSection p {
    font-size: 14px;
  }
  .genHeroSection h1 {
    font-size: 32px;
  }
  .aboutWWA {
    padding: 80px 40px 80px 40px;
    gap: 60px;
  }
  .aboutWWADetails h1 {
    font-size: 35px;
  }
  .skilledTeamDetails h1 {
    font-size: 35px;
  }
  .aboutWWAImageContainer .imageCard {
    height: 250px;
    width: 300px;
  }
  .aboutWWAImageContainer .imageCardX {
    height: 300px;
    width: 300px;
  }
  .skilledTeamImageContainer {
    flex-direction: row-reverse;
  }
  .skilledTeamImageContainer .imageCard {
    height: 300px;
    width: 300px;
    margin-left: -200px;
  }
  .skilledTeamImageContainer .imageCardX {
    height: 300px;
    width: 300px;
    margin-top: 40px;
    margin-left: 0;
  }
  .ourClients h1 {
    font-size: 35px;
  }
}

@media (max-width: 400px) {
  .ocImageContainer {
    gap: 40px;
    padding: 0 20px 0 20px;
  }
  .ocImageContainer img {
    height: 80px;
  }
  .aboutWWAImageContainer .imageCard {
    height: 250px;
    width: 250px;
  }
  .aboutWWAImageContainer .imageCardX {
    height: 300px;
    width: 250px;
  }
  .genHeroSection h1 {
    font-size: 26px;
  }
  .aboutWWADetails h1 {
    font-size: 30px;
  }
  .skilledTeamDetails h1 {
    font-size: 30px;
  }
  .skilledTeamImageContainer .imageCard {
    height: 250px;
    width: 250px;
    margin-left: -200px;
  }
  .skilledTeamImageContainer .imageCardX {
    height: 250px;
    width: 250px;
    margin-top: 40px;
    margin-left: 0;
  }
}
