.section-locations-tabs {
	position: relative;
}

.section-locations-tabs .nav-tabs {
  border: 0;
  flex-direction: column;
}
.section-locations-tabs .nav-link {
  color: var(--heading-color);
  padding: 15px 5px;
  text-align: center;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  background: var(--contrast-color);
}
.section-locations-tabs .nav-link > h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.section-locations-tabs .nav-link:hover {
  color: #fff;
  background: var(--accent-color);
}

.section-locations-tabs .nav-link.active {
  background: var(--accent-color);
  color: #fff;
}

.section-locations-tabs .tab-content {
  margin-top: 30px;
}

.section-locations-tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.section-locations-tabs .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.section-locations-tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.section-locations-tabs .tab-pane ul li {
  padding-top: 10px;
  display: flex;
}

.section-locations-tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 8px;
  color: var(--accent-color);
}

.section-locations-tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.section-locations-tabs .info-item {
  background: var(--light-color);
  padding: 10px;
  height: 100%;
}

.section-locations-tabs .info-item i {
  font-size: 18px;
  line-height: 0;
  color: var(--accent-color);
  color:  var(--contrast-color);
}

.section-locations-tabs .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  padding-bottom: 10px;
  color: var(--contrast-color);
}
.section-locations-tabs .info-item h3:after{
  background-color:  var(--contrast-color);
}
.section-locations-tabs .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  word-break: break-all;
}
@media (min-width: 768px) {
  .section-locations-tabs .nav-link h4 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .section-locations-tabs .nav-tabs {
    flex-direction: row;
  }
}