    /* Table of Contents
----------------------------------

 
/*------------------------------ (00)-Global CSS ------------------------------*/
/*
0- Global CSS
1- Heading CSS  
2- Button CSS
3- Logo Area CSS
4- Page Title CSS
5- Header Area CSS 
6- Footer Area CSS
7- Scroll-Top Area CSS
8- Form CSS
9- Swiper Pagination
10- Sidebar Heading CSS
11- Sidebar CSS
*/



/*------------------------------ (01)-Home ------------------------------*/

/*--------------- SECTIONS ---------------*/
/*
1- Home Slider
2- Home Search Tour
3- Services
4- Counter
5- Discount Banner
6- Tours 
7- Testimonials 
8- Blogs
*/



/*------------------------------ (02)-About ------------------------------*/
/*
1- About Us
2- Team
3- Testimonials
4- Faqs
*/



/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 01- Account-Form */

/*--------------- PAGES ---------------*/
/*
1- Gallery
2- Login
3- Register
*/



/*------------------------------ (04)-Destination ------------------------------*/
/*
1- Destinations
2- Single Destination
*/



/*------------------------------ (05)-Tours ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Search-Tour Form 
02- Tour-Item
*/

/*--------------- PAGES ---------------*/
/*
1- Tour Packages
2- Single Tour
*/



/*------------------------------ (06)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Item 
02- Pages-No
03- Comments
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Single Blog
*/



/*------------------------------ (07)-Shop ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/*
01- Filter 
02- Shop Header
03- Product-Item
04- Shop-Title
05- Cart-Summary
06- Quantity Box
*/

/*--------------- PAGES ---------------*/
/*
1- Shop Grid 
2- Shop Standard
3- Single Product
4- Cart
5- Checkout
*/



/*------------------------------ (08)-Contact ------------------------------*/







/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/
/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap');

/* Root Variables */
:root{
    --main-color: #47B5FF;
    --secondary-color: #144272;
    --black: #000;
    --white: #fff;
    --grey: #666; 
    --border-radius: 1rem;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
*{
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/* Selection Styles */
*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

/* Body Styles */
body{
    background-color: var(--white);
    overflow-x: hidden;
}

/* HTML Styles */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Section Styles */
section{
    padding: 3rem 5%;
}

/* Scrollbar Styles */
::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    background: var(--main-color);
}


/*----- 1- Heading CSS -----*/

/* Heading Container */
.heading{ 
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Sub Heading */
.heading span{
    font-size: 2rem;
    letter-spacing: 0.2rem;
    display: inline-block;
    font-family: 'Fuzzy Bubbles', cursive;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 0.5rem;
}
  
/* Main Heading */
.heading h2{ 
    font-weight: bolder;
    font-size: 4rem;  
    color: var(--secondary-color);
    text-transform: uppercase;
    position: relative;
    font-family: "Raleway", sans-serif;
    word-spacing: 0.1rem; 
    letter-spacing: 0.2rem; 
}

/* Heading Styles with Linear Background */
.linear-bg .heading span,
.linear-bg .heading h2{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
/* Button Styles */
.btn{
    display: inline-block;
    color: #e6e6e6;
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px; 
    padding: 1.5rem 3rem;
    position: relative;  
    overflow: hidden;
    background: var(--secondary-color);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-box-shadow: inset 0 0 0 4.5px rgba(255, 255, 255, 0.65);
            box-shadow: inset 0 0 0 4.5px rgba(255, 255, 255, 0.65);
    border-radius: 5px;
}

/* Button Styles, On Hover */
.btn:hover{
    -webkit-box-shadow: inset 0 0 0 4.5px rgba(255, 255, 255, 0.25);
            box-shadow: inset 0 0 0 4.5px rgba(255, 255, 255, 0.25);
	cursor: pointer;
}


/*----- 3- Logo Area CSS -----*/
/* Logo Styles */
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    gap: 0.5rem;
}
 
/* Logo Image Styles */
.logo img{
    height: 3.5rem;
    object-fit: cover;
}

/* Logo Heading Styles */
.logo h3{ 
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.1rem;
    text-transform: capitalize;
    padding-left: 0.5rem;
    font-size: bolder;
}

/*----- 4- Page Title CSS -----*/
/* Page Title Container */
.page-title{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../../assets/images/PageTitle/PageTitle.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../../assets/images/PageTitle/PageTitle.jpg");
    min-height: 40rem;
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Page Title Heading */
.page-title .title h2{
    color: var(--white);
    font-size: 5rem;
    font-weight: 500;
    padding-top: 4rem;
    text-transform: uppercase;
}

/* Page Title Link Container */
.page-title .link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
}

/* Page Title Home Link */
.page-title .link a{
    font-size: 2.2rem;
    color: var(--white);
}

/* Page Title Home Link, On Hover */
.page-title .link a:hover{
    color: var(--main-color);
}

/* Page Title Arrow Icon */
.page-title .link i{
    font-size: 2rem;
    color: var(--white);
}

/* Page Title Page Name */
.page-title .link span{
    font-size: 2rem;
    font-weight: 500;
    color: var(--main-color);
}

/*----- 5- Header Area CSS -----*/
/* Header Styles */
.header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7rem;
    padding: 0rem 5%;
    background: transparent;
}

/* Active Header Styles */
.header.active{
    height: 6rem;
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Menu Button Styles */
.header #menu-btn{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    display: none;
}

/* Menu Button Hover Styles */
.header #menu-btn:hover{
    color: var(--main-color);
}

/* Navbar Styles */
.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 1.5rem;
}

/* Mobile Menu Styles */
.mobile-menu{
    display: none;
}

/* Dropdown Menu Styles */
.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

/* Navbar Button Styles */
.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

/* Navbar Button Hover Styles */
.header .navbar .nav-btn:hover{
    color: var(--main-color);
}

/* Dropdown Content Styles */
.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--black);
    background-color: var(--white);
    width: 20rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
    -webkit-transform: scale(0); 
            transform: scale(0);
    -webkit-transition:  all 0.5s;
    -moz-transition:  all 0.5s;
    -o-transition:  all 0.5s;
    transition:  all 0.5s;
    z-index: 1000;
}

/* Dropdown Menu Hover Styles */
.header .dropdown-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
}

/* Dropdown Content Link Styles */
.header .dropdown-content a{
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    padding: 1rem;
    cursor: pointer;
    border-bottom: 0.2rem solid transparent;
}

/* Dropdown Content Link Hover Styles */
.header .dropdown-content a:hover{
    background: rgba(71, 181, 255, 0.2);
    border-color: var(--secondary-color);
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background-color: var(--black);
    padding: 0rem 5%;
}

/* Footer Container */
.footer .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    padding: 2rem 0;
} 

