﻿
/*** Destination Start ***/
.des .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

    .des .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
        position: absolute;
        /* bottom: -100%; */
        left: 0;
        z-index: 3;
        transition: 0.5s;
        margin-top: -133px;
    }

    .des .tab-class .tab-content .tab-pane .destination-img .search-icon {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        display: flex;
        justify-content: end;
        padding: 20px 20px 0 0;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        transition: 0.5s;
    }

        .des .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
            opacity: 0;
            transition: 0.5s;
        }

.des .tab-class .nav-item {
    padding: 0 0 20px 0;
}

    .des .tab-class .nav-item a.active {
        background: var(--bs-primary) !important;
    }

        .des .tab-class .nav-item a.active span {
            color: var(--bs-white) !important;
        }

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.des .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.des .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.des .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.des .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/
