@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Reenie+Beanie&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Base CSS */

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

.text-right{
    text-align: right;
}

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

a:focus {
    outline: 0 solid;
}

img {
    max-width: 100%;
    height: auto;
}

body{
    position: relative;
    width: 100%;
    height: auto;
    font-family: var(--primary-font);
    overflow-x: hidden;
    z-index: 1;
}

.container{
    max-width: 1350px;
    width: 100%;
    margin: auto;
}

:root {
    /* Colors */
    --primary-color: #4285F4;
    --secondry-color: #181D4E;
    --text-color: #6E6E6E;
    --white: #ffffff;
    --black: #000000;

    /* Fonts Family */
    --primary-font: "Poppins", sans-serif;
    --secondry-font: "Manrope", sans-serif;
    --accent-font:  "Reenie Beanie", cursive;

    /* Font Weights */
    --bold: 700;
    --extarbold: 800;
    --regular: 400;
    --medium: 500;
    --semibold: 600;

    /* Others */
    --border-color: #E4E6E8;
    --transition: .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color: var(--secondry-color);
    font-family: var(--primary-font);
    font-weight: var(--bold);
    line-height: 120%;
    margin: 0;
}

h1 {  
    font-size: 64px;
    font-family: var(--secondry-font);
    font-weight: var(--regular);
    color: var(--primary-color);
}

h1 span{
    font-weight: var(--bold);
}

h2 {  
    font-size: 50px;
    color: var(--secondry-color);
}

h2 span{
    background-color: var(--primary-color);
    padding: 0 10px;
    color: var(--white);
}

h3 {  
    font-size: 25px;
}

h4 {  
    font-size: 20px;
}

h4 a{
    color: var(--secondry-color);
}

h5 {  
    font-size: 16px;
}


p {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: var(--regular);
    line-height: 150%;
    margin: 0;
    padding: 0;
}

p a{
    color: var(--text-color);
}


/*---- Primary Button -----*/

.primary-btn{
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: var(--bold);
    text-decoration: none;
    border: none;
    padding: 15px 30px;
    background-color: var(--primary-color);
    border-radius: 7px;
    transition: var(--transition);
}



/* ------ Section Caption----- */

.section-caption{
    display: inline-block;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: var(--regular);
    font-family: var(--accent-font);
    line-height: 45px;
}


/* ---- Section Title ----- */

