.package_div *{
padding: 0;
margin: 0;
}
.package_div{
 display: grid;
 grid-template-columns:
 1fr 3fr 1fr;
 width: 800px;
 /* border: 1px solid red; */
 grid-gap: 15px;
 box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
 padding: 5px;
 margin: 10px;
 background: #fff;
border-radius:5px;
}
.package_div_sub{
  /* border: 1px solid green; */

}
.package_div_img img{
  height: 200px;
  width: 200px;
}
.package_div_info{
  padding: 10px;
}
.package_div_info h3{
  font-size: 16px;
}
.package_div_info > p span{
  color: #FFC107;
  margin-right:10px;
  font-size: 13px;
  font-weight: bold;
}
.package_location{
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.package_location i{
 color: #FFC107;
 margin-right: 5px;
}
.package_location p{
  font-size: 11px;
  color: #000;
}
.package_category{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.package_category p{
  background: #F1F1F1;
  margin-top: 5px;
  margin-right: 5px;
  padding: 3px 10px;
  font-size: 13px;
  border-radius: 5px;
}
.package_desc {
  margin-top: 10px;
  font-size: 14px;
  text-align: justify;
}
.package_price_enquire{
   display: grid;
   align-items: center;
}
.package_price_enquire_sub{
  margin-top: -20px;
}
.package_price_enquire .package_price h3{
  font-size: 19px;
  text-align: center;
}
.package_price_enquire .package_price p{
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.enquire_btn{
  background: #FF8708;
  border: 2px solid #FF8708;
  border-radius: 2px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  display: block;
  margin: auto;
}
.enquire_btn a{
    color:#fff;
}
.box-label{
  color:#000;
  font-weight:lighter;
}
.travel_filter #filterbar{
    margin-top:10px;
    border-radius:2px;
}
.package_main_div {
    margin-top:0;
}
@media (min-width: 768px){
.travel_filter {
    max-width: 100%!important;
}
}
@media (min-width: 576px){
.travel_filter {
  max-width: 100%!important;
}
}
@media only screen and (max-width:800px){
  .package_div_img{
   grid-area: package_div_1;
}
  .package_div_info{
  grid-area: package_div_2;
}
  .package_price_enquire{
  grid-area: package_div_3;
}
.package_div_img {
    background:#f5f8fa;
    padding:5px;
    
}
  .package_div_img img{
    height: 100px;
    width: auto;
    margin:auto;
    display:block;
  }
  .package_div{
   display: grid;
   grid-template-columns:1fr;
    grid-template-areas:
    "package_div_1"
    "package_div_2"
    "package_div_3";
    width: 100%;
  }
  .package_price_enquire{
    display: flex!important;
    /* border: 1px solid red; */
  }
  .package_price_enquire_sub{
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0px 8px;
  padding-top: 10px;
  background:#f5f8fa;
}
.package_desc {
  display: none;
}
.enquire_btn{
  margin-top: 5px;
}

}
