@charset "utf-8";
/* CSS Document */


.tour-package-card-section {
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    /* transparency effect */
    background-color: #f6f6f6;
    background-blend-mode: lighten;

    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 30px;
}

.tour-package-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 10px;

}

.direction-ar {
    direction: rtl
}

.direction-en {
    direction: ltr
}

/* Card */
.tour-package-card {
    background: #fff;
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 1;
    transition: all 1s ease;
    position: relative;
    margin-bottom: 10px
}

.border_raduis_card_en {
    border-radius: 40px 40px 40px 0px;
}

.border_raduis_card_ar {
    border-radius: 40px 40px 0px 40px;
}

.tour-package-card:hover {
    margin-top: 10px
}

/* Visible on scroll */
.tour-package-card.show {
    opacity: 1;
    transform: translateY(0);
}

.tour-package-card-image {
    position: relative;


    overflow: hidden;
}

.border_raduis_image_en {
    border-radius: 35px 35px 35px 0px;
}

.border_raduis_image_ar {
    border-radius: 35px 35px 0px 35px;
}

.border_raduis_image_en {
    border-radius: 35px 35px 35px 0px;
}

.border_raduis_image_ar {
    border-radius: 35px 35px 0px 35px;
}

.border_raduis_feature_en {
    right: 15px;
    border-radius: 20px 20px 20px 0px;
}

.border_raduis_feature_ar {
    left: 15px;
    border-radius: 20px 20px 0px 20px;
}

.tour-package-card-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    /* smooth zoom effect */
}

/* Zoom on hover */
/*
.tour-package-card:hover .tour-package-card-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}
*/

/* Badge */
.tour-package-card-badge {
    position: absolute;
    top: -10px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 600;
    z-index: 2;
}

.tour-package-card-badge.popular {
    background: #00bcd4;
}

/* Favorite */
.tour-package-card-fav {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #00c9c9;
    color: #fff;
    border: none;
    letter-spacing: 2px;
    height: 30px;
    border-radius: 20px;
    cursor: pointer;
}

.tour-package-card:hover .tour-package-card-title {
    color: var(--third-color);
}

.tour-package-card-title {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    /* font-weight: 600; */
    line-height: 1.2;
}

.tour-package-card-period {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    /* font-weight: 600; */
    line-height: 1.2;
}

.tour-package-card-period i {

    color: var(--secondary-color)
}

.tour-package-card-prices-see {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 20px
}

.tour-package-card-prices {
    color: var(--dark-color);
    font-weight: 500;
}

.tour-package-card-prices span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 19px;
}

.tour-package-card-see {
    color: var(--dark-color);
    font-weight: 800;
    font-size: 16px;
    text-transform: capitalize
}

.tour-package-card-see:hover {
    color: var(--secondary-color);

}

@media screen and (max-width: 1100px) {
    .tour-package-card-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 10px;

    }
}

@media screen and (max-width: 800px) {
    .tour-package-card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 10px;

    }
}