
.t-destination {
    width: 100%;
    padding: 30px 0px 50px;
    float: left;
    background: #eee;
}

.top_dest_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px 15px;
    border-radius: 7px;
}

.top_dest_list {
    width: 23.5%;
}

    .top_dest_list:hover {
        transition: all ease 0.5s;
    }

        .top_dest_list:hover img {
            transform: scale(1.5);
        }

    .top_dest_list img {
        width: 100%;
        height: 200px;
        border-radius: 7px 7px 0 0;
        transition: all ease 2.5s;
    }

.topdest_seperator {
}

.seemoreDeals {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .seemoreDeals a {
        border: 1px solid #ed0101;
        color: #ed0101;
        font-size: 18px;
        font-weight: 600;
        width: 20%;
        display: inline-block;
        border-radius: 3px;
        padding: 9px 0;
    }

        .seemoreDeals a:hover {
            background: #f7f7f7;
        }

.t-destination p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 25px;
    color: #313541;
}

.t-destination ul {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    flex-direction: column;
}

.t-destination li {
    list-style: none;
    width: calc(25% - 15px);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all ease 0.5s;
}

    .t-destination li:hover {
        transition: all ease 0.5s;
    }

    .t-destination li img {
        transition: all ease 2.5s;
    }

    .t-destination li:hover img {
        transform: scale(1.5);
    }

    .t-destination li:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgb(0,0,0, 0.3);
        position: absolute;
        left: 0px;
        top: 0px;
        border-radius: 10px;
        display: none;
    }

    .t-destination li img {
        max-width: 100%;
        border-radius: 10px;
    }

    .t-destination li .cp {
        position: absolute;
        left: 0px;
        width: 100%;
        bottom: 0px;
    }

        .t-destination li .cp h3 {
            font-size: 24px;
            color: #fff;
            text-align: center;
            margin: 15px;
            font-style: italic;
        }

    .t-destination li p {
        font-size: 17px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background: rgba(0, 0, 0, 0.7);
        padding: 10px 0px;
    }

        .t-destination li p span {
            font-weight: bold;
            padding-left: 8px;
        }

        .t-destination li p strong {
            font-size: 26px;
            background: #ed0101;
            padding: 8px 10px;
            border-radius: 6px;
            color: #fff;
            font-weight: 600;
            margin-left: 15px;
        }

    .t-destination li .p-tag {
        background: url(../images/p-tag.png) left top no-repeat;
        width: 90px;
        height: 95px;
        font-size: 18px;
        color: #fff;
        position: absolute;
        left: 0px;
        top: 0px;
        background-size: 100%;
        z-index: 99;
        text-align: center;
        font-weight: bold;
        padding-top: 10px;
    }

.t-destination li .p-tag span {
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 15px;
}
.heading-m {
    font-size: 28px;
    font-weight: 600;
    color: #313541;
    text-align: center;
    padding-bottom: 15px;
    line-height: 28px;
    position: relative;
}
@keyframes move-dot {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

.heading-style {
    height: 7px;
    width: 97px;
    background: rgb(188 60 60 / 40%);
    position: relative;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 25px;
}

    .heading-style:before {
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        height: 10px;
        width: 10px;
        border-radius: 50px;
        background: #ed0101;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: move-dot;
        animation-name: move-dot;
    }

.flightDetails-seperator {
    width: 15%;
    position: relative;
    border-top: 2px solid #ed0101;
}

.searchDepartReturnWrap {
    width: 42%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.mt-20 {
    margin-top: 20px;
}

.dealsHeading {
    background: #ed0101;
    display: inline-block;
    color: #fff;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
}

.dealsHeading:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1px;
    border: 10px solid transparent;
    border-top: 10px solid #ed0101;
    transform: translate(-50%, 20px);
}
.dealsWrap h3 span.fromBG i {
margin: 0 5px;
font-size: 10px;
}
.dealsDesc {
    overflow: hidden;
    border-radius: 7px 7px 0 0;
}
.flightto {
    font-size: 16px;
    font-weight: 600;
    color: #313541;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}
.dealsWrap h3 {
    color: #000;
    background: #ffffff;
    font-size: 1.6rem;
    padding: 1rem 0;
    text-align: left;
}
.dealsWrap h3 span.fromBG {
    background: transparent;
    font-size: 15px;
    padding: 0;
    margin: 0;
    color: rgba(60, 58, 58, .92);
    font-weight: 600;
    text-transform: uppercase;
}
.dealsWrap h3 span.fromBG i {
    margin: 0 5px;
    font-size: 10px;
}
.dealsWrap h3 span {
    display: inline-block;
    background: transparent;
    border-radius: 5px;
    font-weight: 600;
    font-size: 17px;
    line-height: 15px;
    color: #ed0101;
}
.dealsWrap h3 div + div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
}
