
/* =========================================================
   PACKAGE MOROCCO
   PREMIUM TOUR CARDS
   TRAVEL TOUR / TOURMASTER
========================================================= */


/* =========================================================
   CARD
========================================================= */

.tourmaster-tour-grid {

    position: relative !important;

    overflow: hidden !important;

    border-radius: 18px !important;

    background: #ffffff !important;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.09) !important;

    transition:
        transform .4s ease,
        box-shadow .4s ease !important;

}


/* HOVER */

.tourmaster-tour-grid:hover {

    transform:
        translateY(-8px) !important;

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.16) !important;

}


/* =========================================================
   INNER
========================================================= */

.tourmaster-tour-grid-inner {

    border-radius: 18px !important;

    overflow: hidden !important;

    box-shadow: none !important;

}


/* =========================================================
   IMAGE
========================================================= */

.tourmaster-tour-thumbnail {

    position: relative !important;

    height: 330px !important;

    overflow: hidden !important;

    margin: 0 !important;

}


.tourmaster-tour-thumbnail img {

    width: 100% !important;

    height: 100% !important;

    display: block !important;

    object-fit: cover !important;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1) !important;

}


/* IMAGE ZOOM */

.tourmaster-tour-grid:hover
.tourmaster-tour-thumbnail img {

    transform:
        scale(1.08) !important;

}


/* =========================================================
   DARK GRADIENT
========================================================= */

.tourmaster-tour-thumbnail::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 70%;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,.10) 30%,
            rgba(0,0,0,.82) 100%
        );

    z-index: 2;

}


/* =========================================================
   PREMIUM OVERLAY
========================================================= */

.pm-tour-card-overlay {

    position: absolute !important;

    inset: 0 !important;

    z-index: 5 !important;

    pointer-events: none;

}


/* =========================================================
   BADGE
========================================================= */

.pm-tour-card-badge {

    position: absolute;

    top: 18px;
    left: 18px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    background:
        #b7791f;

    color:
        #ffffff;

    border-radius: 5px;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 7px 18px
        rgba(0,0,0,.18);

}


.pm-tour-card-star {

    color: #ffffff;

    font-size: 10px;

}


/* =========================================================
   ICON
========================================================= */

.pm-tour-card-icon {

    position: absolute;

    top: 17px;
    right: 17px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.45);

    border-radius: 50%;

    background:
        rgba(0,0,0,.25);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);

    transition:
        background .3s ease,
        transform .3s ease;

}


.pm-tour-card-icon svg {

    width: 21px !important;

    height: 21px !important;

    display: block !important;

    fill: none !important;

    stroke: #ffffff !important;

    stroke-width: 1.7 !important;

    stroke-linecap: round !important;

    stroke-linejoin: round !important;

}


.tourmaster-tour-grid:hover
.pm-tour-card-icon {

    background:
        #b7791f;

    border-color:
        #b7791f;

    transform:
        rotate(-8deg)
        scale(1.06);

}


/* =========================================================
   BOTTOM CONTENT
========================================================= */

.pm-tour-card-overlay-content {

    position: absolute;

    left: 20px;
    right: 60px;
    bottom: 20px;

    z-index: 6;

}


.pm-tour-card-location {

    display: block;

    margin-bottom: 6px;

    color:
        #e1b866;

    font-family:
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.pm-tour-card-overlay-title {

    color:
        #ffffff !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    line-height: 1.08;

    font-weight: 500;

    text-shadow:
        0 2px 12px
        rgba(0,0,0,.25);

}


/* =========================================================
   ARROW
========================================================= */

.pm-tour-card-arrow {

    position: absolute;

    right: 19px;
    bottom: 19px;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.16);

    border:
        1px solid
        rgba(255,255,255,.28);

    color:
        #ffffff;

    font-size: 19px;

    transition:
        .3s ease;

}


.tourmaster-tour-grid:hover
.pm-tour-card-arrow {

    background:
        #ffffff;

    color:
        #b7791f;

    transform:
        translateX(4px);

}


/* =========================================================
   OLD CONTENT
========================================================= */

.pm-old-tour-content {

    display: none !important;

}


/* =========================================================
   REMOVE DEFAULT TITLE / INFO
========================================================= */

.tourmaster-tour-content-wrap {

    display: none !important;

}


/* =========================================================
   REMOVE DEFAULT IMAGE EFFECTS
========================================================= */

.tourmaster-tour-thumbnail
.tourmaster-media-image {

    overflow: hidden !important;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .tourmaster-tour-thumbnail {

        height: 310px !important;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .tourmaster-tour-thumbnail {

        height: 360px !important;

    }


    .pm-tour-card-overlay-title {

        font-size: 25px;

    }


    .pm-tour-card-badge {

        top: 15px;

        left: 15px;

    }


    .pm-tour-card-icon {

        top: 14px;

        right: 14px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .tourmaster-tour-thumbnail {

        height: 330px !important;

    }


    .pm-tour-card-overlay-title {

        font-size: 23px;

    }

}