@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');
div.banner {
    height: auto;
    /* aspect-ratio: 3.5/1; */
    margin-top: calc(65px + 20px);
    position: relative;
    display: flex;
    gap: 20px;
    & div.child {  
        position: relative;      
        border-radius: 27px;
        overflow: hidden;
        & button.toggle {
            height: 45px;
            aspect-ratio: 1/1;
            border: 0;
            outline: none;
            background-color: #ffffffaf;
            position: absolute;
            top: 50%;
            border-radius: 50px;
            transform: translate(0, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            & svg {
                height: 20px;
                width: 20px;
                display: flex;
                overflow: visible;
            }
            &:hover {
                background-color: #fff;
            }
        }
        & button.toggle:first-child {
            left: 14px !important;
        }
        & button.toggle.right {
            right: 14px !important;
        }
    }
    & div.child.start {
        width: 70%;
        height: 350px;
        & a.slide {
            display: flex;
            height: 100%;
            width: 100%;
            & img {
                object-fit: cover;
            }
        }
        & a.slide[data-visibility="hidden"] {
            display: none;
        }
    }
    & div.child.end {
        border-radius: 0;
        flex: 1;
        display: grid;
        gap: 14px;
        & a.content {
            height: 150px;
            background-color: #d3d3d3;
            border-radius: 27px;
            overflow: hidden;
            & img {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
    }

    & div.query {
        background-color: #f2f2f2;
        border-radius: 17px;
        margin-top: 20px;
        padding: 25px;
        & p:first-child {
            font-weight: 600;
            color: #000;
            font-family: "Bricolage Grotesque", sans-serif;
        }
        & svg {
            height: 18px;
            width: 18px;
            display: flex;
            overflow: visible;
            fill: #454545;
        }
    }
    & div.query div {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        & p {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 15px;
        }
        a {
            color: #212121;
            font-weight: 500;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
    }
    a.call-now {
        display: flex;
        align-items: center;
        width: 100%;
        background-color: rgb(233 76 59);
        border-radius: 50px;
        font-size: 16px;
        color: #fff;
        font-weight: 600;
        justify-content: center;
        height: 42px;
        text-decoration: none;
    }
}
div.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div.banner div.booking {
    position: absolute;
    bottom: -75px;
    height: 100px;
    width: 70%;
    left: 15%;
    border-radius: 14px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

div.popular-packages {
    background-color: transparent;
    margin-bottom: 30px;
    & h2 {
        font-size: 28px;
        font-weight: 600;
    }
    & div.child {
        width: 70%;        
        height: auto;
        margin-top: -300px;
    }
    & div.packages {
        background-color: transparent;
        margin-top: 14px;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    & a.package {        
        /* height: 300px; */
        width: 33.33%;
        border-radius: 17px;
        border: 1px solid #d3d3d3;
        & p.package-name {
            font-size: 17px;
        }
        & div.texts {
            margin: 12px;
        }
        & p.duration {
            font-size: 13px;
        }
        & img {
            height: 200px;
        }
    }
}

div.most-recommended {
    height: auto;
}
div.categories {
        margin-top: 14px;
        display: flex;
        flex-direction: row;        
        flex-wrap: wrap;
        gap: 20px;        
        margin-bottom: 50px;
        & a.category {
            position: relative;
            background-color: #fff;
            width: calc(25% - 15px);
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 27px;
            & img {
                height: 100%;
                width: 100%;
                display: flex;
                object-fit: cover;
            }
            & div.bg {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background-color: #0000006c;
                z-index: 1;
            }
            & p {
                font-family: "Playball", cursive;
                color: #fff;
                top: 50%;
                left: 50%;
                position: absolute;
                z-index: 2;
                font-size: 44px;
                transform: translate(-50%, -50%);
            }
        }
}

div.international-packages h2,
div.domestic-packages h2 {
    display: flex;
    justify-content: space-between;
    & a {
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 50px;
        font-size: 15px;
        background-color: #fff;
        border: 1px solid rgb(233 76 59);;
        text-decoration: none;
        font-weight: 500;
        color: rgb(233 76 59);
        height: 36px;
        &:hover {
            background-color: rgb(233 76 59);
            color: #fff;
        }
    }
}
div.international-packages a.category,
div.domestic-packages a.category {
    background-color: #f7f7f7;
    aspect-ratio: 1/ 1.3;
    & p {
        top: calc(100% - 70px);
        transform: translate(-50%, 0); 
    }
    /* height: 300px; */
}

div.google-rating {
    background-color: #464646;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: auto;
    padding: 12px;
    border-radius: 7px;
    & img {
        position: relative !important;
        height: 34px !important;
        width: auto !important;
        z-index: 1 !important;
        display: flex !important;
    }
    & div.stars {
        display: flex;
        gap: 3px;
        margin-bottom: 7px;
    }
    & div.stars img {
        height: 14px !important;
        width: auto !important;
    }
    & p.total-reviews {        
        color: #d9d9d9;
        font-size: 14px;
        display: flex;
        gap: 10px;
        & span span {
            font-weight: 500;
            font-size: 15px;
            color: #e5e5e5;
        }
    }
    /* & p.rating {
        font-size: 24px;
        font-weight: bold;
    } */
}
div.reviews {
    margin-bottom: 30px;
    & div.child {
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }
    & div.tab.start {
        width: 370px;
    }
    & h2 {
        font-size: 22px;
        font-weight: 400;
        color: #353535;
        font-family: 'Inter', sans-serif;
    }
    & h3 {
        font-size: 36px;
        font-family: "Bricolage Grotesque", serif !important;
        margin: 10px 0;
        & span {
            font-family: "Bricolage Grotesque", serif !important;
        }
    }
    & div.google-rating {
        background-color: #f8f9fa;
        & p.total-reviews {        
            color: #353535;
            font-size: 14px;
            display: flex;
            gap: 10px;
            & span span {
                font-weight: 500;
                font-size: 15px;
                color: #272727;
            }    
        }
    }
}
div.reviews div.tab.end {
    flex: 1;
    height: auto;
    & div.subtab {
        width: calc(33.33% - 10px);
        display: grid;
        gap: 14px;
    }
    & div.inside {
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
        /* max-height: 600px; */
        overflow: auto;
    }
    & div.inside::-webkit-scrollbar {
        display: none;
    }
    & div.review {
        /* width: calc(33.33% - 10px); */

        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 17px;
    }
}
div.reviews div.tab.end div.review {
    & a.heading {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        text-decoration: none;
        color: #272727;
    }
    & a.heading:hover {
        opacity: 0.8;
        & img:first-child {
            opacity: 0.5;
        }
    }
    & a.heading img:nth-child(1) {
        height: 35px;
        width: 35px;
        object-fit: cover;
        border-radius: 50px;
        overflow: visible;
    }
    & a.heading img:last-child {
        height: 22px;
        width: auto;
    } 
    & a.heading p {
        flex: 1;
        display: block;
        & span {
            display: block;
            font-size: 15px;
        }
        & span:last-child {
            font-size: 12px;
            color: #353535;
            margin-top: 3px;
        }
    }
    & div:nth-child(2) {
        margin-top: 14px;
    }
    & div:nth-child(2) p {
        font-size: 15px;
        line-height: 1.4;
        margin-top: 10px;
        color: #272727;
    }
    & div.stars {
        display: flex;
        gap: 3px;
        margin-bottom: 7px;
    }
    & div.stars img {
        height: 14px !important;
        width: auto !important;
        overflow: visible;
    }
}
a.read-all-reviews {
    font-size: 15px;
    text-decoration: none;
    color: #272727;
    background-color: rgba(233, 76, 59, 0.1);
    padding: 0 20px;
    height: 42px;
    border-radius: 50px;
    transition: all 250ms ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 250ms ease-in-out;
    
    & svg {
        transition: transform 250ms ease-in-out;
        height: 12px;
        width: 12px;
        display: flex;
        fill: #353535;
    }
    & img {
        height: 20px;
        width: auto;
    }
    & img[data-type="white"] {
        display: none;
    }    
    &:hover {
        background-color: rgba(233, 76, 59, 1);
        color: #fff;
        & svg {
            fill: #fff;
            transform: rotate(45deg);            
        }
        & img[data-type="white"] {
            display: flex;
        }
        & img[data-type="normal"] {
            display: none !important;
        }
    }
}

div.partners {
    background-color: rgba(233, 76, 59, 0.1);
    & h2 {
        color: rgba(233, 76, 59);
    }
    & div.child {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;        
        height: 100px;
        & div.tab {
            width: 70%;
            height: 100%;
            display: flex;
            gap: 70px;
            align-items: center;
            justify-content: flex-end;
            & img {
                height: 37px;
                width: auto;
                display: flex;
            }
        }
    }
}

@media only screen and (max-width: 1390px) {
    div.reviews div.tab.end div.subtab {
        width: calc(50% - 7px);
    }
    /* div.reviews div.tab.end div.subtab:last-child {
        display: none !important;
    } */
}

@media only screen and (max-width: 1240px) {
    div.experience div.overlay {
        height: 96px;
    }
}

@media only screen and (max-width: 1160px) {
    div.banner {
        display: grid;
        & div.child.start {
            width: 100%;
        }
        & div.end {
            display: flex !important;
            flex-direction: row;
            & a.content {
                flex: 1;
            }
            & div.query, & a.call-now {
                display: none;
            }
        }
    }
    div.popular-packages {
        & div.child {
            width: 100%;
            margin-top: 40px;
        }
    }
    
}

@media only screen and (max-width: 1090px) {
    div.reviews div.child { 
        display: grid;
        gap: 20px;
    }
    /* div.customer-stories div.short-video,
    div.packages a.package {
        width: calc(50% - 15px) !important;
    } */
}

@media only screen and (max-width: 1040px) {
    /* div.banner {
        display: grid;
        & div.child.start {
            width: 100%;
        }
        & div.end {
            display: flex !important;
            flex-direction: row;
            & a.content {
                flex: 1;
            }
            & div.query {
                display: none;
            }
        }
    }
    div.popular-packages {
        & div.child {
            width: 100%;
            margin-top: 50px;
        }
    } */
    div.categories a.category {
        width: calc(33.33% - 14px);
    }
}

@media only screen and (max-width: 940px) {
    div.popular-packages div.packages {
        flex-wrap: wrap;
    }
    div.popular-packages a.package {
        width:calc(50% - 12px);
        
    }
    div.categories a.category {
        width: calc(33.33% - 14px);
    }

    div.partners div.child div.tab {
        gap: 50px;
        & img {
            height: 35px;
        }
    }
    
}

@media only screen and (max-width: 840px) {

    /*div.services div.child {*/
    /*    gap: 30px !important;*/
    /*}*/
    /*div.services div.child div.image {*/
    /*    margin-left: -200px;*/
    /*}*/
    div.photos div.child {
        gap: 14px;
    }
    div.photos div.child div.tab {
        width: calc(50% - 7px);
        gap: 14px;
    }

    div.photos div.child {
        gap: 8px;
    }
    div.photos div.child div.tab {
        width: calc(50% - 4px);
        gap: 8px;
    }
    div.photos div.tab div.img-container {
        border-radius: 17px;
    }
}