.services-module--nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-evenly;
  gap: 0%;
}
.services-module--service {
  width: 100%;
  color: #fff;
  padding: 10px 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: visible;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  flex-grow: 1;
  transition: .25s all;
}
.services-module--service p {
  line-height: 17px;
  text-align: center;
  margin: 0;
}
.services-module--service p:after {
  /*background: url(/wp-content/uploads/2020/09/Swoosh-mark.png);*/
  content: "";
  display: block;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-top: 5px;
  visibility: hidden;
}
.services-module--service:hover p:after,
.services-module--service.active p:after {
  visibility: visible;
}
.services-module--container {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  box-shadow: 2px 1px 6px #ccc;
  transition: all 250ms;
}
.services-module--menu {
  width: 100%;
}
.services-module--image-container {
  width: 100%;
  /*min-height: 250px;*/
  text-align: center;
  order: 1;
}
.services-module--content {
  width: 100%;
  /*text-align: center;*/
  margin-top: 15px;
  order: 2;
  padding: 20px 15px;
}
.entry-content-wrapper .services-module--menu ul {
  margin-left: 0;
  list-style: none;
}
.services-module--menu ul li {
  margin: 0;
  padding: 7px 20px 7px 25px;
  cursor: pointer;
  border: 1px solid;
  margin-bottom: -1px;
  background: #fff;
  font-size: 16px;
}
.services-module--menu ul li p {
  margin: 0;
  position: relative;
}
.services-module--menu ul li.active p:after {
  display: inline-block;
  content: "";
  height: 8px;
  width: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
}
.services-module--container.two-images .services-module--image-container .services-module--image {
  width: 100%;
}
.services-module--image {
  height: 100%;
}
.services-module--image img {
  max-width: 100%;
  box-shadow: 0px 0px 7px #ccc;
  height: 100%;
  object-fit: cover;
}
.services-module--content h4 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: -10px !important;
  color: #848181;
  /*text-align: center;*/
}
.main_color .services-module--content h4 {
  color: #848181;
  font-weight: 800;
}
.services-module--content p {
  font-size: 1em;
  line-height: 1.6;
  color: #848181;
}
.main_color .services-module--content a {
  padding: 10px 35px 10px 0;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  width: 100%;
  transition: .25s all;
  text-align: center;
  font-weight: 800;
}
.main_color .services-module--content a:after {
    display: inline-block;
    height: 5px;
    width: 5px;
    content: '';
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    margin-left: 10px;
    transform: rotate(45deg);
    top: 50%;
    position: absolute;
    margin-top: -3px;
}
.main_color .services-module--content h5 {
    font-size: 1.2rem;
    color: #464646;
    font-weight: 300;
    margin-top: 0;
}
.main_color .services-module--content a span {
  position: relative;
  z-index: 2;
}
.main_color .services-module--content a:hover {
  /*color: #fff;*/
  text-decoration: none;
}
/*.services-module--content a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.2);
  opacity: 0;
  transition: all 250ms;
  -webkit-transition: all 250ms;
}*/
/*.services-module--content a:hover:before {
  opacity: 1;
}*/

/*
.services-module--content a:after {
  display: inline-block;
  content: "";
  height: 8px;
  width: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-left: 15px;
  transform: rotate(-45deg);
}
*/

.services-module--content.no-image {
    margin: 0 auto;
    /*text-align: center;*/
    width: 80%;
}

@media only screen and (min-width: 768px) {
  .services-module--nav {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .services-module--service {
    /*width: 25%;*/
    padding: 10px 10px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .services-module--service.active:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    background: inherit;
    position: absolute;
    bottom: -18px;
    z-index: -1;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    background: transparent;
    left: 0px;
  }
  .services-module--container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 4%;
    margin-top: 25px;
    transition: all 250ms;
  }
  .services-module--container.two-images {
    flex-direction: column;
  }

  .services-module--menu {
    width: 28%;
  }
  .services-module--image-container {
    width: 33.3%;
    min-height: 250px;
    order: 1;
  }
  .services-module--container.image-placement-right {
    order: 2;
  }
  .services-module--content {
    width: 50%;
    text-align: left;
    
    margin-top: 0;
    order: 1;
  }
  .services-module--container.two-images .services-module--content {
    order: 1;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .services-module--container.two-images .services-module--image-container {
    order: 2;
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .services-module--container.two-images .services-module--image-container .services-module--image {
    width: 50%;
  }
  .services-module--container.image-placement-left .services-module--content {
    order: 2;
  }
  .main_color .services-module--content a {
    width: auto;
    border-radius: 30px;
  }
  .main_color .services-module--content a:hover:before {
    display: none;
  }
}