.key_features_section {
  padding: 30px 0;
  overflow: hidden;
}

.key_features_section .main_title {
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 10px;
  text-align: left;
}

.key_features_section .list_wrapper .feature_list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.key_features_section .list_wrapper .feature_list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.key_features_section .list_wrapper .feature_list .dot {
  width: 8px;
  height: 8px;
  background: #f16625;
  border-radius: 50%;
  margin-top: 7px;
  aspect-ratio: 1/1;
}

.key_features_section .highlight_text {
  font-weight: 600;
  margin: 30px 0 10px;
  font-size: 23px;
  color: #202020;
}

.key_features_section .bottom_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.key_features_section .bottom_wrapper .feature_info {
  width: 48%;
}

.key_features_section .sub_title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  color: #202020;
}

.key_features_section .bottom_wrapper .feature_info .info_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #202020;
}

.key_features_section .bottom_wrapper .img_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.key_features_section .info_item .icon {
  color: #202020;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 2px #0000005c;
  border-radius: 4px;
  padding: 5px 3px;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* SECTION */
.key_features_section {
  padding: 60px 0;
}

.main_title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

/* MAP WRAPPER */
.map_wrapper {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);

  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  margin-top: 20px;
}

/* LEFT PANEL */
.left_panel {
  height: 100%;
  overflow-y: auto;
  border-right: 1px solid #eee;
}

.left_heading {
  padding: 22px;
  font-size: 26px;
  font-weight: 800;
  border-bottom: 1px solid #eee;
}

/* ACCORDION */
.key_features_section .accordion-button {
  font-weight: 700;
  color: #153b89;
  box-shadow: none !important;
}

.key_features_section .accordion-button:not(.collapsed) {
  color: #153b89;
  background: #f5f5f5;
}

.key_features_section .accordion-item {
  border: 0;
  border-bottom: 1px solid #eee;
}

/* LOCATION ITEM */
.location_item {
  padding: 16px 20px;
  cursor: pointer;
  transition: 0.3s;
  border-top: 1px solid #f3f3f3;
}

.location_item:hover {
  background: #f4fffc;
}

.location_item.active {
  background: #eefaf7;
}

.location_name {
  font-weight: 700;
  font-size: 16px;
}

.location_distance {
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

/* MAP */
#map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ==================== Media Query ========================== */

@media (min-width: 0px) and (max-width: 767.98px) {
  .key_features_section .main_title {
    font-size: 18px;
  }

  .key_features_section {
    padding: 0;
  }

  .key_features_section .list_wrapper .feature_list li {
    font-size: 14px;
  }

  .key_features_section .highlight_text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .key_features_section .bottom_wrapper .info_item {
    font-size: 14px;
  }

  .key_features_section .bottom_wrapper {
    gap: 15px;
    flex-direction: column;
  }

  .key_features_section .bottom_wrapper .feature_info {
    width: 100%;
  }

  .left_heading {
    padding: 16px;
    font-size: 20px;
  }

  .left_panel {
    border-right: 0;
  }

  #map {
    height: 450px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .key_features_section .main_title {
    font-size: 20px;
  }

  .key_features_section .list_wrapper .feature_list li {
    font-size: 15px;
  }

  .key_features_section .highlight_text {
    font-size: 20px;
  }

  .key_features_section .list_wrapper .feature_list li {
    font-size: 14px;
  }

  .key_features_section .bottom_wrapper .info_item {
    font-size: 14px;
  }

  .key_features_section .bottom_wrapper {
    margin-top: 20px;
  }
}