/* Footer Item Paragraph */
.footer-item p{
    color: var(--white); 
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Footer Item Heading */
.footer-item h2{ 
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    padding-bottom: 1rem;
}

/* Footer Item Info Paragraph */
.footer-item .info p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Footer Item Info Link */
.footer-item .info a{ 
    font-size: 1.6rem;
    color: var(--white);
}

/* Footer Item Info Link, On Hover */
.footer-item .links p:hover a{
    color: var(--main-color);
}

/* Footer Item Info Icon */
.footer-item .links p i{
    color: var(--main-color);
    font-size: 1.8rem;
}

/* Footer Item Pages container */
.footer-item .pages{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/* Footer Item Pages Items */
.footer-item .pages .links-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
}

/* Footer Item Connect Icon */
.footer-item .connect i{
    font-size: 1.6rem;
    color: var(--main-color);
    height: 3rem;
    width: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Footer Item Social Contact container */
.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer Item Social link */
.footer-item .social a{
    display: inline-block;
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

/* Footer Item Facebook link Background */
.footer-item .social a:nth-child(1) {
    background: #25316D;
}

/* Footer Item Twitter link Background */
.footer-item .social a:nth-child(2) {
    background: #5CB8E4;
}

/* Footer Item Instagram link Background */
.footer-item .social a:nth-child(3) {
    background: #E80F88;
}

/* Footer Item Linkedin link Background */
.footer-item .social a:nth-child(4) {
    background: #1363DF;
}

/* Footer Item Social Icon */
.footer-item .social a i{
    color: var(--white);
    font-size: 2rem;
}

/* Footer Item Connect text with "gmail" class */
.footer-item .gmail{
    text-transform: none;
}

/* Footer Content */
.footer .content{
    text-align: center;
    padding: 2rem 0;
    border-top: 0.2rem solid var(--white);
}

/* Footer Content Paragraph */
.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

/* Footer Content Span */
.footer .content p span{
    color: var(--main-color);
}

/*----- 7- Scroll-Top Area CSS -----*/
/* Scroll Top Button */
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s; 
    transition: all 0.2s;
    z-index: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Scroll Top Button Hover */
.scroll-top:hover{
    background: var(--secondary-color);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
.form{
    background: var(--white);
}
  
/* Form input box container */
.form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
  
/* Form Input box inside input box container */
.form .input-box .box{
    width: 49%;
}
  
/* Input box */
.form .box{
    width: 100%;
    padding: 1.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
    color: var(--grey);
    text-transform: none;
    margin: 0.7rem 0;
}

/* Input box placeholder */
.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}
.form .box::-moz-placeholder{
    text-transform: capitalize;
}
.form .box:-ms-input-placeholder{
    text-transform: capitalize;
}
.form .box::placeholder{
    text-transform: capitalize;
}

/* Focused Input box */
.form .box:focus{
    border-color: var(--main-color);
}

/* Form Textarea */
.form textarea{
    resize: none;
    height: 20rem;
}

/* Form button */
.form .btn{
    width: 100%;
    overflow: hidden;
    margin: 1rem 0;
}

/*----- 9- Swiper Pagination CSS -----*/

/* Swiper pagination bullet */
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 3rem;
    border-radius: 0rem;
    background: var(--white);
    opacity: 0.7;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Active swiper pagination bullet */
.swiper-pagination-bullet-active{
    width: 6rem;
    background: var(--main-color) !important;
    opacity: 0.9 !important;
}

/*----- 10- Sidebar Heading CSS -----*/

/* Sidebar Heading Container */
.sidebar-heading{
    margin-bottom: 0.5rem;
}

/* Sidebar Heading Title */
.sidebar-heading h2{ 
    font-size: 3rem; 
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
} 

/*----- 11- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

/* sidebar container */
.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
}

/* Sidebar item */
.sidebar .sidebar-item{
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: var(--border);
}

/* Sidebar Item container */
.sidebar .box-container{
    padding-top: 1rem;
}

/*-- 1- Search --*/

/* Search input box */
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem;
    overflow: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
}

/* Search input */
.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    text-transform: none;
}

/* Focused search input */
.sidebar .search .input-box input:focus{
    border-color: var(--main-color);
}

/* Search button */
.sidebar .search .input-box label{
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Search button, Hover Effect */
.sidebar .search .input-box label:hover{
    background-color: var(--main-color);
}

/*-- 2- Category --*/

/* Category item */
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.1);
}

/* Category item text */
.sidebar .category a span{
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Category item icon */
.sidebar .category a span i{
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Category item Quantity */
.sidebar .category a p{
    font-size: 1.5rem;
    color: var(--grey);
}

/* Category item text, Hover Effect */
.sidebar .category a:hover span{
    color: var(--main-color);
}

/* Category item Quantity, Hover Effect */
.sidebar .category a:hover p{
    color: var(--main-color);
}

/*-- 3- Recent Post --*/
/* Post Item */
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Last Post Item */
.sidebar .post-item:last-child{
    margin-bottom: 0;
}

/* Post item Image */
.sidebar .post-item img{
    height: 8rem;
    width: 10rem;
    object-fit: cover;
    background-color: var(--grey);
}

/* Post item Link */
.sidebar .post-item a{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
}

/* Post item Link, On Hover */
.sidebar .post-item a:hover{
    color: var(--main-color);
}

/* Post item Price */
.sidebar .post-item .price{
    padding-top: 0.5rem;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Post item Discounted Price */
.sidebar .post-item .price span{
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey);
    text-decoration: line-through;
    padding-left: 0.2rem;
}

/* Post item Date */
.sidebar .post-item h3{
    padding-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    color: var(--grey);
}

/* Post item Date Icon */
.sidebar .post-item h3 i{
    color: var(--main-color);
}

/* Post item Date Text */
.sidebar .post-item h3 span{
    font-weight: 400;
}

/*-- 4- Tags --*/
/* Tag items Container */
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Individual Tag*/
.sidebar .tag-item{
    color: var(--grey);
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
    padding: 1rem 1.2rem;
}

/* Individual Tag, On Hover */
.sidebar .tag-item:hover{
    background-color: var(--main-color);
    color: var(--white);
    cursor: pointer;
}

  
/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*--------------- SECTIONS ---------------*/

/*----- 1- Home-Slider -----*/

/* Home section Container */
.home{ 
    padding: 0;
    height: 1px;
    min-height: 100vh;
    position: relative;
} 
  
/* Home slider */
.home-slider{ 
    position: relative; 
}
  
/* Home Slider Navigation Buttons */
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 1rem; 
    height: 4.5rem;
    width: 4.5rem;
    padding: 2.5rem;
}
  
/* Home Slider Navigation Buttons Icon */
.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
  
/* Home Slider Navigation Buttons, On Hover */
.home-slider .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover {
    background-color: var(--main-color);
}
 
/* Home Item */
.home-item{
    min-height: 100vh;
}
  
/* Home Item Image */
.home-item img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
  
/* Home Item Content */
.home-item .content{ 
    padding: 2rem 7%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    background:         linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}
  
/* Home Item Content Text Container */
.home-item .content .text{
    margin-top: 3rem;
    width: 70rem;
    text-align: left;
    border-left: 0.3rem solid var(--secondary-color);
    border-top: 0.6rem solid var(--secondary-color);
    border-top-left-radius: 4rem;
    border-right: 0.3rem solid var(--main-color);
    border-bottom: 0.6rem solid var(--main-color);
    border-bottom-right-radius: 4rem;
    padding: 3rem;
}

/* Home Item Content Starting Text */
.home-item .content span{
    display: block;
    font-size: 1.9rem;
    font-family: 'Fuzzy Bubbles', cursive;
    font-weight: bold;
    padding-bottom: 1rem;
    color: var(--main-color);
}
  
/* Home Item Content Heading */
.home-item .content h3{
    font-size: 5rem;
    text-transform: capitalize;
    color: var(--white);
    line-height: 1.2;
}
  
/* Home Item Content Paragraph */
.home-item .content p{
    font-size: 1.4rem;
    letter-spacing: 0.12rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1rem;
    padding-bottom: 2rem;
    line-height: 1.4;
}

/*----- 2- Home Search Tour -----*/
.home-search-tour{
    padding-bottom: 0rem;
}

/*----- 3- Services -----*/
/* Services Container */
.services .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/* Service Item */
.service-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -webkit-transition: 0.5 linear ease;
            transition: 0.5 linear ease;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Service Item, On Hover */
.service-item:hover{
    cursor: pointer;
}

/* Service Item, Before Style */
.service-item::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
}

