.serviceSection {
  background-color: #222222;
}

.serviceContent h1 {
  font-family: Oswald;
  font-size: 45px;
  font-weight: 700;
  line-height: 53.38px;
  text-align: center;
  color: #eb5805;
}

.serviceCategory {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 71px 7%;
 
  gap: 30px;
}

.serviceImgText:hover{
  filter: grayscale(0);
  transform: scale(1.1);
  transition: 0.5s ;
}

.serviceImgText {
  display: flex;
  flex-direction: column;
  border: 8px solid #eb5805;
  width: fit-content;
  margin: 20px auto;
  filter: grayscale(1);
}

.serViceImg {
  width: 400px;
  height: 600px;
}

.serviceCategory p {
  font-family: Oswald;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  color: #eb5805;
  text-transform: uppercase;
  border-top: 8px solid #eb5805;
  padding: 5px 0;
}

.ourTeamDescription{
  width: 60%;
  padding: 15px 0 0;
  text-align: center;
  color: white;
  font-family: Oswald;
  font-weight: 400;
  font-size: 22px;
  margin: auto;
}

@media (max-width: 580px) {
  .ourTeamDescription{
    width: 80%;
  }
  .serviceContent h1 {
    font-size: 35px;
  }

  .serviceCategory {
    display: block;
    padding: 25px;
  }

    .serViceImg {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 581px) and (max-width: 1200px) {
  .serviceCategory {
    display: flex;
    grid-template-columns: 1fr 1fr;
    padding: 70px 1%;
  }
    .serViceImg {
        width: 100%;
        height: 100%;
    }
}
