
.with-bg{
    background: linear-gradient(235.53deg, #ebebeb 16.07%, #f4f4f500 111.34%);
}
.bannerSection {
    position: relative;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.bannerSection::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.bannerWrapper {
    position: relative;
    padding: 200px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.bannerContent{
    text-align: center;
}
.bannerContent h1 {
    color: #fff;
    line-height: 150%;
    font-size: 45px;
    padding-bottom: 20px;
}

.bannerContent ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.bannerContent ul li {
    font-size: 20px;
    line-height: 150%;
    color: #fff;
    display: block;
    position: relative;
}
.bannerContent ul {
    list-style: none;
}

.bannerContent ul li::before {
    content: "🔥";
}

.bannerBtn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 25px auto 0;
    min-width: 150px;
    text-align: center;
}
.bannerBtn span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
}
.bannerBtn::before {
    position: absolute;
    content: '';
    background-color:#fff;
    transition: 0.3s ease-out;
}
.bannerBtn.btn-1 span {
    color: #000;
    border: 1px solid #fff;
    transition: 0.2s 0.1s;
}
.bannerBtn span:hover {
    color: #fff;
    transition: 0.2s 0.1s;
}


.bannerBtn.hover-filled-slide-down::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.bannerBtn.hover-filled-slide-down:hover::before {
    height: 0%;
}





.welcome {
    padding: 60px 0 ;
}
.bookingPrice,.needHelp{
    display: none;
}

.welcomeWrapper {
    column-gap: 40px;
}
.welcomeWrapper .welcomeContent{
    max-width: calc(100% - 400px);

}
.welcomeWrapper h2 {
    font-size: 35px;
    line-height: 130%;
    padding-bottom: 30px;
    font-weight: 600;
    color: #000;
}

.welcomeWrapper p {
    color: #484141;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding-bottom: 15px;
    line-height: 150%;
}

.welcomeWrapper a {
    display: block;
    padding: 8px 20px;
    color: #fff;
    background-color: #ff891e;
    max-width: max-content;
    border-radius: 10px;
    font-size: 16px;
    line-height: 150%;
    border: 2px solid transparent;
    margin: 30px auto 0;
    font-weight: 500;
    transition: 0.3s ease all;
}

.welcomeWrapper a:hover {
    opacity: 0.8;
}

.packages {
    padding: 60px 0;
}

.secHead h2 {
    font-size: 35px;
    line-height: 130%;
    padding-bottom: 10px;
    font-weight: 600;
    color: #000;
}

.secHead p {
    font-size: 16px;
    font-weight: normal;
    line-height: 150%;
    color: #484141;
    padding-bottom: 10px;
}

.packagesWrapper {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    row-gap: 30px;
    flex-wrap: wrap;
}

.packageCard {
    max-width: 32%;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 2px solid transparent;
    background-color: #fff;
}

.packageImage {
    position: relative;
}

.packageImage img {
    display: block;
    border-radius: 15px;
    width: 100%;
    max-height: 256px;
}

.packageDetails {
    background-color: #fff;
    border-radius: 15px;
    max-width: 100%;
    width: 100%;
    margin: -30px auto 0;
    position: relative;
    padding: 20px;

}


.packageCard:hover {
    border-color: #ff891e;
}

.detailsHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detailsHead .rating img {
display: block;
height: auto;
max-width: 110px;
width: 100%;
}
.photography{
    display: flex;
    gap: 5px;
}
.photography img {
    display: block;
    height:auto;
    max-width: 20px;
    width: 100%;
}
.packageDetails .packageName {
    color: #000000;
    font-size: 21px;
    font-weight: 700;
    text-align: left;
    padding: 10px 0;
    width: 100%;
}

.packageDetails .inclusions,
.packageDetails .timings {
    padding: 0px 0px 20px 0px;
    list-style: none;
}

.packageDetails .inclusions li,
.packageDetails .timings li {
    display: block;
    color: #4B4F58;
    font-size: 16px;
    padding-bottom: 15px;
    position: relative;
    padding-left: 25px;
    line-height: 130%;
}

.packageDetails .inclusions li::before {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    background-image: url(images/check-icon.svg);
    left: 0;
    top: 2px;
    background-size: cover;
    background-repeat: no-repeat;
}

.packageDetails .timings li::before {
    position: absolute;
    content: '';
    width: 17px;
    height: 17px;
    background-image: url(images/scheduleGreen.svg);
    left: 0;
    top: 2px;
    background-size: cover;
    background-repeat: no-repeat;
}

.detailsBtm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: #FAF8F4;
    border-radius: 6px;
    border: 1px solid transparent;
}

