.lp-location-section {
  padding: 80px 20px;
}

.lp-location-section .section-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp-location-section .section-inner .top-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-location-section .section-inner .top-text h2 {
  font-family: Lato;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  margin: 0;
}

.lp-location-section .section-inner .top-text .rating-wrapper {
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0px 2px 10px 0px #00000040;
  background: #fff;
  padding: 16px 32px;
  border-radius: 400px;
}


.lp-location-section .section-inner .bottom-content {
  display: flex;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.lp-location-section .section-inner .bottom-content .map-wrapper,
.lp-location-section .section-inner .bottom-content .location-details {
  width: 100%;
}

.lp-location-section .section-inner .bottom-content .location-details {
  padding: 40px;
}

.lp-location-section .section-inner .bottom-content .location-details h3 {
  font-family: Lato;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #000;
  margin-bottom: 24px;
}

.lp-location-section .section-inner .bottom-content .location-details .location-details-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-location-section .section-inner .bottom-content .location-details .location-details-inner .add-info {
  display: flex;
  gap: 12px;
}

.lp-location-section .section-inner .bottom-content .location-details .location-details-inner .add-info .add-info-span * {
  font-family: Lato;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #404040;
}

@media screen and (max-width: 767px) {
  .lp-location-section {
    padding: 40px 20px;
  }

  .lp-location-section .section-inner .bottom-content {
    flex-direction: column;
  }
  .lp-location-section .section-inner .top-text h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .lp-location-section .section-inner .bottom-content .map-wrapper {
    height: 300px;
    width: 400px;
  }
  .lp-location-section .section-inner .bottom-content .location-details {
    padding: 32px 20px;
  }

  .lp-location-section .section-inner .bottom-content .location-details h3 {
    font-size: 18px;
    line-height: 26px; 
  }

  .lp-location-section .section-inner .bottom-content .location-details .location-details-inner .add-info .add-info-span * {
    font-size: 16px;
    line-height: 24px;
  }
  .lp-location-section .section-inner .bottom-content .location-details .location-details-inner .add-info .add-info-span br {
    display: none;
  }
  .lp-location-section .section-inner .bottom-content .location-details .location-details-inner,
  .lp-location-section .section-inner .bottom-content .location-details .location-details-inner .add-info {
    gap: 8px;
  }
}