.mainContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 50px;
}

.iconSeparator {
  width: 30vw;

  margin-top: 10px;
  border-color: var(--navGrey);
}
.mainContent a {
  text-decoration: none;
}
.singleClient {
  width: 100%;
  border: 1px solid black;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 15px;
  padding: 5px;
  border-radius: 10px;
  transition: all 0.6s;
}
.singleClient:hover {
  background-color: rgba(0, 128, 0, 0.254);
  color: black;
  cursor: pointer;
}

.singleClient ul {
  position: relative;
  left: 20px;
  font-size: 13px;
  font-style: italic;
  margin: 10px 20px 0 0;
}
.clients {
  display: grid;
  grid-template-columns: 40% 40%;
  justify-content: center;
  gap: 15%;
  width: 100%;
  padding-bottom: 100px;
  padding-top: 100px;
  font-family: 'Poppins', sans-serif;
  color: var(--textGrey);
}
@media only screen and (max-width: 1100px) {
  .clients {
    display: flex;
    flex-direction: column;
    padding: 100px 4vw 100px 4vw;
  }
}
.icoImage {
  width: 60%;
}
.menuIconContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.map {
  width: 70%;
  position: relative;
}

.map img {
  width: 100%;
}

.point {
  width: 7px;
  height: 7px;
  background-color: rgb(137, 199, 137);
  border-radius: 50%;
  position: absolute;
}
.point:hover {
  cursor: pointer;
  width: 11px;
  height: 11px;
}

.point div {
  position: relative;
  z-index: 1;
  margin: -1vw 0 0 2vw;
  width: fit-content;
  white-space: pre;
  border-radius: 10px;
  font-family: Verdana;
  padding: 10px;
  text-align: center;
  padding: 5px;
  transition: all 0.6s;
  display: block;
  opacity: 0;
  color: white;
  overflow-y: auto;
  pointer-events: none;
  color: #707070;
  font-size: 11px;
  transition-delay: 0.2s;
}

.point:hover div {
  opacity: 1;
}
.mapContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.descrbeText{
  font-family: 'Poppins', sans-serif;
  padding-left: 5vw;
  padding-top: 50px;
  color: var(--textGrey);
}