/* Service Item Before Style, On Hover */
.service-item:hover::before {
    -webkit-animation-name: example;
            animation-name: example;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/* Keyframes for Service Item Before Animation */
@-webkit-keyframes example {
    0% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
    100% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
}
@keyframes example {
    0% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
    }
    100% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
}
    
/* Service Item Icon */
.service-item i{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10rem;
        flex: 1 1 10rem;
    font-size: 2rem;
    color: var(--white);
    height: 4rem;
    width: 4rem;
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
}

/* Service Item Content */
.service-item .content{
    text-align: left;
}

/* Service Item Heading */
.service-item h3{
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 0.5rem;
}


/* Service Item Heading, On Service Item Hover */
.service-item:hover h3{
    color: var(--white);
}

/* Service Item Paragraph */
.service-item p{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.7;
}

/* Service Item Paragraph, On Service Item Hover */
.service-item:hover p {
    color: var(--white);
}
   
/*----- 4- Counter -----*/

/* Counting Section */
.counting{
    width: 100%;
    padding: 3rem 5%;
    margin: 1rem 0;
    min-height: 15rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Counter.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Counting Box */
.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Counting Box Icon */
.counting .box i{
    color: var(--white);
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Counting Box Count */
.counting .box .count{
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--main-color);
}

/* Counting Box Heading */
.counting .box h3{
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 1rem;
    position: relative;
}

/* Counting Box Under Line */
.counting .box h3::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: 0%;
    right: 0%;
    width: 6rem;
    height: 6%;
    background:var(--main-color);
    display: inline-block;
    margin: auto;
}

/*----- 5- Discount Banner -----*/

/* Discount Banner Section */
.discount-banner{
    width: 100%;
    height: 80vh;
    padding: 3rem 5%; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Discount.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Discount.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Discount Banner Content */
.discount-banner .content{
    width: 70rem;
}

/* Discount Banner Heading */
.discount-banner h2{
    font-size: 6rem;
    color: var(--white);
}

/* Discount Banner Heading Sub-Text */
.discount-banner h2 span{
    color: var(--main-color);
}

/* Discount Banner Paragraph */
.discount-banner p{
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1rem;
    padding-bottom: 2rem;
    line-height: 1.4;
}

/*----- 6- Tours -----*/
.home-tours{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Tours.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Tours.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/*----- 7- Testimonials -----*/

/* HomePage testimonials section container */
.home-testimonials{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* HomePage Testimonial item Paragraph */
.home-testimonials .testi-item p{
    color: var(--white);
}

/* HomePage Testimonial item Heading */
.home-testimonials .testi-item .content h5{
    color: var(--white);
}
    
/*----- 8- Blog -----*/
.blog.main .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 2rem 0;
}

/*----- 1- About Us -----*/

/* Aligning About content in the center */
.about .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

/* About content */
.about .box-container .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/* About Heading */
.about .box-container .content h3{
    font-size: 3.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
    padding-bottom: 1rem;
}

/* About Paragraph style */
.about .box-container .content p{
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    font-weight: 400;
    color: var(--grey);
    padding-bottom: 1rem;
    line-height: 1.5;
}

/* About Button */
.about .btn{
    margin-top: 1rem;
}

/* About image container */
.about .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}

/* About images */
.about .image img{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 18rem;
        flex: 1 1 18rem; 
    height: 40rem;
    width: 100%;
    object-fit: cover;
}

/*----- 2- Team -----*/
.team .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/* Team member image container */
.team-item .image {
    height: 35rem;
    width: 100%;
    position: relative; 
    z-index: 0;
    overflow: hidden;
    border-bottom-right-radius: 5rem;
    border-bottom: 1rem solid var(--main-color);
}

/* Team member image */
.team-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social media icon container */
.team-item .icon-container {
    position: absolute;
    top: -100%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 66, 114, 0.7);
}

/* Show Icon container on hover */
.team-item:hover .icon-container {
    top: 0%;
}

/* Social media icons */
.team-item .icon-container a {
    color: var(--white);
    font-size: 1.7rem;
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    border: 0.15rem solid var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Social media icons, Hover Effect */
.team-item .icon-container a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

/* Team member content */
.team-item .content {
    margin-top: 1rem;
    padding: 1rem;
}

/* Team member name */
.team-item .content h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

/* Team member title */
.team-item .content p {
    color: var(--main-color);
    font-size: 1.6rem;
}

/*----- 3- Testimonials -----*/

/* Testimonial slider container */
.testimonial-slider{
    overflow: hidden;
    padding: 0rem 6rem;
    padding-bottom: 5rem;
    position: relative; 
}

/* Testimonial slider Navigation buttons */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev{
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
    padding: 2rem;
}

/* Testimonial slider Next Button */
.testimonial-slider .swiper-button-next{
    right: 0rem;
}

/* Testimonial slider Previous Button */
.testimonial-slider .swiper-button-prev{
    left: 0rem;
}

/* Testimonial slider Navigation buttons Icon */
.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Testimonial slider Navigation buttons, Hover Effect */
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    color: var(--white);
    background-color: var(--main-color);
}

/* Testimonial slider pagination bullets */
.testimonial .swiper-pagination-bullet{
    background: var(--secondary-color);
    opacity: 0.9;
}
 
/* Testimonial item */
.testi-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/* Testimonial Image container */
.testi-item .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    height: 40rem;
    position: relative;
    padding-top: 2rem;
}

/* Testimonial image */
.testi-item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Testimonial Image quote icon */
.testi-item .fa-quote-left {
    position: absolute;
    font-size: 2.5rem;
    top: 0;
    right: -2rem;
    z-index: 6;
    background: var(--main-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 50rem;
}

/* Testimonial Content */
.testi-item .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

/* Testimonial Comment */
.testi-item p{
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--grey);
    padding-bottom: 1.5rem;
}

/* Testimonial Author Name */
.testi-item .content h3{
    font-size: 2rem;
    color: var(--main-color);
}

/* Testimonial Author Title */
.testi-item .content h5{
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
}

/*----- 4- Faqs -----*/

