/*Section 11 MAPS*/
.locations-section {
  background: #ffffff;
  padding: 100px 20px;
}

.locations-section__container {
  max-width: 1170px;
  margin: 0 auto;
}

.locations-section__title {
  margin: 0 0 60px;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
  text-transform: uppercase;
  color: #1E3C62;
}

.locations-section__title span {
  color: #FE4500;
}

.locations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.locations-left,
.locations-map {
  width: 100%;
  
}
.locations-left {
  background: #FAFAFA!important;
  padding-top: 12px;
}
.locations-left__header {
  color: #1E3C62;
  padding: 22px 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 115%;
  text-transform: uppercase;
}

.locations-list {
}

/*.location-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #EBEBEB;
  text-align: left;
  cursor: pointer;
}*/
	
.location-item {
  width: 510px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #00000008;
  text-align: left;
  cursor: pointer;
}
	
.location-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.location-item__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.location-item__content strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  color: #1E3C62;
}

.location-item__content span {
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #1E3C62;
}

.location-item.is-active strong,
.location-item:hover strong {
  color: #FE4500;
}

/*.locations-review-box {
  width: 100%;
  max-width: 510px;
  min-height: 92px;
  margin-top: 30px;
  background: #1E3C62;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  gap: 22px;
}*/
	@media (max-width: 550px) {

  .locations-layout {
    display: block;
  }

  .locations-left,
  .locations-map {
    width: 100%;
    max-width: 100%;
  }

  .locations-map {
    height: 400px; /* or whatever height you prefer */
  }

  .locations-left__header,
  .location-item,
  .locations-review-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .locations-review-box {
    margin-left: 0;
    margin-right: 0;
  }

}
.locations-review-box {
  width: 510px;
  max-width: calc(100% - 60px);
  min-height: 92px;
  margin: 30px auto 0;
  background: #1E3C62;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  gap: 22px;
}
	
.locations-review-box__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.locations-review-box__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.locations-review-box__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.65);
}

.locations-review-box__content {
  color: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.locations-review-box__rating {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
}

.locations-review-box__rating img {
  width: 122px;
  height: 22px;
  object-fit: contain;
}

.locations-review-box__text {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
}

.locations-map {
  height: 733px;
  position: relative;
  overflow: hidden;
}

.locations-map__embed {
  display: none;
  width: 100%;
  height: 100%;
}

.locations-map__embed.is-active {
  display: block;
}

.locations-map__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .locations-layout {
    grid-template-columns: 1fr;
  }

  .locations-map {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .locations-section__title {
    font-size: 38px;
  }

  .locations-left__header {
    font-size: 22px;
  }

  .locations-review-box {
    max-width: 100%;
  }
}
	@media (max-width:425px) {
		.locations-left, .locations-map {
    width: 100%;
    max-width: 75%;
}
	}
		@media (max-width:375px) {
		.locations-left, .locations-map {
    width: 100%;
    max-width: 65%;
}
	}
	@media (max-width:320px) {
		.locations-left, .locations-map {
    width: 100%;
    max-width: 55%;
}
		.locations-review-box__rating img {
    width: 102px;
}
	}