.location-section {
  padding-top: 0;
}

.location-carousel {
  position: relative;
}

.location-thumb {
  display: flex;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 4px;
}
.location-thumb img {
  width: 100%;
  transition: all 0.3s ease 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) {
  .location-content h3 {
    font-size: 20px !important;
  }
}
.location-content ul {
  display: flex;
  align-items: center;
  padding: 0;
}

.location-content.text-left ul {
  justify-content: flex-start;
}
.location-content.text-center ul {
  justify-content: center;
}
.location-content.text-right ul {
  justify-content: flex-end;
}

.location-content ul li {
  display: flex;
  align-items: center;
  margin-right: 20px;
  position: relative;
}
.location-content ul li::before {
	position: absolute;
	content: "";
	right: -11px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 13px;
	background-color: #595959;
}
.location-content ul li:last-child {
  margin-right: 0px;
}
.location-content ul li:last-child::before {
  display: none;
}
.location-content ul li p {
  margin: 0;
}
.location-content ul li p span {
  line-height: 1;
}
.location-content ul li span svg ,
.location-content ul li div svg {
  line-height: 1;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  color: var(--primary);
}
.location-content ul li span svg path ,
.location-content ul li div svg path {
    stroke: currentColor;
    fill: currentColor;
}
.location:hover .location-thumb img {
  transform: scale(1.05);
}
