.body {
  overflow-x: hidden;
}
.services-section-outer {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex: 1;
  min-height: calc(var(--vh, 1vh) * 100);
}

.services-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1112px;
  width: 90%;
}

.services-grid-container {
  width: 70%;

  display: flex;

  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 70px;
}

.services-grid-container .services-grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  flex-basis: 33.333333%;
  object-fit: cover;
}

.services-grid-item img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(100%); /* FF 35+ */
}

.services-grid-item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.services-grid-item:hover img {
  opacity: 0.5;
  -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(0%); /* FF 35+ */
}

.services-grid-item:hover p {
  display: block;
}


/* teste*/

.services-grid-container .services-grid-item1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  flex-basis: 33.333333%;
  object-fit: cover;
}

.services-grid-item1 img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(100%); /* FF 35+ */
}

.services-grid-item1 p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.services-grid-item1:hover img {
  opacity: 0.5;
  -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(0%); /* FF 35+ */
}

.services-grid-item1:hover p {
  display: block;
}

.services-text-container {
  padding: 30px, 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 70%;
  margin: auto;
}

.services-text-container h3 {
  text-transform: uppercase;
  font-size: 50px;
  line-height: 140%;
  margin-bottom: 20px;
}
.services-text-container p {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .services-grid-container {
    padding-top: 80px !important;
  }
}

.see-how-button {
  margin: 20px 0px 160px 0px !important;
}