.section-title{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* -------------- Header Area Start ----------------- */

.nav-area{
    padding: 18px 0;
}

.logo{
    display: inline-block;
    width: 150px;
    height: 36px;
}

.nav-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.nav-menu li a{
    display: inline-block;
    color: var(--black);
    font-size: 16px;
    font-family: var(--primary-font);
    text-decoration: none;
    text-transform: capitalize;
}

.nav-menu li{
    position: relative;
}

.nav-menu li a{
    font-size: 18px;
    font-weight: var(--medium);
    color: var(--black-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu li a:hover{
    color: var(--primary-color);
}

.dropdown-content {
    padding: 10px 20px;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 110%; 
    left: 0;
    z-index: 10; 
    min-width: 160px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--white);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.dropdown-content li a{
    font-size: 16px;
}

.nav-menu li:hover .dropdown-content {
    opacity: 1;
    visibility: visible; 
}

.nav-right{
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.menu_trigger{
    color: #434A54;
    font-size: 20px;
    background-color: transparent;
    border: none;
    display: none;
}

/* -------------- Header Area End ----------------- */















/* -------------- Sidebar Area Start ----------------- */

.sidebar-area{
    position: fixed;
    top: 0;
    left: -100%;
    max-width: 450px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 50px 20px 40px;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 1000;
    overflow-y: scroll;
    transition: var(--transition);
}

.sidebar-area.slide_sidebar{
    left: 0;
}

.sidebar_dismess {
    position: absolute;
    right: 4%;
    top: 3%;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-color);
}

.sidebar-top{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobail-logo {
    width: 146px;
    height: 30px;
    margin: auto;
}

.mobail-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sport-glary{
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin: 20px auto;
}

.sport-image{
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
}

.sport-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-area .nav-menu{
    width: 270px;
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
}

.sidebar-area .nav-menu li a{
    font-size: 14px;
}

.sidebar-area .nav-menu .dropdown-content{
    z-index: 999;
}

.mobail-contact__wraper {
    width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.mobail-contact__wraper a{
    display: inline-block;
    color: var(--text-color);
    font-size: 14px;
    font-weight: var(--regular);
    text-decoration: none;
    margin-top: 10px;
}

.social-links{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    border-radius: 8px;
}

.adventure-image{
    position: absolute;
    bottom: -15%;
    right: -8%;
    width: 500px;
    height: 400px;
    z-index: -1;
    opacity: .4;
}

/* -------------- Sidebar Area End ----------------- */
















/* -------------- Hero Area Start ----------------- */

.hero-area{
    padding: 120px 0 200px;
    background-color: #E3F0FF;
}

.hero-area-common{
    padding: 220px 0;
}

.hero-area .container{
    max-width: 1223px;
    position: relative;
    z-index: 1;
}

.hero-content{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.hero-content p{
    font-size: 24px;
    font-weight: var(--medium);
    font-family: var(--secondry-font);
}

.discover-btn{
    width: fit-content;
    background-color: transparent;
    color: var(--black);
    border: 1px solid #A2A2A2;
    border-radius: 50px;
}

.discover-btn:hover{
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-wraper{
    display: flex;
    align-items: center;
    gap: 28px;
}

.play-btn_wraper{
    display: flex;
    align-items: center;
    gap: 6px;
}

.play-btn{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 100%;
}

.play-btn span{
    margin-left: 2px;
}

.play-btn__text{
    color: var(--primary-color);
    font-size: 18px;
    font-weight: var(--bold);
    font-family: var(--secondry-font);
    text-decoration: none;
}

.hero-right{
    position: relative;
}

.hero-bg__image {
    position: absolute;
    right: 0;
    bottom: 20%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-people__image {
    position: absolute;
    right: 2%;
    bottom: 0;
    width: 55%;
    height: 100%;
    z-index: -1;
}

/* -------------- Hero Area End ----------------- */













/* -------------- Booking Area Start ----------------- */

.booking-area{
    position: relative;
    margin-top: -4%;
    z-index: 10;
}


.booking-bar{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.booking-bar__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-bar__top p{
    color: #737373;
    font-size: 14px;
    font-weight: var(--medium);
    font-family: var(--secondary-font);
}

.booking-tabs{
    gap: 20px;
}

.booking-tabs button{
    display: inline-block;
    padding: 12px 18px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: var(--regular);
    font-family: var(--secondary-font);
    border-radius: 50px;
    border: none;
}

.booking-tabs button.active{
    color: var(--white);
    background-color: var(--primary-color);
}

.booking-bar__main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.booking-item{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.booking-item::after{
    content: '';
    position: absolute;
    right: -25%;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}

.booking-item:last-child::after{
    display: none;
}

.booking-item .booking-caption{
    display: inline-block;
    margin-bottom: 10px;
    color: #737373;
    font-size: 14px;
    font-weight: var(--bold);
    font-family: var(--secondry-font);
}

.booking-select__area{
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-select__area span{
    color: #D6D7D8;
}

.booking-select__area .nice-select{
    border: none;
    padding-left: 0;
    height: 0;
    line-height: 0;
}

.booking-select__area .current {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: var(--semibold);
    font-family: var(--secondary-font);
}


.booking-select__area .nice-select .list {
    background-color: var(--white);
    border-radius: 5px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    z-index: 9999;
}

.booking-select__area .nice-select .option {
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-weight: var(--semibold);
}
   
.booking-select__area .nice-select:after {
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    pointer-events: none;
    position: absolute;
    right: 6px;
}

.search-btn{
    border-radius: 50px;
    margin-left: 70px;
}


/* -------------- Booking Area End ----------------- */














/* -------------- Trip Plane Area Start ----------------- */

.trip_plane-area{
    padding: 200px 0 135px;
}

.trip_plane-category__area{
    padding: 70px 0 105px;
}

.trip_plane-category{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 46px;
    background-image: url(../image/category-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.trip_plane-category__icon{
    width: 80px;
    height: 80px;
}

.trip_plane-category h4{
    color: var(--white);
}

.package-card{
    border-radius: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
}

.package-image{
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.package-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tag{
    width: fit-content;
    position: absolute;
    right: 5%;
    top: 8%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 14px;
    text-transform: capitalize;
    padding: 6px 15px;
    background-color: var(--primary-color);
    border-radius: 50px;
}

.package-content{
    padding: 30px;
    background-color: var(--white);
}

.package_meta-data{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 30px;
}

.package-title{
    margin-bottom: 8px;
}

.meta-data{
    display: inline-flex;
    gap: 10px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: var(--regular);
    text-decoration: none;
}

.meta-data span{
    color: var(--primary-color);
}

.divider{
    width: 100%;
    background-color: #E4E4E4;
    margin: 20px 0;
}

.package-price {
    text-align: end;
}

.package-price span{
    font-family: var(--secondary-font);
    display: block;
    color: var(--text-color);
    font-size: 16px;
    font-weight: var(--regular);
}

.package-price .regular-price{
    display: inline-block;
    font-size: 16px;
    font-weight: var(--bold);
    color: #A3A5B8;
    text-decoration: line-through;
}

/* -------------- Trip Plane Area End ----------------- */














/* -------------- Choose Trip Area Start ----------------- */

.choose_trip-area{
    padding: 120px 0;
    background-image: url(../image/choose-trip.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #EFF3F6;
}

.choose-trip__wraper{
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    margin-top: 40px;
}

.choose-trip_item{
    display: flex;
    align-items: center;
    gap: 24px;
    padding-left: 30px;
    border-right: 1px solid var(--border-color);
}

.choose-trip__icon{
    font-size: 30px;
    color: var(--primary-color);
}

.choose-trip_item h5 span{
    display: block;
    font-weight: var(--regular);
    font-size: 14px;
    color: var(--text-color);
    margin-top: 4px;
}

.choose-trip_item .primary-btn{
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
}

/* --------------Choose Trip Area End ----------------- */
















/* -------------- Adventure Area Start ----------------- */

.adventure-area{
    padding: 120px 0;
    overflow: hidden;
}

.adventure-top__image{
    margin-left: 20%;
}

.adventure-area .fetured-card__wraper{
    margin-top: 70px;
}

.adventure-area .fetured-card{
    height: 400px;
}

.fetured-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 30px;
    overflow: hidden;
    border-radius: 16px;
    z-index: 1;
    text-decoration: none;
}

.fetured-card::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .3;
    z-index: -1;
    transition: var(--transition);
}

.fetured-card img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.fetured-card__content{
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
}

.fetured-card__content h4, .fetured-card__content p{
    color: var(--white);  
}

.fetured-card:hover::after{
    opacity: .5;
}



/* -------------- Adventure Area End ----------------- */














/* -------------- Adventure Travel Area Start ----------------- */

.adventure_travel-area{
    position: relative;
    padding: 120px 0;
    background-image: url(../image/adventure-travel-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.adventure_travel-area::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 2) 100%);
    opacity: .8;
    z-index: -1;
}

.adventure_travel-image__carousel{
    width: 100%;
    display: block;
}

.adventure_travel-image{
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.adventure_travel-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ---- Owl Navs ---- */

.image-carousel .owl-nav.disabled{
    display: flex;
}
  
.image-carousel .owl-nav{
    width: 100%;
    font-size: 30px;
    color: var(--white-color);
    z-index: 10;
}
  
.image-carousel .owl-nav button span{
    font-size: 50px !important;
    color: var(--white) !important;
    margin-top: -10px;
}
  
.image-carousel .owl-nav .owl-prev{
    position: absolute !important;
    left: 2% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
  
.image-carousel .owl-nav .owl-next{
    position: absolute;
    right: 2%;
    top: 0;
    top: 50% !important;
    transform: translateY(-50%) !important;
}



/* ---- Owl Dots ---- */


.image-carousel .owl-dots.disabled{
    display: flex !important;
}

.image-carousel .owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    transform: translateY(-40px);
}

.image-carousel .owl-dot{
    width: 5px !important;
    height: 5px !important;
    background-color: var(--white) !important;
    border-radius: 100%;
}

.image-carousel .owl-dot.active{
    background-color: var(--primary-color) !important;
}

.adventure_travel-content{
    padding-left: 100px;
}

.adventure_travel-content .section-caption, .adventure_travel-content h2, .adventure_travel-content p{
    color: var(--white);
}

.adventure_travel-content h2{
    margin: 20px 0;
}

.adventure_travel-list{
    margin: 40px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.adventure_travel-list li{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: var(--regular);
    color: #ffffffe1;
    padding: 20px 0;
    border-bottom: 1px solid #ffffff77;
}

.adventure_travel-list li:first-child{
    padding-top: 0;
}

.adventure_travel-list li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}

.adventure_travel-list li span{
    font-size: 12px;
}


/* -------------- Adventure Travel Area End ----------------- */

















/* -------------- Travel Itineraries Area Start ----------------- */

.itineraries-area{
    padding: 200px 0 160px;
}

.itineraries-area h2{
    font-size: 140px;
    line-height: 75%;
    text-align: center;
}

.itineraries-image{
    width: 100%;
    height: 650px;
    margin: 160px 0 140px;
}

.itineraries-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-logo_wraper{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
}

/* -------------- Travel Itineraries Area End ----------------- */













/* -------------- Client Reviews Area Start ----------------- */

.client_reviews-area{
    position: relative;
    padding: 120px 0;
    background-image: url(../image/travel-experience-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.client_reviews-area::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 2) 100%);
    opacity: .8;
    z-index: -1;
}

.client_reviews-area .section-title span, .client_reviews-area .section-title h2, .client_reviews-area .section-title p{
    color: var(--white);
}

.client_reviews-wraper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 90px;
}

.client_reviews-box{
    padding: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 16px;
}

.client_reviews-box p{
    color: var(--white);
    font-size: 25px;
}

.profile-info{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.profile-avater{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-avater img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.profile-n-w h5{
    color: var(--white);
}

.profile-n-w span{
    font-size: 14px;
}

/* -------------- Client Reviews Area End ----------------- */















/* -------------- Pricing Area Start ----------------- */

.pricing-area{
    padding-top: 120px;
}

.pricing-card__wraper{
    margin-top: 60px;
}

.pricing-card{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 70px 50px;
    background-color: #EDF2F5;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.pricing-tag{
    position: absolute;
    right: 4%;
    top: 3%;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 20px;
    background-color: var(--primary-color);
    border-radius: 6px;
    transition: var(--transition);
}

.pricing-card h4{
    transition: var(--transition);
}


.pricing-card h2{
    font-size: 80px;
    transition: var(--transition);
}

.pricing-card h2 sub{
    font-size: 20px;
}

.pricing-list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-list li{
    font-size: 16px;
    color: var(--text-color);
    line-height: 120%;
    transition: var(--transition);
}

.pricing-card .primary-btn{
    margin: auto;
    margin-top: 10px;
}

.pricing-card:hover{
    background-color: var(--primary-color);
}

.pricing-card:hover h4, .pricing-card:hover h2, .pricing-card:hover .pricing-list li{
    color: var(--white);
} 

.pricing-card:hover .primary-btn{
    background-color: #1D1D54;
}

.pricing-card:hover .pricing-tag{
    background-color: #1D1D54;
    color: var(--white);
}

/* -------------- Pricing Area End ----------------- */
















/* -------------- Wandering Souls Area Start ----------------- */

.wandering_souls p{
    margin: 20px 0;
}

.wandering_souls .progress{
    height: 5px;
    background-color: #F1F1F1;
}

.wandering_souls .progress-bar{
    background-color: var(--primary-color);
}

.wandering_souls-area .primary-btn{
    margin-top: 40px;
}

/* -------------- Wandering Souls Area End ----------------- */

















/* -------------- Blog Area Start ----------------- */

.blog-area{
    padding: 120px 0;
}

.blog-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-thumbnail{
    width: 100%;
    height: 422px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-content h4{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.meta-date{
    width: fit-content;
    display: inline-flex;
    padding: 2px 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: var(--bold);
    border-radius: 6px;
}

.blog-card h4 a{
    text-decoration: none;
}

.letest-blog_wraper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.letest-blog_wraper .blog-card{
    flex-direction: row;
}

.letest-blog_wraper .blog-thumbnail{
    max-width: 205px;
    height: 140px;
}

/* -------------- Blog Area End ----------------- */














/* -------------- Footer Area Start ----------------- */

.footer-area{
    position: relative;
    padding: 120px 0 20px;
    background-image: url(../image/footer-image.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.footer-area::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondry-color);
    opacity: .8;
    z-index: -1;
}

.footer-left h2{
    color: var(--white);
}

.footer-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-item h4{
    color: var(--white);
}

.footer-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu li a{
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
}

.footer-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-number{
    display: block;
    font-size: 25px;
    font-weight: var(--bold);
    color: var(--white);
    text-decoration: none;
}

.copyright-area{
    margin-top: 132px;
}

.copyright-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 35px;
}

.copyright-menu li a{
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
}

.copyright-menu li a::after{
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
}

.copyright-menu li:last-child a::after{
    display: none;
}

.money-transfer__menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.money-transfer__menu li a{
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
}

/* -------------- Footer Area End ----------------- */















/* -------------- Hero Area Start ----------------- */

.search-hero{
    padding: 250px 0 40px;
    background-image: url(../image/sport-2.jpg);
    background-color: transparent;
}

.hero-area-common{
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-area-common::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .6;
    z-index: -1;
}

.hero-area-common .container{
    max-width: 1350px;
}

.hero-area-common h1{
    font-size: 50px;
    font-family: var(--primary-font);
    font-weight: var(--bold);
    color: var(--white);
    text-align: center;
}

.search-hero__bottom{
    margin-top: 195px;
}

.filter-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;    
}

.filter-menu li{
    position: relative;
}

.filter-menu li a{
    font-size: 14px;
    color: var(--white) !important;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.filter-menu li a:hover{
    color: var(--primary-color);
}

.filter-menu .dropdown-content {
    padding: 10px 20px;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 110%; 
    left: 0; 
    min-width: 140px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0px 8px 24px 0px rgba(0,0,0,0.2);
    display: none;
    border: 1px solid #D6D7D8;
    border-radius: 12px;
    z-index: 100 !important;
}

.filter-menu .dropdown-content li a{
    display: inline-block;
    font-size: 14px;
    color: var(--black) !important;
    margin-bottom: 15px;

}

.dropdown-angel.active{
    display: inline-block;
    transform: rotate(180deg);
    transition: var(--transition);
}


/* -------------- Hero Area End ----------------- */














/* -------------- Filtering Area Start ----------------- */

.filtering-area{
    padding: 150px 0 120px;
}

.listing-system{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.listing-btn{
    color: var(--white);
    font-size: 18px;
    background-color: transparent;
    border: none;
}

.listing-btn:focus{
    color: var(--primary-color);
}

.listing-btn:focus span{
    background-color: var(--primary-color);
}

.grid-view{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.grid-view span{
    width: 6px;
    height: 6px;
    background-color: var(--white);
}

.filtering-wraper{
    display: grid;
    grid-template-columns: 30% 70%;
}

.filtering-wraper.layout-collapse{
    grid-template-columns: 100%;
    gap: 80px 0;
}

.filtering-options{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 40px;
}

.filtering-box{
    padding-bottom: 35px;
    border-bottom: 1px solid #F9F9F9;
}

.filtering-box h4{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.slider-container {
    --width: 100%;
    width: var(--width);
    border: none;
    font-family: sans-serif;
    margin-bottom: 20px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #1a1a4b; 
}

.input-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #e0e0e0; 
    border-radius: 5px;
    outline: none;
    background-image: linear-gradient(#1a1a4b, #1a1a4b); 
    background-size: 0% 100%;
    background-repeat: no-repeat;
}

.input-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: #1a1a4b;
    cursor: pointer;
    border-radius: 2px;
}

.input-slider::-moz-range-thumb {
    height: 18px;
    width: 18px;
    background: #1a1a4b;
    cursor: pointer;
    border-radius: 2px;
}

.filtering-box h4 .dropdown-angel{
    color: #878787;
}

.filtering-box input[type="date"]{
    width: 100%;
    height: 56px;
    padding: 15px;
    border: 1px solid #F9F9F9;
    border-radius: 6px;
    outline: none;
}

.filtering-box ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
}

.filtering-box  li{
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-family: var(--primary-font);
    color: var(--text-color);
    list-style: none;
}

.filtering-box input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--text-color);
    background-color: transparent;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.filtering-box input[type="checkbox"]:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.filtering-box input[type="checkbox"]:checked {
    background-color: var(--white-color);
    border-color: var(--white-color);
}

.filtering-box input[type="checkbox"]:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900; 
    color: var(--accent-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    line-height: 1;
}

.filtering-box label {
    display: none;
}

.filtering-content{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

/* -------------- Filtering Area End ----------------- */














/* -------------- Hero Area Start ----------------- */

.single-hero{
    background-color: #EDF2F5;
}

.single-page_image{
    width: 100%;
    height: 420px;
}

.single-page_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-single__info{
    display: flex;
    align-items: center;
    gap: 30px;
}

.package-single__info h3{
    font-size: 35px;
}

.package-single__info .meta-data span{
    color: var(--text-color);
}

.package-single__icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
    border-radius: 100%;
}

/* -------------- Hero Area End ----------------- */
















/* -------------- Single Content Area Start ----------------- */

.single_content-area{
    padding: 120px 0;
}

.single_content-wraper{
    display: grid;
    grid-template-columns: 65% 35%;
}

.single_content-left{
    padding-right: 50px;
}

.single_content-box{
    padding: 60px 0;
    border-bottom: 1px solid #E4E4E4;
}

.single_content-box:first-child{
    padding-top: 0;
}

.single_content-box:last-child{
    padding-bottom: 0;
    border: none;
}

.single_content-box h3{
    margin-bottom: 20px;
}

.single_content-box p a{
    color: var(--text-color);
}

.single_content-list{
    margin: 0;
    margin-top: 40px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px 0;
    justify-content: space-between;
}

.single_content-list li{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-color);
}

.single_content-list li .fa-check{
    color: var(--primary-color);
}

.single_content-list li .fa-xmark{
    color: var(--black);
}

.map iframe{
    width: 100%;
    height: 445px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
}

.day-rutine__list{
    margin: 0;
    margin-top: 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.day-rutine__list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: var(--bold);
    color: var(--black);
    padding: 30px 0;
    border-bottom: 1px solid #E4E4E4;
}

.day-rutine__list li:last-child{
    border: none !important;
}

.day-rutine__list li span{
    color: var(--primary-color);
}

.day-rutine__list li span i{
    color: var(--black);
}

.single_package-card{
    padding: 40px;
}

.ckeckout-select{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 30px 0;
    padding: 20px 0;
}

.ckeckout-select button{
    font-size: 14px;
    font-weight: var(--regular);
    color: var(--black);
    background-color: transparent;
    border: none;
}

.ckeckout-select span{
    width: 2px;
    height: 20px;
    background-color: #E4E4E4
}

.ckeckout-form__content-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.ckeckout-form__content-box:last-child{
    border: none !important;
}

.ckeckout-form__content-box .filtering-box{
    margin: 0;
    padding: 0;
}

.ckeckout-form__content-box .filtering-box ul{
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.checkout-btn{
    width: 100%;
    justify-content: center;
    margin-top: 45px;
}

/* -------------- Single Content End ----------------- */

















/* -------------- Check All Area Start ----------------- */

.check_all-area{
    padding: 120px 0;
}

.check_all-area .package-wraper{
    margin-top: 30px;
}

/* -------------- Check All Area End ----------------- */
















/* -------------- Hero Area Start ----------------- */

.archive-hero{
    background-image: url(../image/package-1.png);
}

/* -------------- Hero Area End ----------------- */














/* -------------- Archive Post Area Start ----------------- */

.archive-post{
    padding: 148px 0 136px;
}

/* -------------- Archive Post Area End ----------------- */















/* -------------- Hero Area Start ----------------- */

.previews-hero{
    background-image: url(../image/sport-3.jpg);
}

/* -------------- Hero Area End ----------------- */













/* -------------- Packages Previews Area Start ----------------- */

.preview-area{
    padding: 110px 0;
}

.package-wide-card{
    display: grid;
    grid-template-columns: 30% 45% 25%;
    align-items: center;
}

.package-wide-card .package-buttons{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 1px solid #E4E4E4;
}

.package-wide-card .package-price {
    text-align: center;
}

.package-wide-card .primary-btn {
    width: 100%;
    justify-content: center;
}

.preview-area .fetured-card{
    height: 430px;
}

.preview-area .fetured-card .meta-data{
    color: var(--white);
}

.preview-area .fetured-card .meta-data span{
    color: var(--white);
}

.preview-card  .package-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.preview-card .package_meta-data{
    margin: 0;
    background-color: #EDF2F5;
}

.preview-card .package-price{
    color: var(--primary-color);
    text-align: left;
}

.preview-card .package-price span{
    display: inline-block;
    margin-right: 8px;
    transform: translateY(-2px);
}

.preview-card .primary-btn{
    width: 100%;
    justify-content: center;
}

.preview-card-horizontal{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.preview-card-horizontal .package-image{
    width: 100%;
    height: 142px;
    border-radius: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.preview-card-horizontal .package-price{
    color: var(--primary-color);
    text-align: left;
}

.preview-card-horizontal .package-price span{
    display: inline-block;
    margin-right: 8px;
    transform: translateY(-2px);
}

.preview-card-horizontal .package-content{
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-card-horizontal .meta-data span{
    color: var(--text-color);
}

.preview-card-horizontal .package-price span {
    font-size: 14px;
}


.fetured-card__wraper-full-wide{
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


/* -------------- Packages Previews Area End ----------------- */













/* ------------- Hero Area Start --------------- */

.single-destination-hero{
    background-image: url(../image/package-4.png);
}

/* ------------- Hero Area End --------------- */





/* -------------- Destination Card Area Start ----------------- */

.destination_card-area{
    margin-top: -50px;
}

.destination_card-wraper{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    padding: 40px;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 99;
}

.destination-card{
    display: flex;
    align-items: center;
    gap: 30px;
}

.destination-card__icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.destination-card__icon span{
    margin-right: -3px;
}

/* -------------- Destination Card Area End ------------------ */
















/* ---------------- Travel Guide Area Start -------------------- */

.travel_guide-area{
    padding: 200px 0 50px;
}

.travel_guide-images{
    display: grid;
    grid-template-columns: 53% 43%;
    justify-content: space-between;
}

.travel_guide-image {
    border-radius: 16px;
    overflow: hidden;
}

.travel_guide-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel_guide-image-1{
    width: 100%;
    height: 405px;
}

.travel_guide-image-2{
    width: 100%;
    height: 550px;
    margin-top: 80px;
}

.travel_guide-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.travel_guide-content .wandering_souls p:first-child{
    margin-top: 0;
}

.travel_guide-content .wandering_souls p:last-child{
    margin-bottom: 0;
}

.travel_guide-content .primary-btn{
    margin-top: 20px;
}


/* ----------- Travel Guide Area End ----------------- */



















/* ----------- Hero Area Start ----------------- */

.destinations-layout-hero{
    background-image: url(../image/package-5.png);
}

/* ----------- Hero Area End ----------------- */


















/* ----------- Destinations Area Start ----------------- */

.destination-area{
    padding: 132px 0 150px;
}

.destination-area .fetured-card__wraper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.destination-area .fetured-card{
    height: 420px;
}

.fetured-card__bg-content{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: var(--white);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.fetured-card__bg-content h4{
    color: var(--secondry-color);
}

.featured-permalink{
    font-size: 20px;
    color: var(--white);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    flex-shrink: 0;
    border-radius: 100%;
    transition: var(--transition);
}

.featured-permalink:hover{
    background-color: var(--secondry-color);
}

.fetured-card__wraper-carousel .owl-dots{
    transform: translateY(20px);
}

.fetured-card__wraper-carousel .owl-dot{
    background-color: #4286f4a4 !important;
}

/* ----------- Destinations Area End ----------------- */
















/* ----------- Hero Area Start ----------------- */

.typologies-hero{
    background-image: url(../image/package-7.png);
}

/* ----------- Hero Area End ----------------- */
















/* ----------- Next Plan Area Start ----------------- */

.next_plane-area{
    padding-top: 120px;
}

.service-card_wraper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin: 40px 0;
}

.service-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card__image{
    width: 70px;
    height: 70px;
}

.service-card__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.next_plane-image{
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.next_plane-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------- Next Plan Area End ----------------- */



















/* ----------- Hero Area Start ----------------- */

.about-hero{
    background-image: url(../image/package-8.png);
}

/* ----------- Hero Area End ----------------- */

















/* ----------- Perfect Vacation Area Start ----------------- */

.perfect_vacation-area{
    padding-top: 150px;
}

.perfect_vacation-content h2{
    line-height: 150%;
}

.perfect_vacation-content .wandering_souls{
    padding: 30px 0;
}

.perfect_vacation-content .wandering_souls {
    color: var(--black);
}

.perfect_vacation__image-wraper{
    position: relative;
    width: 100%;
    height: 600px;
}

.perfect_vacation__image{
    border-radius: 16px;
    overflow: hidden;
}

.perfect_vacation__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfect_vacation__image-1{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.perfect_vacation__image-2{
    position: absolute;
    left: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
}

.perfect_vacation__image-3{
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
}



/* ----------- Perfect Vacation Area End ----------------- */


















/* ----------- Vacation Services Area Start ----------------- */

.vacation_service-area{
    padding: 120px 0;
    margin: 120px 0;
    background-color: #EDF2F5;
}

.vacation_service-area .service-card_wraper{
    grid-template-columns: repeat(3,1fr);
    margin-top: 80px;
}

/* ----------- Vacation Services Area End ----------------- */
















/* ----------- Experiences Area Start ----------------- */

.experiences-image{
    width: 100%;
    height: 424px;
    border-radius: 16px;
    overflow: hidden;
}

.experiences-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-reviews_box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.client-reviews_box .client-reviews{
    font-size: 30px;
    color: var(--secondry-color);
}

.client-info{
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-image{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}

.client-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences-image_wraper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.experiences-image_wraper .experiences-image {
    height: 197px;
}

/* ----------- Experiences Area End ----------------- */

















/* ----------- Start Vacetion Area Start ----------------- */

.vacation-area{
    position: relative;
    padding: 100px 0;
    margin: 120px 0 0 0;
    background-image: url(../image/sport-3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.vacation-area::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .6;
    z-index: -1;
    transition: var(--transition);
}

.vacation-content{
    padding-left: 100px;
}

.vacation-content .section-caption, .vacation-content h2{
    color: var(--white);
}

.vacation-content-list{
    margin: 40px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.vacation-content-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.vacation-content-list li:last-child{
    border-bottom: none;
}

.vacation-content-list li span{
    font-size: 25px;
    font-weight: var(--bold);
}

.vacation-content-list li h3{
    font-size: 35px;
    color: var(--white);
}

.vacation-content-list li h3 sub{
    font-size: 20px;
}

.vacation-content__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vacation-content__bottom h3{
    color: var(--white);
    font-size: 35px;
}

/* ----------- Start Vacetion Area End ----------------- */
















/* ----------- Roaming Area Start ----------------- */

.roaming-area{
    padding: 120px 0;
}

.roaming-area .fetured-card{
    height: 396px;
}

/* ----------- Roaming Area End ----------------- */


















/* ----------- Hero Area Start ----------------- */

.pricing-hero{
    background-image: url(../image/sport-2.jpg);
}

.trip-price_wraper{
    margin-top: 60px;
}

.trip-price_card{
    width: 100%;
    background-color: #EDF2F5;
    border-radius: 16px;
    overflow: hidden;
}

.trip-price__image{
    width: 100%;
    height: 300px;
}

.trip-price__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-price__content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
    text-align: center;
}

.trip-price__content{
    font-size: 16px;
}

.trip-price__content h3{
    font-size: 35px;
}

.trip-price__content hr{
    color: #afaeae;
    margin: 10px 0 12px 0;
}

.trip-price__content h3 sub{
    font-size: 16px;
}

.trip-price__content ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 10px;
}

.trip-price__content ul li{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: var(--text-color);
    line-height: 20px;
}

.trip-price_card .primary-btn{
    font-size: 14px;
    padding: 15px;
    width: 100%;
    border-radius: 0;
    justify-content: center;
}

/* ----------- Hero Area End ----------------- */













/* ----------- Last Time Travel Area Start ----------------- */

.last_travel-area{
    padding: 120px 0;
    margin: 120px 0;
    background-color: #EDF2F5;
}

.last_travel-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 100px;
}

.last_travel-content .package-tag{
    position: relative;
    left: 0;
    top: 0;
    background-color: var(--secondry-color);
    text-transform: uppercase;
}

.last_travel-content .package-price{
    display: inline-block;
    text-align: left;
    font-size: 35px;
    font-weight: var(--bold);
    color: var(--text-color);
    margin-right: 20px;
}

.last_travel-content .meta-data{
    color: var(--secondry-color);
}

.last_travel-content .client-image{
    width: 100px;
    height: 100px;
}

/* ----------- Last Time Travel Area End ----------------- */


















/* ----------- Enjoy Travelling Area Start ----------------- */

.enjoy-area{
    padding-bottom: 120px;
}

.enjoy-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enjoy-list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.enjoy-list li{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.enjoy-list h4 span{
    color: var(--primary-color);
    margin-left: 10px;
}

/* ----------- Enjoy Travelling Area End ----------------- */
















/* ----------- Hero Area Start ----------------- */

.services-hero{
    background-image: url(../image/sport-4.jpg);
}

/* ----------- Hero Area End ----------------- */













/* ----------- Tourist Hotspots Start ----------------- */

.tourist-area{
    padding: 120px 0;
}

.tourist-left ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.tourist-left ul li{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-color);
}

.tourist-image{
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.tourist-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ----------- Tourist Hotspots End ----------------- */











/* ----------- Services Area Start----------------- */

.services-area{
    padding: 80px 0 120px;
}

.services-area .service-card_wraper {
    grid-template-columns: repeat(3,1fr);
}

.services-area  .service-card {
    align-items: center;
}

.services-area .service-card__content{
    text-align: center;
}

/* ----------- Services Area End ----------------- */

















/* ----------- Plan Area Start ----------------- */

.plan-area{
    padding: 188px 0 196px;
    background-image: url(../image/package-10.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0d0f1181;
    background-blend-mode: multiply;
}

.section-content h2, .section-content p{
    color: var(--white);
}

.section-content p{
    margin: 42px 0 28px;
}

/* ----------- Plan Area End ----------------- */

















/* ----------- By side Area Start ----------------- */

.side-area{
    padding: 120px 0;
}

.side-box__wraper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 30px;
}

.side-box{
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-box h3{
    font-size: 40px;
}

.side-flat__box-1{
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.side-flat__box-2{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.side-content{
    padding-left: 50px;
}

/* ----------- By side Area End ----------------- */
















/* ----------- Contact Area Start ----------------- */

.contact-area{
    padding: 120px 0;
}

.contact-wraper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #EDF2F5;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
    margin-top: 60px;
}

.contact-image{
    width: 100%;
    height: 100%;
}

.contact-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form_content{
    padding: 100px 85px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea{
    width: 100%;
    padding: 16px 30px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: transparent;
    outline: none;
    font-size: 16px;
    color: var(--text-color);
}

.contact-form textarea{
    height: 170px;
    resize: none;
}

.contact-form .primary-btn{
    width: 100%;
    justify-content: center;
}

.agency-logo__wraper{
    background-image: url(../image/package-2.png);
    background-size: cover;
    background-position: 30%;
    background-repeat: no-repeat;
    background-color:rgba(0, 0, 0, 0.596);
    background-blend-mode: multiply;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    padding: 40px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* ----------- Contact Area End ----------------- */














/* --- Forced Class --- */
.skyblue{background-color: #4285F4 !important;}
.darkblue{background-color: #1D1D54 !important;}
.darkblue-color{color: #1D1D54 !important;}
.space-60{height: 60px;}
.box-shadow{box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;}