* {
    box-sizing: border-box ;
    padding: 0 ;
    margin: 0 ;
}

body{
    font-family: "Poppins", sans-serif;
}
.deal-top{
    p{
        max-width: 45% ;
        font-size: 18px ;
        font-weight: 600 ;
        color: #002374 ;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        span{
            font-size: 12px ;
            font-weight: 500 ;
            color: #002374 ;
        }
    }
    img{
        min-width: 15px ;
        max-width: 15px ;
    }
}
.deal-main{
    border: 1px solid #DDDDDD;
    border-radius: 12px ;
}
.deal-top{
    padding: 10px ;
}
.nonstop{
    display: flex ;
    justify-content: flex-start ;
    align-items: flex-start ;
    gap: 10px ;
    li{
        display: flex ;
        justify-content: flex-start ;
        align-items: center ;
        gap: 10px ;
        font-size: 12px ;
        font-weight: 500 ;
        color: #848484 ;
        .dots{
            width: 4px ;
            height: 4px ;
            border-radius: 50% ;
            display: flex;
            background: #848484 ;
            justify-content: center;
            align-items: center;
        }
    }
}
.deal-fare-sec{
    border-top: 1px solid #EDEDED;
    padding: 10px ;
}
.deals-fare{
    font-size: 28px ;
    font-weight: 600 ;
    color: #067000 ;
    span{
        font-size: 10px ;
        font-weight: 500 ;
        color: #848484 !important;
    }
}
.booknow-btn{
    button{
        font-size: 18px ;
        font-weight: 600 ;
        color: #002374 ;
        background: #fff ;
        border: 1px solid #002374;
        padding: 7px 15px ;
        border-radius: 10px ;
    }
}

.hbzin-content-sec{
    .content-head{
    font-size: 30px ;
    font-weight: 600 ;
    color: #323232;
    text-transform: uppercase ;
    margin: 25px 0;
}
    p{
        font-size: 14px ;
        font-weight: 400 ;
        color: #626262 ;
    }
}

.travel-img{
    width: 96px ;
    height: 80px ;
    img{
        width: 100% ;
        border-radius: 4px ;
    }
}
.travel-main{
    width: 100% ;
    display: flex ;
    justify-content: flex-start ;
    align-items: flex-start ;
    padding: 5px ;
    border: 1px solid #DDDDDD;
    border-radius: 8px ;
}
.trvl-head{
    font-size: 16px ;
    font-weight: 600 ;
    color: #002374 ;
}
.travel-txt{
    width: calc(100% - 95px );
    font-size: 12px ;
    padding-left: 10px ;
    font-weight: 300 ;
    color: #626262 ;
}


@media screen and (max-width:768px) {
    .deals-fare {
        font-size: 22px;
    }
    .booknow-btn {
        button {
            font-size: 16px;
            font-weight: 600;
            color: #002374;
            background: #fff;
            border: 1px solid #002374;
            padding: 5px 10px;
            border-radius: 7px;
        }
    }
    .hbzin-content-sec {
        .content-head {
            font-size: 20px;
            margin: 10px 0;
        }
        p {
            font-size: 12px;
        }
    }
    .scroll-main{
    flex-wrap: nowrap ;
    overflow-x: scroll ;
    .col-lg-4{
        width: 90% ;
    }
}
.excl-cities{
    font-size: 20px ;
    color: #323232 ;
    font-weight: 600 ;
}
.deal-top {
    p {
        font-size: 16px;
    }
}
.view-more{
    button{
        width: 100% ;
        display: flex ;
        justify-content: center ;
        align-items: center;
        height: 45px ;
        border-radius: 8px ;
        font-size: 15px ;
        font-weight: 500 ;
        color: #fff ;
        background: linear-gradient(180deg, #FD5D68 0%, #F62053 100%) ;
        border: none ;
    }
}

/* first 3 show */
    .deal-item:nth-child(-n+3){
        display: block;
    }

    /* rest hide */
    .deal-item{
        display: none;
    }

    /* when active show all */
    .deals-sec.show-all .deal-item{
        display: block;
    }
}


