.businessEntitiesSlider .entityToggle {
  display: none;
}

.businessEntitiesSlider .entityHeadText {
  width: 100%;
}

@media (min-width: 576px) {
  .businessEntitiesSlider {
    margin-bottom: 70px;
  }

  .businessEntitiesSlider .slick-track {
    display: flex !important;
    align-items: stretch;
  }

  .businessEntitiesSlider .slick-slide {
    height: auto;
  }

  .businessEntitiesSlider .slick-slide>div {
    height: 100%;
  }

  .businessEntitiesSlider .businessEntityCard,
  .businessEntitiesSlider .entityCardInner {
    height: 100%;
  }

  .businessEntitiesSlider .entityCardInner {
    display: flex;
    flex-direction: column;
  }

  .businessEntitiesSlider .entityBody {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .businessEntitiesSlider .btnWrap {
    margin-top: auto;
  }
}

@media (max-width: 575px) {
  .businessEntitiesSlider .businessEntityCard {
    width: 100%;
    margin: 0 0 14px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--blue);
  }

  .businessEntitiesSlider .businessEntityCard:last-child {
    margin-bottom: 0;
  }

  .businessEntitiesSlider .entityCardInner {
    height: auto;
    padding: 0;
  }

  .businessEntitiesSlider .entityHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
  }

  .businessEntitiesSlider .entityCategory {
    font-size: 13px;
  }

  .businessEntitiesSlider .entityName {
    margin: 4px 0 0;
    font-size: 19px;
    line-height: 1.3;
  }

  .businessEntitiesSlider .entityToggle {
    display: flex;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #fff;
    position: relative;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 4px;
  }

  .businessEntitiesSlider .entityToggle span,
  .businessEntitiesSlider .entityToggle span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--blue);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .businessEntitiesSlider .entityToggle span::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .businessEntitiesSlider .entityBody {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
  }

  .businessEntitiesSlider .businessEntityCard.is-open .entityBody {
    max-height: 1200px;
    opacity: 1;
    padding: 0 20px 22px;
  }

  .businessEntitiesSlider .businessEntityCard.is-open .entityToggle span::before {
    opacity: 0;
  }

  .businessEntitiesSlider .entityDesc {
    margin-bottom: 16px;
  }

  .businessEntitiesSlider .entityActivities {
    margin-bottom: 18px;
  }

  .businessEntitiesSlider .entityTags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 0;
  }

  .businessEntitiesSlider .entityTag {
    list-style: none;
  }
}

@media (max-width: 575px) {
  .overviewBoxWrap .overviewBoxItem {
    width: 100%;
  }

  .businessPageSec {
    .overviewBoxItem {
      .overviewBoxPara {
        height: auto;
      }
    }
  }

  .overviewBoxWrap .overviewBoxItem:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .locSec .mapImg {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .locSec .mapImg {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .locSec .lovCont {
    padding-left: 0;
    margin-top: 28px;
  }
}