.core-services--nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
.core-services--service {
  width: 100%;
  color: #fff;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.core-services--service p {
  line-height: 1.25em;
  text-align: center;
  margin: 0;
}
.core-services--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;
}
.core-services--service:hover p:after,
.core-services--service.active p:after {
  visibility: visible;
}
.core-services--container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  transition: all 250ms;
}
.core-services--menu {
  width: 100%;
}
.core-services--image {
  width: 100%;
  /*min-height: 250px;*/
  text-align: center;
}
.core-services--content {
  width: 100%;
  text-align: center;
}
.entry-content-wrapper .core-services--menu ul {
  margin-left: 0;
  list-style: none;
}
.core-services--menu ul li {
  margin: 0;
  padding: 7px 20px 7px 25px;
  cursor: pointer;
  border: 1px solid;
  margin-bottom: -1px;
  background: #fff;
  font-size: 16px;
}
.core-services--menu ul li p {
  margin: 0;
  position: relative;
}
.core-services--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);
}
.core-services--image img {
  max-width: 100%;
}
.core-services--content h4 {
  font-size: 20px;
  font-weight: 400;
}
.core-services--content p {
  font-size: 1em;
  line-height: 1.6;
}
.main_color .core-services--content a {
  color: #fff;
  background: #d04444;
  padding: 10px 35px;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  width: 100%;
}
.main_color .core-services--content a span {
  position: relative;
  z-index: 2;
}
.main_color .core-services--content a:hover {
  color: #fff;
  text-decoration: none;
}
.core-services--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;
}
.core-services--content a:hover:before {
  opacity: 1;
}
.core-services--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);
}

@media only screen and (min-width: 768px) {
  .core-services--nav {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .core-services--service {
    width: 20%;
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .core-services--service.active:after {
    content: '';
    display: block;
    height: 12px;
    width: 12px;
    background: inherit;
    position: absolute;
    bottom: -6px;
    transform: rotate(45deg);
    z-index: -1;
  }
  .core-services--container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4%;
    margin-top: 50px;
    transition: all 250ms;
  }
  .core-services--menu {
    width: 28%;
  }
  .core-services--image {
    width: 33%;
    min-height: 250px;
  }
  .core-services--content {
    width: 33%;
    text-align: left;
  }
  .main_color .core-services--content a {
    width: auto;
  }
}