.h_wrap{
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  width: 100%;
  padding: 0;
  margin: 0;
}

.h_wrap .com_info  {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 25%;
  min-width:25%;
}
.h_wrap .com_info .pic {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 0 4rem 4rem 0;
  filter: brightness(1.3) grayscale(100%);
  transition: all .3s;
}
.h_wrap .com_info .pic:hover{
  filter: brightness(1) grayscale(0);
  border-radius: 0;
}
.h_wrap .com_info .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h_wrap .com_info .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  color: #5985E1;
}
.h_wrap .com_info  .icon_bus {
  margin-top: 0.5rem;
}
.h_wrap .com_info  .bus {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  color: #333;
  letter-spacing: -1px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  padding: 0;
  margin: 0;
}
.h_wrap .com_info  .bus1 {
  border: 4px solid #8cc461;
}
.h_wrap .com_info  .bus2 {
  border: 4px solid rgb(7, 139, 73);
}
.h_wrap .company {
  font-size: 1.4rem;
  font-weight: 800;
  color: #444444;
  padding: 0 0 1rem 0;
  /* margin-bottom: 1rem;
  border-bottom: 1px solid #333; */
}
.h_wrap .info {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.h_wrap .info .tt {
  width: 70px;
  min-width: 70px;
  font-size: 0.75rem;
  font-weight: 700;
}
.h_wrap .info .con {
  font-size: 0.85rem;
  word-break: keep-all;
  word-wrap: break-word;
}
.h_wrap .info .con span {
  font-size: 0.85rem;
  font-weight: 300;
}
.h_wrap .info .con span strong {
  font-weight: 600;
}


.location_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.location_wrap .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.location_map_wrap {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}
.location_map {
  width: 100%;
}
.location_map .wrap_map {
  width: 100%;
  height: 350px;
  transition: all 0.2s;
}
.location_map .cont{
  display: none;
}
@media (max-width: 991.98px) {
  .h_wrap .info {
    padding: 0;
  }
  .location_map_wrap {
    position: relative;
    width: 100%;
  }
  .location_map_wrap::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 85%;
    height: 89%;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0);
  }
  .location_map .wrap_map {
    height: 300px;
  }
}
@media (max-width: 767.98px) {
  .h_wrap{
    flex-direction: column;
    gap: 2rem;
  }
  .h_wrap .com_info{
    width: 100%;
    min-width: 100%;
    gap: 0.5rem;
  }
  .h_wrap .com_info .pic {
    aspect-ratio: 2 / 0.5;
    border-radius: 0;
  }
  .location_wrap .box {
    flex-direction: column;
    gap: 2rem;
  }
  .h_wrap .com_info  {
    width: 100%;
    min-width: 100%;
  }
  .location_wrap .company {
    font-size: 1.5rem;
  }
  .h_wrap .info .tt {
    font-size: 1rem;
  }
  .h_wrap .info .con {
    font-size: 1rem;
  }
  .location_map .wrap_map {
    height: 250px;
  }
}