/* FAQ section */
.faq{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

/* FAQ Image container */
.faq .image{
   -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/* FAQ Image */
.faq .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* FAQ Accordion container */
.faq .accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/* Faq accordion */
.faq .accordion{
    margin-bottom: 1.5rem;
} 
 
/* Faq last accordion */
.faq .accordion:last-child{
    margin-bottom: 0rem;
}  

/* Faq Accordion Heading */
.faq .accordion .accordion-heading{
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    -webkit-box-shadow: var(--box-shadow); 
            box-shadow: var(--box-shadow);
    border: 0.1rem solid var(--secondary-color);
}

/* Faq Active Accordion heading */
.faq .accordion.active .accordion-heading{
    background: var(--secondary-color);
}

/* Faq accordion heading title */
.faq .accordion .accordion-heading h3{
    font-size: 2rem;
    color: var(--black);
}

/* Faq Active Accordion heading title */
.faq .accordion.active .accordion-heading h3{
    color: var(--white);
}

/* Faq accordion item heading icon */
.faq .accordion .accordion-heading i{
    font-size: 2rem;
    color: var(--white);
    background: var(--main-color);
    padding: 1rem;
    border-radius: 50rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Faq accordion item content */
.faq .accordion-content{
    padding: 1.5rem 0.5rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

/* Faq Active accordion content */
.faq .accordion.active .accordion-content{
    display: block;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (03)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Account-Form -----*/
.account-form{
    width: 45rem;
    padding: 5rem;
    background: var(--white);
    margin: 1rem auto;
    text-align: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: var(--border);
}
 
/* Account form heading */
.account-form h3{ 
    font-size: 3rem;
    padding-bottom: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Account form input field container */
.account-form .input-field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin: 0.7rem 0;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Account form input field label */
.account-form .input-field label{
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
    outline: none;
}
  
/* Account form Input box */
.account-form .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--grey);
    padding: 1.5rem;
    text-transform: none;
}

/* Focused input box */
.account-form .box:focus{
    border-color: var(--secondary-color);
}

/* Input box placeholder */
.account-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}

.account-form .box::-moz-placeholder{
    text-transform: capitalize;
}

.account-form .box:-ms-input-placeholder{
    text-transform: capitalize;
}

.account-form .box::placeholder{
    text-transform: capitalize;
}

/* Account form text */
.account-form p{
    padding-top: 2rem;
    font-size: 1.5rem;
    color: var(--grey);
    text-align: center;
    padding-bottom: 1rem;
}

/* Account form button */
.account-form .btn{
    width: 100%;
    overflow: hidden;
    margin: 1rem 0;
}

/* Account form link */
.account-form .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

/* Account form link, On Hover */
.account-form .link:hover{
    text-decoration: underline;
}

/*--------------- PAGES ---------------*/

/*----- 1- Gallery -----*/

/* Gallery container */
.gallery .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 1rem;
}

/* Gallery item */
.gallery-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem; 
    overflow: hidden;
    position: relative;
    height: 30rem;
}

/* Gallery item double-sized */
.gallery-item.double{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem; 
        flex: 1 1 40rem; 
}

/* Gallery item Image */
.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Gallery item content overlay */
.gallery-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    outline: 0.1rem solid var(--white);
    outline-offset: -1rem;
    opacity: 0;
}

/* Gallery item content overlay, Hover effect */
.gallery-item:hover .content{
    opacity: 1;
}

/* Gallery item expand icon */
.gallery-item a i{
    height: 4rem;
    width: 4rem;
    font-size: 1.6rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.15rem solid var(--white);
}

/* Gallery item expand icon, Hover effect */
.gallery-item a i:hover{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Gallery item title */
.gallery-item .content h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-top: 1rem;
}

/*----- 2- Login -----*/

/* Login info container */
.login form .info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0.5rem 0;
}

/* Login Remember container */
.login form .remember {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
  
/* Login Remember label */
.login form .remember label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
/*----- 3- Register -----*/

/* Register Terms container */
.register form .terms{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

/* Register Terms label */
.register form .terms label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
/* Register Terms label SubText */
.register form .terms label span{
    color: var(--main-color);
}

/*------------------------------ (03)-Pages (End) ------------------------------*/



/*------------------------------ (04)-Destination (Start) ------------------------------*/

/*----- 1- Destinations -----*/
.destinations .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/* Destination item */
.destination-item {
    height: 30rem;
    overflow: hidden;
    position: relative;
}

/* Destination Content */
.destination-item .content {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(33, 33, 33, 0.1), rgba(0, 0, 0, 0.5));
    background:         linear-gradient(rgba(33, 33, 33, 0.1), rgba(0, 0, 0, 0.5));
    font-size: 1.5rem;
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

/* Destination Image Container */
.destination-item .image{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Destination Image */
.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Destination Image, On Hover */
.destination-item:hover img {
    scale: 1.1;
}

/* Destination Total Tours */
.destination-item p {
    color: var(--white);
    background: var(--secondary-color);
    border-bottom-right-radius: 1.5rem;
    border-bottom: 0.3rem solid var(--main-color);
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
    width: 8rem;
    text-align: center;
}

/* Destination Heading */
.destination-item a{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

/* Destination Heading, On Hover */
.destination-item a:hover{
    color: var(--main-color);
}

/*----- 2- Single Destination -----*/

/* Destination Intro */
.destination-single .des-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Destination Intro Image container */
.destination-single .des-intro .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
    height: 45rem;
    overflow: hidden;
}

/* Destination Intro Image */
.destination-single .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Destination Details */
.destination-details {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem;
    background-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
}

/* Destination Detail Item Intro container */
.destination-details .detail-item .intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

/* Destination Detail Item Icon */
.destination-details .detail-item i {
    height: 1.5rem;
    width: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--white);
}

/* Destination Detail Item Heading */
.destination-details .detail-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
}

/* Destination Detail Item Paragraph */
.destination-details .detail-item p {
    font-size: 1.6rem;
    font-weight: 400;
    color: #f7f7f7;
}

/* Destination Content */
.des-info .des-content {
    margin: 2rem 0;
}

/* Destination Single Main Heading */
.destination-single .main-heading{
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    color: var(--secondary-color);
    padding-top: 2rem;
    padding-bottom: 1rem;
}

/* Destination Single Paragraph */
.destination-single p{
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Destination Single Sub Heading */
.destination-single .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Destination Gallery */
.des-gallery .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}
  
/* Destination Gallery Image */
.des-gallery img {
    height: 25rem;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Destination Tours */ 
.des-tours {
    margin-top: 2rem; 
}

/* Destination Tours Box Container */
.des-tours .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(33rem, 1fr));
    grid-gap: 1rem;
}  

/*------------------------------ (04)-Destination (End) ------------------------------*/



/*------------------------------ (05)-Tours (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Search-Tour Form  -----*/
.search-tour{
    background: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* search-tour form fields */
.search-tour .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem; 
}

/* Input field Container */
.search-tour .input-field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    height: 4.5rem;
}

/* Input field */
.search-tour .box .input-box{
    width: auto;
    padding: 1rem;
    font-size: 1.6rem;
    font-weight: normal;
    color: #444;
    text-transform: none;
    height: 100%;
    border-radius: 0.5rem;
}

/* Input field placeholder */
.search-tour .box input::placeholder{
    text-transform: capitalize;
}

/* Submit button */
.search-tour .btn{
    display: block;
    text-align: center;
}


/*----- Custom Select Styles -----*/

/* Hide the original select element */
.search-tour select {
    display: none !important;
}

/* Custom Dropdown Select */
.search-tour .dropdown-select {
    cursor: pointer;
    display: block;
    float: left;
    font-size: 1.6rem;
    font-weight: normal;
    height: 100%;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    color: var(--grey) !important;
}

/* Select Arrow icon */
.search-tour .dropdown-select:after {
    height: 0;
    width: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #777;
    -webkit-transform: origin(50% 20%);
            transform: origin(50% 20%);
    -webkit-transition: all 0.125s ease-in-out;
            transition: all 0.125s ease-in-out;
    content: '';
    display: block;
    margin-top: -2px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
}

/* Arrow icon when the dropdown is open */
.search-tour .dropdown-select.open:after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

