body {
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servicesSection {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: stretch;
  padding: var(--deviceWidthPaddingSize);
  padding-top: 0px;
  align-items: center;
  align-self: stretch;
}

.servicesSection h2 {
  align-self: stretch;
  color: var(--brandGreen);
  text-align: center;
  font-family: "Literata";
  font-size: var(--xXLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.servicesSection .servicesParagraphs {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  gap: 10px;
  padding: 0px 10px;
}

.servicesSection .servicesParagraphs p {
  align-self: stretch;
  color: var(--brandGreen);
  text-align: center;
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.servicesSection .servicesImages {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  align-self: stretch;
  flex-wrap: wrap;
}

.servicesSection .servicesImages .imgCard {
  display: flex;
  cursor: pointer;
  position: relative;
  width: 350px;
  justify-content: center;
  align-items: center;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px var(--black25);
  overflow: hidden;
}

.servicesSection .servicesImages .imgCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.servicesSection .servicesImages .imgCard p {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  opacity: 0.2;
  background: rgba(0, 0, 0, 0.5);
  cursor: default;
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--white);
  text-align: center;
  font-family: "Literata";
  font-size: var(--xLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  line-height: 350px;
  transition: opacity 0.7s ease-out;
}

.servicesSection .servicesImages .imgCard p:hover,
.servicesSection .servicesImages .imgCard p:focus {
  opacity: 1;
  transition: opacity 0.7s ease-in;
}

@media (max-width: 600px) {
  .servicesSection .servicesImages .imgCard {
    width: 90vw;
    height: 90vw;
  }
}
