@font-face { font-family: 'HigherJump'; src: url('../font/HigherJump.ttf'); } 
@font-face { font-family: 'gothic'; src: url('../font/gothic.woff') format('woff');}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --light-purple--: #f3e8ff;
    --purple-shade--: #cea2ff;
    --purple-shade-2--: #B13397;
    --purple--: #5C03B5;
    --red--: #EC1C24;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "gothic";
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    font-family: 'HigherJump';
    line-height: 2;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff;
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

.mob_v_banner{
    display: none !important;
}

.sec_ps_5{
    padding-left: 5%;
}

.sec_px_5{
    padding-left: 5%;
    padding-right: 5%;
}

.heading h2{
    font-size: 36px;
}

.text_purple{
    color: var(--purple--);
}
.text_red{
    color: red;
}
.text_weight_700{
    font-weight: 700;
}

.content p{
    font-size: 20px;
    font-weight: 400;
}

.about_img{
    border: 20px solid var(--purple-shade--);
    border-right: none;
    background: var(--purple-shade--);
    border-radius: 500px 0 0 500px;
    overflow: hidden;
}

.bg_light_purple{
    background: var(--light-purple--);
}

.time_bg{
    position: relative;
    z-index: 2;
    padding-top: 400px;
    padding-bottom: 200px;
}

.time_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--light-purple--);
    z-index: -2;
}

.time_bg::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/time_bg_img.avif) no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -2;
    clip-path: ellipse(80% 100% at 50% 100%);
    /* clip-path: circle(150% at 50% 255%); */
}

.date_time p{
    font-size: 20px;
    font-weight: 700;
}

.book_now_btn{
    display: inline-block;
    padding: 20px 30px;
    background: #fff;
    color: var(--red--);
    font-size: 28px;
    font-weight: 800;
    border-radius: 50px;
    transition: 0.3s;
}

.book_now_btn:hover{
    transform: scale(1.1);
    color: var(--red--);
}

.highlights_sec_bg{
    position: relative;
    z-index: 2;
}

.highlights_sec_bg::before{
    /* content: ''; */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: #fff; */
    z-index: -2;
    /* opacity: 0.3; */
    /* background: #FFFFFF03; */
}

.highlights_sec_bg::after{
    /* content: ''; */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:  url(../images/highlight_bg.avif);
    background-size: cover;
    background-position: center center;
    z-index: -1;
    filter: blur(6px);
    -webkit-filter: blur(6px);
    
    /* background-blend-mode: overlay; */
}

.highlights_sec_bg .highlights_sec_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #FFFFFF03;
    mix-blend-mode: overlay;
}

.highlights_sec_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px)

}

.highlights_card img{
    border-radius: 50%;
    border: 15px solid #fff;
    margin-bottom: 10px;
}

.highlights_card h3{
    text-align: center;
    color: #fff;
}

.book_now_btn.bg_purple{
    background: var(--purple-shade-2--);
    color: #fff;
}

.itinerary_card{
    padding: 25px 40px;
    border: 1px dashed;
    border-radius: 10px;
    height: 100%;
    background: #fff;
}

.itinerary_card.purple_color{
    border-color: var(--purple-shade-2--);
}

.itinerary_card.orange_color{
    border-color: #F97A32;
}

.itinerary_card.green_color{
    border-color: #52B701;
}

.itinerary_card.red_color{
    border-color: #FF3401;
}

.itinerary_card .itinerary_card_heading{
    display: flex;
    align-items: center;
    gap: 20px;
}


.itinerary_card .itinerary_card_heading .itinerary_card_icon{
    width: 60px;
    height: 60px;
    /* background: #000; */
    padding: 10px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.itinerary_card.purple_color .itinerary_card_heading .itinerary_card_icon{
    background: #FFF0FC;
}

.itinerary_card.orange_color .itinerary_card_heading .itinerary_card_icon{
    background: #FFF4EE;
}

.itinerary_card.green_color .itinerary_card_heading .itinerary_card_icon{
    background: #EEFFE1;
}

.itinerary_card.red_color .itinerary_card_heading .itinerary_card_icon{
    background: #FFEDE9;
}

.itinerary_card .itinerary_card_heading .itinerary_card_icon img{
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.itinerary_card .itinerary_card_heading h3{
    font-size: 20px;
    margin: 0;
}

.itinerary_card.purple_color .itinerary_card_heading h3{
    color: var(--purple-shade-2--);
}

.itinerary_card.orange_color .itinerary_card_heading h3{
    color: #F97A32;
}

.itinerary_card.green_color .itinerary_card_heading h3{
    color: #52B701;
}

.itinerary_card.red_color .itinerary_card_heading h3{
    color: #FF3401;
}

.itinerary_card  .border_1{
    display: flex;
    width: 80%;
    height: 2px;
    background: #D9D9D9;
    align-items: center;
    justify-content: space-between;
}

.itinerary_card .border_1::before{
    content: '';
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
}

.itinerary_card .border_1::after{
    content: '';
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    /* border-radius: 50%; */
    transform: rotate(-45deg);
}

.itinerary_card .time h4{
    font-size: 13px;
}

.itinerary_card.purple_color .time h4{
    color: var(--purple-shade-2--);
}

.itinerary_card.orange_color .time h4{
    color: #F97A32;
}

.itinerary_card.green_color .time h4{
    color: #52B701;
}

.itinerary_card.red_color .time h4{
    color: #FF3401;
}

.itinerary_card .content p{
    margin-bottom: 10px;
}

.big_btn{
    font-size: 40px;
    background: var(--purple--);
    color: #fff;
}

.big_btn:hover{
    color: #fff;
}

.itinerary_sec_bg{
    position: relative;
    z-index: 2;
}

.itinerary_sec_bg .itinerary_sec_img{
    position: absolute;
    left: 13%;
    top: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: rotate(130deg);
}


.epic_rider_slider{
    position: relative;
}

.epic_rider_slider .slick-arrow{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: #E9E9E9;
    color: #000;
    border-radius: 50%;
    border: none;
    z-index: 2;
    transition: 0.3s;
}

.epic_rider_slider .slick-arrow.slick-disabled{
    visibility: hidden;
}

.epic_rider_slider .slick-arrow:hover{
    /* background: var(--yellow--); */
}

.epic_rider_slider .slick-arrow.slick-prev{
    left: 0%;
    transform: translate(0% , -50%);
}

.epic_rider_slider .slick-arrow.slick-next{
    right: 0%;
    transform: translate(0% , -50%);
}

.epic_rider_sec_bg{
    background: #E4CCFF;
}

.text_purple_shade{
    color: var(--purple-shade-2--);
}

.epic_ride{
    padding: 10px;
    position: relative;
}

.epic_ride::before{
    content: '';
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    background: #FFFFFF;
    z-index: -1;
}

.footer_logo img{
    width: 150px;
}

.footer_menu ul{
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.footer_menu ul li a{
    display: flex;
    gap: 5px;
    font-size: 18px;
}

.footer_menu ul li a:hover{
    color: var(--purple-shade-2--);
}

.footer_menu ul li a i{
    color: var(--purple--);
}

.copy_right_sec{
    background: var(--purple--);
}

.copy_right{
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.copy_right p{
    color: #fff;
}

.copy_right p a{
    color: #fff;
}

.terms_conditions_bg{
    background: #eb2932;
}

.terms_conditions_card{
    padding: 20px 20px;
    border: 2px dashed #fff;
    border-radius: 20px;
    height: 100%;
}

.terms_conditions_card p{
    color: #fff;
}

.terms_btn{
    font-size: 16px;
    display: inline-block;
    color: #000;
}