.echron-destination-nearby-sec .heading{
    text-align: center;
    margin-bottom: 30px;
}
.echron-destination-nearby-sec .heading h2{
    width: fit-content;
    position: relative;
    font-size: 30px;
    width: fit-content;
    margin: auto;

}
.echron-destination-nearby-sec .heading h2::before{
    position: absolute;
    content: '';
    width: 50%;
    height: 5px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #023d1b;    
}
.echron-destination-nearby-sec .tab-box .tabs{
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    margin: auto;
    margin-bottom: 15px;
}
.echron-destination-nearby-sec .tab-box .tabs button{
    border-radius: 25px;
    border: 2px solid #ddd;
    color: #ddd;
    background-color: #fff;
    padding: 7px 15px;
    transition: all 0.3s ease-in;
}
.echron-destination-nearby-sec .tab-box .tabs button:hover,
.echron-destination-nearby-sec .tab-box .tabs button.active{
    border: 2px solid #023d1b;
    color: #023d1b;    
}
.echron-destination-nearby-sec .tab-box .tab-content{
    display: none;
}
.echron-destination-nearby-sec .tab-box .tab-content.active{
    display: block;
}
.echron-destination-nearby-sec .tab-box .tab-content ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li{
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex: 0 0 20%;
    transition: all 0.3s ease-in;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li:hover{
    box-shadow: 0 4px 6px 0 rgb(0 0 0 / 20%);
    transform: scale(1.02);
    border-radius: 10px;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li figure{
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 15px;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li figure img{
    width: 100%;
    height: 100%;
    display: block;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li .details{
    flex: 0 0 auto;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li .details h3{
    font-size: 16px;
    margin-bottom: 10px;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li .details .price-at{
    color: #3a3a3a;
    line-height: 1.3;
}
.echron-destination-nearby-sec .tab-box .tab-content ul li .details .price-at span{
    color: #000;
}