.detailsBtm:hover {
    border-color: #ff891e;
}

.timeBtm,.availability,.bookNow {
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.timeBtm img,.availability img,.bookNow img{
    display: block;
    height: auto;
    max-width: 20px;
    width: 100%;
}



.bookNow a {
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 6px;
    cursor: pointer;
    color: #ff891e;
}

.pricing {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.pricing p {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
}

.pricing span {
    display: inline-block;
    color: #ff891e;
    font-weight: 700;
}
.buffetSection{
    padding: 60px 0;
}

.buffetSection .secHead{
    padding-bottom: 30px;
    border-bottom: 1px dotted rgba(45, 45, 45, .53);
}
.buffetSection .secHead h2{
    text-align: left;
}


.cityTours {
    padding: 60px 0;
}

.cityToursWrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    flex-wrap: wrap;
}

.cityTourCard {
    max-width: 31%;
    width: 100%;
    margin: 10px;
    position: relative;
    border-radius: 25px 0px 25px 25px;
}

.cityCardWrapper {
    padding: 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.cityTourCard.dubai {
    background-image: url('images/dubai-city-tour.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cityTourCard.abudhabi {
    background-image: url('images/abu-dhabi-city-tour.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cityTourCard.Alain {
    background-image: url('images/al-ain-city-tour.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.cityTourOverlay {
    background-color: #000;
    opacity: .5;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.3s ease all;
    border-radius: 25px 0px 25px 25px;
}

.cityTourCard:hover .cityTourOverlay {
    opacity: .8;
}

.cityToursWrapper p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 1.2px;
    padding-bottom: 20px;
}

.cityToursWrapper span {
    display: block;
    line-height: 150%;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 20px;
}

.cityCardWrapper a {
    display: block;
    padding: 5px 20px;
    color: #000;
    background-color: #fff;
    max-width: max-content;
    border-radius: 30px;
    font-size: 16px;
    line-height: 150%;
    border: 1px solid #000;
    transition: 0.3s ease all;
}

.cityCardWrapper a:hover {
    transform: scale(1.1);
}
.faqSection{
    padding: 60px 0;
}
.faqsWrapper{
    max-width: 900px;
    width: 100%;
    margin: 40px auto 0;
}

.card {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(35, 63, 140, 0.24);
    border-radius: 12.341px;
    margin-bottom: 14px;
}

.card-head {
    padding: 17px 20px 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-head h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 164.5%;
    color: #000;
    width: 100%;
    max-width: 100%;
}

.card-body {
    padding: 0 20px 30px;
}

.card-body p,
.card-body ul li,
.card-body ol li {
    font-style: normal;
    font-weight: 450;
    font-size: 15px;
    line-height: 164.5%;
    color: #000;
    padding-bottom: 6px;
}

.card-body ul,
.card-body ol {
    padding-bottom: 7px;
    padding-top: 7px;
    padding-left: 30px;
}

.card.show .card-head h3,
.card:hover .card-head h3 {
    color: #ff891e;
    fill:#4CAEFF;
}
.card.show .card-head  img,
.card:hover .card-head  img{
    filter: brightness(0) saturate(100%) invert(74%) sepia(32%) saturate(1559%) hue-rotate(336deg) brightness(102%) contrast(90%);
}
.card .card-head  img,
.card .card-head  img{
    display: block;
    width: auto;
    height: auto;
}
.card.show,
.card:hover {
    border: 1px solid #ff891e;
}
.card.show .card-head  img  {
    transform: rotate(135deg);
  }
.contentSection{
    padding: 60px 0;
}
  .contentWrapper {
    padding: 50px 30px;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: #0000001f 0 2px 15px;
    border-radius: 25px;
}
.contentWrapper p, .contentWrapper ul li, .contentWrapper ol li {
    font-size: 17px;
    line-height: 150%;
    color: #3a3a3a;
    margin-bottom: 18px;
}
.contentWrapper h2 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 25px;
    line-height: 150%;
    text-align: left;
    color: #222;
    padding-bottom: 25px;
}
.contentWrapper h3 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 22px;
    line-height: 150%;
    text-align: left;
    color: #222;
    padding-bottom: 25px;
}
.contentWrapper h4 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-align: left;
    color: #222;
    padding-bottom: 10px;
}
.contentWrapper ul, .contentWrapper ol {
    padding-left: 40px;
}
.buffetWrapper{
    width: 100%;
}

.buffetCard{
    max-width: 32%;
    width: 100%;
}
.buffetHead{
column-gap: 10px;
margin-bottom: 25px;
}
.buffetHead img{
    display: block;
    width: 40px;
    height: 40px;
}
.buffetCard ul{
    padding-left: 30px;

}
.buffetCard ul li{
    color: #4B4F58;
    font-size: 15px;
    padding-bottom: 15px;
    position: relative;
    line-height: 130%;
    display: block;
    position: relative;
}
.buffetCard ul  {
    list-style: none;
}
.buffetCard ul li::before {
    content: "🔥";
}
@media(max-width:768px) {
    .welcomeWrapper .welcomeContent{
        max-width: 100%;
    }
    .bannerContent h1 {
        font-size: 30px;
    }
    .bannerContent ul li {
        font-size: 18px;
    }
    .welcomeWrapper h2 {
        font-size: 25px;
    }
    .welcomeWrapper p {
        font-size: 16px;
    }
    .secHead h2 {
        font-size: 25px;
    }
    .packageCard {
        max-width: 48%;
    }
    .cityTourCard {
        max-width: 47%;
    }
    .bookingFo{
        margin: 0 auto;
    }

}
@media(max-width:575px) {
    .bannerSection {
        /*background-image: url(images/desert-safari-in-abu-dhabi.webp);*/
        background-attachment: unset;
    }
    .bannerContent h1 {
        font-size: 25px;
    }
    .welcomeWrapper h2 {
        font-size: 22px;
        text-align: center;
    }
    .secHead h2 {
        font-size: 22px;
    }
    .bannerContent ul {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    .packageCard {
        max-width: 100%;
    }
    .secHead h2 {
        font-size: 25px;
        text-align: center;
    }

    .secHead p {
        text-align: center;
        padding-bottom: 10px;
    }
    .buffetWrapper {
        width: 100%;
        flex-wrap: wrap;
    }
    .buffetCard {
        max-width: 100%;
        width: 100%;
    }
    .packagesWrapper,
    .cityToursWrapper {
        column-gap: 0;
        row-gap: 30px;
        flex-wrap: wrap;
    }
    .detailsBtm span{
        display: block;
        font-size: 12px;
    }
    .packageDetails .inclusions li, .packageDetails .timings li {
        font-size: 15px;
    }
    .bookNow a {
        font-size: 14px;
    }
    .packageCard,
    .cityTourCard {
        max-width: 100%;
    }
    .card-head h3 {
        font-size: 16px;
    }
    .contentWrapper h2 {
        font-size: 20px;
    }
    .contentWrapper p, .contentWrapper ul li, .contentWrapper ol li {
        font-size: 16px;
    }
    .buffetSection .secHead h2 {
        text-align: center;
    }
}