/* Dropdown List, When it is open */
.search-tour .dropdown-select.open .list {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Options, When the dropdown is open */
.search-tour .dropdown-select.open .option {
    cursor: pointer;
}

/* Additional styling for a wide dropdown select */
.search-tour .dropdown-select.wide {
    width: 100%;
}

/* Additional styling for the dropdown list of a wide select */
.search-tour .dropdown-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

/* Dropdown list */
.search-tour .dropdown-select .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 0.5rem;
    margin-top: 0.4rem;
    padding: 0.3rem 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    max-height: 250px;
    overflow: auto;
    border: 1px solid #ddd;
}

/* Search box container */
.search-tour .dropdown-select .search{
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    margin: 0.5rem;
}

/* Search box input */
.search-tour .dropdown-select .searchbox{
    width: 90%;
    padding: 1rem;
    border: 1px solid #999;
    border-radius: 0.5rem;
    outline: none;
}

/* Search box input, When focused */
.search-tour .dropdown-select .searchbox:focus{
    border-color: var(--main-color);
}

/* Options list */
.search-tour .dropdown-select .list ul {
    padding: 0;
}

/* Each option in the dropdown list */
.search-tour .dropdown-select .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
    list-style: none;
}

/* Hovered option */
.search-tour .dropdown-select .option:hover{
    color: var(--white);
    background-color: var(--main-color) !important;
}

/* Focused option */
.search-tour .dropdown-select .option:focus {
    color: var(--white);
    background-color: var(--secondary-color) !important;
}

/* Selected option */
.search-tour .dropdown-select .option.selected {
    font-weight: 600;
    color: var(--white);
    background-color: var(--secondary-color);
} 

/*----- 02- Tour-Item -----*/
.tour-item {
    overflow: hidden;
    border-bottom: 0.7rem solid var(--main-color);
    border-bottom-right-radius: 6rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Tour image container */
.tour-item .image {
    width: 100%;
    height: 30rem;
    overflow: hidden;
    position: relative;
}

/* Tour image */
.tour-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tour image, On hover */
.tour-item:hover img {
    scale: 1.02;
}

/* Tour price */
.tour-item .price {
    position: absolute;
    top: 75%;
    left: 0;
    color: var(--white);
    background: var(--secondary-color);
    padding: 1rem 2rem;
    font-size: 2rem;
    border-bottom-right-radius: 1.5rem;
    border-bottom: 0.3rem solid var(--main-color);
}

/* Tour content */
.tour-item .content {
    padding: 2rem;
}

/* Tour rating container */
.tour-item .rating {
    display: flex;
    gap: 1rem;
}

/* Tour rating icon */
.tour-item .rating i {
    font-size: 1.6rem;
    color: goldenrod;
}

/* Tour rating text */
.tour-item .rating h5 {
    font-size: 1.6rem;
    color: var(--black);
}

/* Tour Name link */
.tour-item .content a{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    color: var(--black);
}

/* Tour Name link, On Hover */
.tour-item .content a:hover{
    color: var(--main-color);
}

/* Tour details container */
.tour-item .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

/* Tour single detail */
.tour-item .details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Tour detail icon */
.tour-item .details h3 i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/* Tour detail value */
.tour-item .details h3 span{
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 500;
}


/*--------------- PAGES ---------------*/

/*----- 1- Tour Packages -----*/
.tours .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*----- 2- Single Tour -----*/

/* Tour single container */
.single-tour{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
} 

/* Price tag on Tour image */
.single-tour .price {
    position: absolute;
    top: 75%;
    left: 0;
    background: var(--secondary-color);
    padding: 1rem 2rem;
    color: var(--white);
    font-size: 2rem;
    border-bottom-right-radius: 1.5rem;
    border-bottom: 3px solid var(--main-color);
}

/* Tour info container */
.tour-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/* Tour image container */
.tour-info .image{
    height: 40rem;
    overflow: hidden;
    position: relative;
}

/* Tour image */
.tour-info .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Tour Main heading */
.tour-info .main-heading{
    display: inline-block;
    font-size: 4rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-top: 2rem;
}

/* Tour details container */
.tour-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1rem;
}

/* Tour detail item */
.tour-info .details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Tour detail item icon */
.tour-info .details h3 i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/* Tour detail item text */
.tour-info .details h3 span{
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 500;
}

/* Tour Rating */
.tour-info .rating{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
} 
  
/* Tour Rating Icon */
.tour-info .rating .icon{
    font-size: 1.6rem;
    color: goldenrod;
}
  
/* Tour Rating text */
.tour-info .rating h5{
    font-size: 1.6rem;
    color: var(--black);
}

/* Tour info paragraphs */
.tour-info p{
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Tour info sub-heading */
.tour-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}

