.breadcrumb {
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  padding-left: 30px;
  background: linear-gradient(132deg, #614d4d, #f2f2f200);
  z-index: 1;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb li {
  font-size: 14px;
  color: #fff;
}

.breadcrumb a {
  color: #fff;
  font-weight: 600;
}

.location-banner {
  background-image: url(../../images/location/location-banner.webp);
  height: 350px;
}

.bg-control::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.514);
  position: absolute;
  top: 0;
  left: 0;
}

h1 {
  font-size: 70px;
  background: linear-gradient(45deg, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
  text-align: center;
}

.banner-text p {
  color: #fff !important;
  margin: 20px 0;
}

/*location-row */
.our-location .container {
  max-width: 1310px;
}

.location-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}

.location-card {
  width: 24%;
  padding: 30px 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
  border-radius: 10px;
}

.location-card .info-box {
  margin-bottom: 30px;
}

.location-card .info-box:nth-last-of-type(1) {
  margin-bottom: 0;
}

.location-card h3 {
  font-size: 20px;
  margin-bottom: 40px;
  color: #03045E;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.location-card h4,
.location-card a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 4px;
  color: #03045E;
}

.location-card p {
  padding-left: 24px;
  color: #0077B6;
}

.location-card p a {
  color: #0077B6;
}

/* common section css */
.accordion-common .at-tab {
  display: none;
  padding: 15px;

}

.accordion-common .at-title {
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #ddd;
}

.accordion-common .at-title:hover {
  background-color: #e0e0e0;
}

.accordion-common .at-title:after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: all 0.3s ease;
  font-size: 24px;
}

.accordion-common .at-title.active:after {
  content: "-";
}

.accordion-common .at-item {
  border-radius: 5px;
}

.accordion-common .at-item:nth-last-of-type(1) .at-title {
  border-bottom: none;
}

.accordion-common .at-title .tittle-name {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin: 0;
}

.accordion-common .accordion-header {
  text-align: center;
  background-color: #222222;
  color: white;
  padding: 20px 0;
}

.accordion-common .at-tab h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.accordion-common .at-tab p {
  font-size: 15px;
  list-style: 1.6;
  margin-bottom: 20px;
}

.accordion-common .at-tab ul {
  padding-left: 30px;
}

.accordion-common .at-tab ul li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  list-style: disc;
}

@media (max-width:1240px) {
  .location-card {
    width: 31%;
  }
}

@media (max-width:992px) {
  .location-card {
    width: 48%;
  }
}

@media (max-width:767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 24px;
  }

  .location-card p a {
    font-size: 14px;
  }
}

@media (max-width:580px) {
  h1 {
    font-size: 36px;
  }

  .location-card h3 br {
    display: none;
  }

  .location-card {
    width: 100%;
  }
}