/* Tour details paragraphs */
.tour-details > p{
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Tour details list */
.tour-details ul{
    list-style: none;
}

/* Tour details list items */
.tour-details ul li{
    padding: 1rem 0;
    font-size: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Tour details list items heading */
.tour-details ul li h5{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Tour details list items icon */
.tour-details ul li i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/* Tour details list items paragraph */
.tour-details ul li p{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    font-size: 1.6rem;
    color: var(--grey);
}

/* List container inside Tour details list items */
.tour-details .list{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    font-size: 1.6rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Tour Plan Container */
.tour-plan .box-container{
    padding-top: 1rem;
}

/* Plan item */
.plan-item{
    position: relative;
    padding-left: 2rem;
    border-left: 0.2rem solid var(--main-color);
    margin-left: 2rem;
}

/* Plan item dot */
.plan-item .fa-location-dot{
    position: absolute;
    top: 0; 
    left: -2.5rem;
    height:5rem;
    width: 5rem;
    border-radius: 50%;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    color:var(--white);
    background: var(--main-color);
}

/* Plan content */
.plan-item .content{
    padding: 0rem 2rem;
    padding-bottom: 2rem;
}

/* Plan heading */
.plan-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
    padding-top: 0.5rem;
}

/* Plan paragraphs */
.plan-item p{
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 1.5;
}

/* Plan list */
.plan-item ul{
    padding-left: 1rem;
}

/* Plan list items */
.plan-item ul li{
    padding-bottom: 0.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
}

/* Plan list items icon */
.plan-item ul i{
    color: var(--main-color);
    font-size: 1rem;
}

/* Plan list items text */
.plan-item span{
    color: var(--grey);
    font-size: 1.4rem;
}

/* Tour map iframe */
.tour-map iframe{
    height: 40rem;
    width: 100%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Tour gallery Container */
.tour-gallery .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 0.5rem;
}

/* Tour gallery images */
.tour-gallery img{
    height: 20rem;
    width: 100%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Leave review container */
.leave-review{
    width: 100%;
} 

/*-- Booking-Tour --*/
.booking-tour{
    padding: 2rem;
    background: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    text-align: center;
    border: var(--border);
}

/* Booking tour heading */
.booking-tour h3{ 
    font-size: 3rem;
    padding-bottom: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Booking tour input field container */
.booking-tour .input-field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin: 0.7rem 0;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Booking tour input field container label */
.booking-tour .input-field label{
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    font-size: 1.8rem;
    cursor: pointer;
    outline: none;
}

/* Booking tour input field container label with class 'fa-comment' */
.booking-tour .input-field label.fa-comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}
  
/* Booking tour input field */
.booking-tour .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--grey);
    padding: 1.5rem;
    text-transform: none;
}

/* Booking tour Focused input field */
.booking-tour .box:focus{
    border-color: var(--secondary-color);
}

/* Booking tour input field placeholder */
.booking-tour .box::-webkit-input-placeholder{
    text-transform: capitalize;
}
.booking-tour .box::-moz-placeholder{
    text-transform: capitalize;
}
.booking-tour .box:-ms-input-placeholder{
    text-transform: capitalize;
}
.booking-tour .box::placeholder{
    text-transform: capitalize;
}

/* Booking tour button */
.booking-tour .btn{
    width: 100%;
    overflow: hidden;
    margin: 1rem 0;
}

/*------------------------------ (05)-Tours (End) ------------------------------*/



/*------------------------------ (06)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/

/* Blog Image Container */
.blog-item .image{
    height: 25rem;
    border-top: 0.7rem solid var(--secondary-color);
    border-top-left-radius: 6rem;
    border-bottom: 0.7rem solid var(--main-color);
    border-bottom-right-radius: 6rem;
    overflow: hidden;
}

/* Blog Image */
.blog-item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} 

/* Blog Image, On Blog Hover */
.blog-item:hover .image img { 
    scale: 1.03;
}

/* Blog Content */
.blog-item .content{
    padding: 1rem 0rem;
    padding-bottom: 2rem;
}
  
/* Blog Category label */
.blog-item .label {
    font-size: 1.5rem;
    padding: 0.8rem 1rem;
    display: inline-block;
    color: var(--white);
    background: var(--secondary-color);
    padding-left: 2rem;
    position: relative;
}

/* Imaginary element appearing before the Blog item category label */
.blog-item .label::before {
    content: " ";
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    top: 50%;
    left: -0.6rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: var(--white);
    border-radius: 50rem;
}

/* Blog Main heading */
.blog-item .content .main-heading{
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    line-height: 1.4;
    padding: 0.5rem 0;
}

/* Blog Main heading, On hover */
.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

/* Blog Content */
.blog-item .content p{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Blog Details section */
.blog-item .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Blog Detail text */
.blog-item .details span{
    font-size: 1.4rem;
    color: var(--secondary-color);
}

/*----- 02- Pages-No -----*/

/* page numbers */
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3rem;
}

/* page number buttons Container */
.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Page number individual button */
.pages-no .item{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    margin: 0rem 0.5rem;
    font-size: 2rem;
    border-radius: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Page number individual button, active and hover effect */
.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    color: var(--white);
    background-color: var(--secondary-color);
}

/* All page numbers container */
.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*----- 03- Comments -----*/

/* All Comments section */
.comments {
    padding: 2rem 0;
}

/* Comments section title */
.comments h4 {
padding-bottom: 0.5rem; 
font-size: 2.5rem;
color: var(--black);
}

/* Comments section replies */
.comments .replies {
margin-left: 10rem;
margin-top: 0.5rem;
}

/* Comment container */
.comment {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
gap: 2rem;
padding: 1rem 0; 
}

/* Comment image container */
.comment .comment-image {
height: 8rem;
width: 8rem;
overflow: hidden;
}

/* Image inside the Comment image container */
.comment .comment-image img {
height: 100%;
width: 100%;
object-fit: contain;
}

/* Comment content container */
.comment .comment-content {
-webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/* Comment intro section */
.comment .intro {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
gap: 0.5rem;
padding-bottom: 0.5rem;
}

/* Name section inside the Comment intro section */
.comment .intro .name {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
gap: 1rem;
}

/* Name text inside the Comment name section */
.comment .intro h3 {
font-size: 1.8rem;
color: var(--black);
}

/* Dash separator inside the Comment name section */
.comment .intro span {
font-size: 1.8rem;
color: var(--grey);
}

/* Date inside the Comment name section */
.comment .intro h6 {
font-size: 1.5rem;
font-weight: 400;
color: var(--grey);
}

/* Comment rating section */
.comment .rating {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 0.5rem;
}

/* Comment star icon */
.comment .rating .icon {
font-size: 1.6rem;
color: goldenrod;
}

/* Comment rating value */
.comment .rating h5 {
font-size: 1.6rem;
color: var(--black);
}

/* Comment text */
.comment .text {
font-size: 1.5rem;
color: var(--grey);
line-height: 1.5;
padding-bottom: 0.5rem;
}

/* Comment Reply */
.comment .icon-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
gap: 0.3rem;
}

/* Comment Reply icon */
.comment .icon-item i {
color: var(--main-color);
font-size: 1.5rem;
}

/* Comment Reply text */
.comment .icon-item span {
color: var(--main-color);
font-size: 1.6rem;
}

/* Comment Reply, Hover effect */
.comment .icon-item:hover i,
.comment .icon-item:hover span {
cursor: pointer;
color: var(--secondary-color);
}


/*--------------- PAGES ---------------*/

/*----- 1- Blog Grid -----*/

/* Blog Grid Container */
.blog.grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

/* Blog Container */
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/* Blog items container in Blog Grid */
.blog-container.grid .blog-items{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*----- 2- Blog List -----*/

/* Blog List Container */
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/* Blog items container in Blog List */
.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

/* Blog item image in list layout */
.blog-container.list .blog-item .image{
    height: 30rem;
}

/*----- 3- Single Blog -----*/
/*
1- Blog Info
2- Leave A Reply
*/

/* Blog Single */
.single-blog{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

/*-- 1- Blog Info --*/
.blog-info{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}
 
/* Blog Image container */
.blog-info .image{ 
    height: 40rem; 
}
  
/* Blog Image */
.blog-info .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
  
/* Blog Content */
.blog-info .content{
    padding: 2rem;   
}
  
/* Blog Details */
.blog-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

/* Blog Category */
.blog-info .details .category{
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
}

/* Blog Detail Item */
.blog-info .details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: var(--grey);
}

/* Blog Detail Item Icon */
.blog-info .details h3 i{
    color: var(--main-color);
}

/* Blog Detail Item text */
.blog-info .details h3 span{
    font-weight: 400;
}
  
/* Blog Main Heading */
.blog-info .content .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding-bottom: 1.5rem;
}
  
/* Blog Paragraph */
.blog-info p{
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}
  
/* Blog Important Container */
.blog-info .important{
    padding: 2rem 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    margin-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    background-color: var(--secondary-color);
}

/* Blog Important Icon */
.blog-info .important i{
    font-size: 6rem;
    color: var(--white);
}

/* Blog Gallery */
.blog-info .blog-gallery{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Blog Gallery Image */
.blog-info .blog-gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
  
/* Blog End Details */
.blog-info .end-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
  
/* Blog Tags and Share Container */
.blog-info .tags, 
.blog-info .share{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}
  
/* Blog Share Heading */
.blog-info .share h3{
    color: var(--black);
    font-size: 1.6rem;
    padding-right: 1rem;
}
 
/* Blog Tags Link */
.blog-info .tags span{
    color: var(--grey);
    font-size: 1.4rem;
    padding: 0.7rem 1.2rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Blog Tags Link, On Hover */
.blog-info .tags span:hover{
    color: var(--white);
    background-color: var(--main-color);
}
  
/* Blog Share Icon */
.blog-info .share i{
    color: var(--grey);
    font-size: 1.6rem;
}
  
/* Blog Info Share Icon, On Hover */
.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
   
/*-- 2- Leave A Reply --*/
.leave-reply{
    width: 100%;
} 

.leave-reply h4{
    padding-bottom: 0.5rem; 
    font-size: 2.5rem;
    color: var(--black);
}

/*------------------------------ (06)-Blog (End) ------------------------------*/



/*------------------------------ (07)-Shop (Start) ------------------------------*/
.shop{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/*--------------- COMPONENTS ---------------*/

/*----- 01- Filter -----*/

/* Filter container */
.filter .box-container{
    padding: 2rem 0;
}

/* Filter slider */
.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

/* Slider progress */
.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--secondary-color);
    transition: none;
}

/* Range input Container */
.range-input{
    position: relative;
    transition: none;
}

/* Range input */
.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Slider thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Slider thumb in Firefox */
input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Price wrap container */
.price-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    color: #242424;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 3rem;
}

/* Price input container */
.filter .price-input{
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

/* Price input field Container */
.filter .price-input .field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Price input field */
.filter .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.5rem;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Rremove the spinner arrows in number inputs */
.filter input[type="number"]::-webkit-outer-spin-button,
.filter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Separator within the price input container */
.filter .price-input .separator{
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
  
/* Filter button */
.filter-btn{
    display: inline-block;
    padding: 1rem 3rem;
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/* Filter button, On Hover */
.filter-btn:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

/*----- 02- Shop Header -----*/

/* Shop Header container */
.shop .intro{
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify; 
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
}

/* Showing products count */
.shop .intro .showing{
    font-size: 1.6rem;
    color: var(--grey);
}

/* Styles buttons */
.shop .intro .styles{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Styles button links */
.shop .intro .styles a{
    font-size: 2rem;
    margin: 0rem 0.5rem;
    color: var(--black);
}

/* Styles button links, Hover */
.shop .intro .styles a:hover{
    cursor: pointer;
    color: var(--main-color);
}

/* Sorting typelabel */
.shop .intro .sorting-type label{
    font-size: 1.6rem;
    color: var(--black);
    margin-right: 0.5rem;
    padding-right: 0.5rem;
}

/* Sorting type Select dropdown */
.shop .intro .sorting-type select{
    font-size: 1.4rem;
    color: var(--grey);
    background-color: transparent;
    border: var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* Select dropdown options */
.shop .intro .sorting-type select option{
    padding: 1rem;
}

/*----- 03- Product-Item -----*/

/* Product Card */
.product-item{
    overflow: hidden;
    -webkit-transition: all 1s ease;  
    -moz-transition: all 1s ease; 
    -o-transition: all 1s ease;  
    transition: all 1s ease; 
} 
  
/* Cart section */
.product-item .image .cart{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
}

/* Show cart section, 0n Product hover */
.product-item:hover .image .cart{
    opacity: 1;
}

/* Cart Link */
.product-item .image a{
    font-size: 1.8rem;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Cart Link Icon */
.product-item .image a i{
    padding-right: 0.5rem;
}

/* Cart Link, On Hover */
.product-item .image a:hover{
    background-color: var(--secondary-color);
}

/* Product image Section */
.product-item .image{
    position: relative;
}

/* Product image */
.product-item .image img{
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border: var(--border);
}

/* Product content */
.product-item .content{
    padding-top: 1rem;
    padding-bottom: 2rem;
    text-align: left;
}

/* Product name */
.product-item h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
}

/* Product name, On Hover */
.product-item h3:hover{
    color: var(--main-color);
}

/* Product price */
.product-item .price{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Product Discounted price */
.product-item .price span{ 
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--grey);
    padding-left: 0.2rem;
}

/* Product rating */
.product-item .rating {
    padding-top: 0.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Product Rating icon */
.product-item .rating i {
    font-size: 1.5rem;
    color: var(--main-color);
}

/* Product Rating text */
.product-item .rating h5 {
    font-size: 1.5rem;
    color: var(--black);
} 


/*----- 04- Shop-Title -----*/

/* Title container */
.shoplist-title{
    background-color: var(--secondary-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}

/* Individual titles */
.shoplist-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10rem;
        flex: 1 1 10rem;
    font-size: 1.8rem;
    text-align: center;
}

/* First title */
.shoplist-title h3.product-heading{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
}

/*----- 05- Cart-Summary -----*/

/* Summary List */
.summary-list{
    padding: 1.5rem;
    border: var(--border);
}

/* Summary item */
.summary-item{
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
} 

/* Summary boxes */
.summary-item .box{
    font-size: 2rem;
    color: var(--black);
}

/* Summary Name*/
.summary-item .name{
    font-weight: bold;
}

/* Summary Value */
.summary-item .value{
    font-weight: 400;
    color: var(--grey);
}

/* Summary Button */
.summary-list .btn{
    width: 100%;
    margin: 1rem 0;
}

/*----- 06- Quantity Box -----*/
/* Buttons */
.quantity.buttons_added {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 4rem;
    width: 11rem;
    margin: 0 auto;
}

/* Minus and Plus Buttons */
.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    width: 3rem;
    color: var(--black);
    cursor:pointer;
    background-color: var(--white);
}

/* Minus and Plus buttons, On Hover */
.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: var(--main-color); 
    color: var(--white);
}

/* Quantity Input field */
.quantity .input-text.qty {
    padding: 0 1rem;
    text-align: center;
    background-color: transparent;  
    border-right: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
} 
  
/* Remove default spin button appearance */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
    
/* Remove focus outline for minus and plus buttons */
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}

/*--------------- PAGES ---------------*/
.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
.shop .product-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Product Container (Grid) */
.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
}

/*----- 2- Shop Standard -----*/

/* Product Item inside Product Container (List) */
.shop .product-container.list .product-item{
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Product Item Image Container */
.shop .product-container.list .product-item .image{
    height: 100%; 
    min-width: 25rem;
}

/* Product Item Image */
.shop .product-container.list .product-item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Product Item Content */
.shop .product-container.list .product-item .content{
    text-align: left;
    padding: 1.5rem;
}

/* Product Item Content Paragraph */
.shop .product-container.list .product-item .content > p{
    font-size: 1.6rem;
    padding: 1rem 0;
    line-height: 1.5;
}

/*----- 3- Product Details -----*/

/*-- Product Descriptions --*/
.single-product .product-des{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Product Container */
.single-product .product-des .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 5rem;
    background-color: var(--white);
    margin-bottom: 2rem;
}

/*-- Product Image --*/
.single-product .product-des .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*-- Product Image Container --*/
.single-product .product-des .image-container{
    width: 50rem;
}

/*-- Product Main Image Container --*/
.single-product .product-des .image-container .main{
    width: 100%;
    height: 40rem;
}

/*-- Product Image --*/
.single-product .product-des .image .main img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Image Thumbnails Container */
.single-product .product-des .image .change-btns{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(8rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 0.5rem;
    margin: 0.5rem 0;
}

/* Product Image Thumbnail */
.single-product .product-des .image .change-btns img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Product Image Thumbnail, Active Effect */
.single-product .product-des .image .change-btns img.active{
    border: 0.4rem solid var(--main-color);
}

/* Product Content */
.single-product .product-des .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Product Intro */
.single-product .product-des .content .product-intro{
    border-bottom: 0.2rem solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

/* Product Title */
.single-product .product-des .content h3{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Product Price */
.single-product .product-des .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

/* Product Discounted Price */
.single-product .product-des .content .price span{
    color: var(--grey);
    font-weight: lighter;
    text-decoration: line-through;
}

/* Product Rating */
.single-product .product-des .content .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}
  
/* Product Rating Icon */
.single-product .product-des .content .rating .icon {
    color: var(--main-color);
    font-size: 2rem;
}

/* Product Rating text */
.single-product .product-des .content .rating h5 {
    font-size: 2rem;
    color: var(--black);
}

/* Product Description Paragraph */
.single-product .product-des .content p{
    font-size: 1.5rem;
    padding: 1.5rem 0;
    line-height: 1.7;
    font-weight: 400;
    color: var(--grey);
}

/* Product Box Container */
.single-product .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
}

/* Product Quantity Container */
.single-product .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Product Quantity Text */
.single-product .qty .text{
    width: 10rem;
}

/* Product Cart Button */
.single-product .product-des .content .btn{
    margin: 2rem 0;
}

/* Product Categories and Tags */
.single-product .categories,
.single-product .tags{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
}

/* Product Categories and Tags Headings */
.single-product .categories h4,
.single-product .tags h4{
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Product Categories and Tags Links */
.single-product .categories span,
.single-product .tags span{
    font-size: 1.6rem;
    color: var(--grey);
    padding: 0 0.5rem;
}

/* Product Categories and Tags Links, Hover Effect */
.product-single .categories span:hover,
.product-single .tags span:hover {
  color: var(--main-color);
}

/*-- Product Addtional Information --*/
.product-info{
    margin-top: 4rem;
}

/* Product Information Tabs */
.product-info-tabs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    border-bottom: 0.2rem solid rgba(0, 0, 0, 0.1);
    gap: 0.1rem;
}

/* Product Information Tabs Button */
.product-info-tabs button{
    padding: 1rem 2rem;
    font-size: 1.8rem;
    background-color: var(--black);
    color: var(--white);
}

/* Product Information Tabs Button, Active and Hovered Effect */
.product-info-tabs button.active,
.product-info-tabs button:hover{
    background-color: var(--main-color);
    cursor: pointer;
}

/* Product Information Gallery */ 
.product-info-gallery{
    display: none;
}

/* Product Information Active Gallery */ 
.product-info-gallery.active{
    display: block;
    margin-top: 2rem;
}

/* Product Description */
.product-info .description p{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Additional Information */
.product-info .additional-info .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

/* Additional Information Title */
.product-info .additional-info h3{
    width: 20rem;
    font-size: 1.8rem;
    color: var(--black);
}

/* Additional Information Value */
.product-info .additional-info span{
    font-size: 1.6rem;
    color: var(--grey);
}

/* Reviews Comments Heading */
.product-info h2{
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 1rem;
}

/* Reviews Container */
.product-info .reviews{
    margin-bottom: 2rem;
} 

/*-- 3- Leave A Reply --*/
.product-info .product-review{
    width: 60rem;
} 

/*-- Related Products --*/
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
}

/*----- 4- Cart  ------*/
/*
1- Cart Items
2- Cart Total
*/

/*-- 1- Cart Items --*/

/* Shopping cart container */
.shopping-cart{
    margin-bottom: 2rem;
    overflow-x:auto;
    overflow-y:hidden; 
    border: var(--border);
}

/* Shopping cart container Scrollbar */
.cart .shopping-cart::-webkit-scrollbar{ 
    height: 1rem;
}

/* Shopping cart inside Container */
.cart .shopping-cart .container{
    min-width: 90rem;  
}

/* Cart item */
.cart-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Cart item last child */
.cart-item:last-child{
    border: none;
}

/* Cart item Box */
.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
}

/* Cart item Product Section */
.cart-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

/* Cart Image */
.cart-item img{
    height: 8rem;
    width: 8rem;
    object-fit: cover;
    background-color:#f7f7f7;
}

/* Cart item Name */
.cart-item .name{
    color: var(--secondary-color);
    font-weight: 500;
}

/* Cart Icon */
.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

/* Cart Icon, On Hover */
.cart-item .icon:hover{
    color: var(--secondary-color);
}

/*-- 2- Cart Total --*/
.cart .cart-summary{
    width: 45rem;
    margin-left: auto;
}

/* Cart total Button */
.cart .btn{
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}

/*----- 5- Checkout -----*/
/*
1- Payment Method
2- Cart Total
*/

/* checkout Heading */
.checkout .heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    padding-bottom: 1rem;
}

/* checkout Heading title */
.checkout .heading h2{
    font-size: 3rem;
}

/* Checkout item */
.checkout-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    background-color: var(--white);
    padding: 1rem;
    margin-bottom: 2rem;
}

/* Checkout section, Box-1 container */
.checkout .box-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 2rem;
}

/*-- 1- Payment Method --*/

/* Payment method */
.payment-methods .payment{
    margin-bottom: 1.5rem;
}

/* Payment method content */
.payment-methods .content{
    padding: 2rem;
    border: var(--border);
}

/* Payment method label */
.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Payment method input */
.payment-methods .payment input{
    margin-right: 0.5rem;
}

/* Selected/Highlighted payment method label */
.payment input:checked + label, 
.payment label:hover{ 
    color: var(--main-color);
}

/* Payment method body */
.payment .payment-body{ 
    display: none;
}

/* Payment method body paragraph */
.payment-methods .payment .payment-body p{
    font-size: 1.6rem;
    line-height: 2;
    color: var(--grey);
    padding-top: 1rem;
}

/* Show payment method body when input is checked */
.payment > input:checked ~ .payment-body{ 
    display: block;
}

/* Active payment method body */
.payment-body.active{
    display: block;
}

/*-- 2- Cart-Total --*/

/* Checkout Summary List */
.checkout .summary-list{
    width: 50rem;
}

/* Checkout Button */
.checkout .btn{
    width: 50rem;
    text-align: center;
    margin-top: 2rem;
}

/*------------------------------ (07)-Shop (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/

/* Contact section Heading */
.contact h3{
    color: var(--secondary-color);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-align: center;
}

/* Contact section box container */
.contact .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/*----- 1- Google Map -----*/
.contact iframe{ 
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
}

/*----- 2- Contact Info -----*/

/* Contact info container */
.contact-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    background: var(--black);
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Contact info item */
.contact .contact-info .info-item{
    padding: 1rem;
    text-align: center;
}

/* Contact info item Heading */
.contact .contact-info .info-item h4{
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    padding-bottom: 0.5rem;
}

/* Contact info item Paragraph */
.contact .contact-info .info-item p{
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.6;
    text-transform: none;
    padding-bottom: 0.5rem;
}

/* Contact info item paragraph with "gmail" class */
.contact .contact-info .info-item p.gmail{
    text-transform: none;
}

/*----- 3- Contact Form -----*/

/* Contact form */
.contact-form{  
    background: var(--white);  
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    padding: 1rem 2rem;
}

/* Contact form Input field */
.contact-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--secondary-color);
    background-color: var(--white);
    text-transform: none;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.1);
}

/* Contact form Input field, When focused */
.contact-form .box:focus {
    border-color: var(--main-color);
}

/* Contact form Input field Placeholder text */
.contact-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}
.contact-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}
.contact-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}
.contact-form .box::placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

/* Contact form Input field Textarea */
.contact-form textarea.box{
    height: 15rem;
    resize: none;
}

/* Contact form Button */
.contact-form .btn{
    margin-top: 1rem;
}

/* Contact form Alert Message */
.contact-form .alert{
    font-size: 2rem;
    color: var(--main-color);
    padding-left: 1rem;
}

/*------------------------------ (08)-Contact (End) ------------------------------*/