/* Table of Contents
----------------------------------
 

/*------------------------------ Global CSS ------------------------------*/
/*      
0- Global CSS       
1- Heading CSS    
2- Button CSS   
3- Logo Area CSS 
4- Header Area CSS 
5- Footer Area CSS
6- Scroll-Top Area CSS
7- Dark Form CSS
8- Swiper Pagination CSS
9- Swiper Navigation CSS
10- Custom Form CSS

*/

/*------------------------------ (01)-Home ------------------------------*/
/*
1- Home Slider
2- About
3- Services
4- Why Choose Us
5- Destinations
6- Tours
7- Counter
8- Portfolio
9- Offers
10- Testimonials
11- FAQs
12- Blogs
13- Book Tours
14- Contact
15- Partner Slider
*/



/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{    
    --main-color: #2b91eb;
    --secondary-color: #010143;
    --accent-color: #1d4fb0;
    --black: #000; 
    --white: #fff;
    --light-grey: #E6E6E6;
    --grey: #666; 
    --custom-bg: rgba(0, 0, 0, 0.8);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 50%;
    --custom-border: 0.5rem solid var(--main-color);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --linear: linear-gradient(144deg, var(--main-color), var(--accent-color));
}

*{
    font-family: "Roboto", 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;
}

*:not(.portfolio-item){
    -webkit-transition: all 0.2s linear;
            transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

body{
    background-color: #F5F5F5;
    overflow-x: hidden;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 3rem 5%;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    border-radius: var(--border-radius-2);
    background: var(--main-color);
}

p{
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--grey);
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*----- 1- Heading CSS -----*/
.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;
}

.heading span {
    display: inline-block;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 1rem;
}

.heading h2 {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.1rem;
    line-height: 1.2;
}

.sideheading{
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.sideheading h2{
    text-align: left;
}

.heading.linear-bg h2{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
.btn{
    display: inline-block;
    font-size: 1.6rem;
    padding: 1.3rem 2.5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);     
    background-image: -webkit-linear-gradient(306deg, var(--main-color), var(--accent-color), var(--main-color));
    background-image:         linear-gradient(144deg, var(--main-color), var(--accent-color), var(--main-color));
    background-size: 300% 100%;
    cursor: pointer;
    border-radius: var(--border-radius-1);
}

.btn:hover{
    background-position: 100% 0px; 
}

/*----- 3- Logo Area CSS -----*/
.logo {
    z-index: 100000;
}

.logo img {
    height: 5rem;
    width: auto;
}

/*----- 4- Header Area CSS -----*/
.header{
    position: fixed;
    top: 0;
    left: 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;
}

.header .header-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 0.15rem solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 5%;
}

.header.sticky .header-1{
    display: none;
}

.header .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    list-style-type: none;
}

.header .header-contacts li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    font-size: 1.6rem;
    color: var(--white);
}

.header .header-contacts li i{
    color: var(--main-color);
}

.header .header-contacts span{
    text-transform: none;
}

.header .social-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
    list-style-type: none;
}

.header .social-contacts li a{
    height: 3rem;
    width: 3rem;
    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;
}

.header .social-contacts li a:hover{
    color: var(--main-color);
}

.header .header-2{
    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: 8rem;
    padding: 0rem 5%;
    gap: 2rem;
}

.header.sticky .header-2{
    background-color: var(--secondary-color);
    border-bottom: 0.2rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header #menu-btn{
    cursor: pointer;
    display: none;
}

.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.header .container{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

.header .navbar a{
    display: inline-block;
    font-size: 1.8rem; 
    color: var(--white);
    cursor: pointer;
}

.header .navbar a:hover,
.header .navbar a.active{
    color: var(--main-color);
}

.header .icon-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;
    gap: 1rem;
}

.header .icon-container .icon{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.header .icon-container .icon:hover{ 
    color: var(--main-color);
}

/*----- 5- Footer Area CSS -----*/
.footer{
    background-color: var(--secondary-color);
}

.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: 3rem;
    padding: 2rem 5%;
}

.footer-item h2{ 
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-item h2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 2px;
    content: "";
    background: var(--main-color); 
    -webkit-transform: translateX(0%); 
            transform: translateX(0%);
}

.footer-item > p{
    padding-top: 1.5rem;
}

.footer-item p{
    color: var(--white); 
    line-height: 1.5;
    font-weight: 500;
}

.footer-item .connect .connect-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.footer-item .connect i{
    display: block;
    font-size: 1.6rem;
    color: var(--main-color);
    height: 3rem;
    width: 2rem !important;
    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 .connect span{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 10rem;
            flex: 1 1 10rem;
    color: var(--white); 
    line-height: 1.4;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: none;
}

.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-item .social a{
    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: var(--border-radius-3);
    background-color: var(--main-color);
    border: 0.15rem solid var(--main-color);
}

.footer-item .social a i{
    color: var(--white);
    font-size: 1.7rem;
}

.footer-item .social a:hover{
    background-color: transparent;
}

.footer-item .social a:hover i{
    color: var(--main-color);
}

.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: 1.5rem;
}

.footer-item .info a{ 
    font-size: 1.8rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

.footer-item .links p i{
    color: var(--main-color);
    font-size: 1.6rem;
}

.footer-item:last-child p{
    padding-top: 0rem;
    padding-bottom: 2rem;
    line-height: 1.6;
}

.footer-item .input-field{
    margin-bottom: 1rem;
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    background: var(--main-color);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

.footer-item .dark-form .alert {
    display: block;
    font-size: 1.8rem;
    color: var(--white);
    padding-top: 1rem;
}

/*----- 6- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-size: 2.3rem;
    border-radius: var(--border-radius-3);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    height: 6rem;
    width: 6rem;
    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;
    z-index: 100;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.scroll-top:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}


/*----- 7- Dark Form CSS -----*/
.dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:hover,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.dark-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;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark-form .input-field{
    border: 1.3px solid rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    border-radius: var(--border-radius-1);
}

.dark-form .input-box > .input-field{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
}

.dark-form .input-field:hover{
    border-color: var(--main-color);
}

.dark-form .input-field label {
    color: var(--main-color);
    font-size: 1.6rem;
    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;
}

.dark-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.dark-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form textarea{
    height: 10rem;
    resize: none;
}

.dark-form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dark-form .select option{
    color: var(--grey);
}

.dark-form .select{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border: 1.2px solid rgba(255, 255, 255, 0.9);
    width: 100%;
    border-radius: var(--border-radius-1);
}

.dark-form .select-container{
    height: 100%;
    min-width: 100%;
    position: relative;
}

.dark-form .select-box{
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    width: 100%;
    color: var(--white);
    background-color: transparent;
    padding: 1.5rem;
    font-size: 1.6rem;
    padding-left: 4.5rem;
}

.dark-form .select-container label{
    position: absolute;
    height: 100%;
    top: 0;
    left: 1.5rem;
    color: var(--main-color);
    font-size: 1.6rem;
    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;
}

.dark-form .select-container .icon-container{
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    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;
            pointer-events: none;
}

.dark-form .select-container .icon-container i{
    font-size: 1.6rem;
    color: var(--white);
}

.dark-form ::-webkit-calendar-picker-indicator {
    -webkit-filter: invert(1);
            filter: invert(1);
}

/*----- 8- Swiper Pagination CSS -----*/
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 2rem;
    border-radius: 0;
    background: var(--white);
    opacity: 0.7;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet-active{
    width: 4rem;
    background: var(--main-color) !important;
    opacity: 0.9;
}

/*----- 9- Swiper Navigation CSS -----*/
.swiper-button-next,
.swiper-button-prev{
    background-color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    height: 6rem;
    width: 6rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    left: 0;
}

.swiper-button-next::after,
.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;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background-color: var(--main-color);
}

/*----- 10- Custom Form CSS -----*/
.custom-form{
    padding: 0;
}

.custom-form .alert{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--main-color);
    padding-left: 1rem;
}

.custom-form .box-container{
    background-position: center;
    background-size: cover;
}

.custom-form .content{
    padding: 4rem 5%;
    max-width: 75rem;
    background: var(--custom-bg);
}

.custom-form form{
    width: 100%;
}

/*------------------------------ Global CSS (End) ------------------------------*/



/*------------------------------ All Sections CSS (Start) ------------------------------*/

/*----- 1- Home-Slider -----*/
.home{ 
    padding: 0;
    position: relative;
} 
  
.home-slider{ 
    position: relative; 
    overflow: hidden;
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    opacity: 0;
}

.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev{
    opacity: 1;
}
  
.home-item{
    height: 70rem;
}
  
.home-item .content{ 
    padding: 10rem 5%;
    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: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.home-item .content .text{
    padding-top: 8rem;
    text-align: center;
    width: 80rem;
}

.home-item .content h5{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--main-color);
}

.home-item .content h3{
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.1rem;
    line-height: 1.15;
}

.home-item .content p{
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 2.5rem;
    line-height: 1.5;
}

/*----- 2- About -----*/
.about{
    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;
    gap: 3rem;
}

.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    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;
    position: relative;
}

.about .image img{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 18rem;
        flex: 1 1 18rem; 
    height: 45rem;
}

.about .experience{
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: 30rem;
    padding: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    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;
    gap: 1rem;
}

.about .experience-content {
    font-size: 1.6rem;
    padding-left: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about .experience span {
    color: var(--white);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
}

.about .experience .icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--main-color);
    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;
}

.about .experience i {
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--white);
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

.about .content p{
    padding-bottom: 1rem;
}

.about .content .btn{
    margin-top: 1.5rem;
}

/*----- 3- Services -----*/
.services .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-1);
    text-align: center;
    padding: 3rem 2rem;
}

.service-item .icon {
    font-size: 3rem;
    border-radius: var(--border-radius-3);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    height: 8rem;
    width: 8rem;
    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;
    margin: 0rem auto;
}

.service-item h3 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
    padding-top: 1.5rem;
}

/*----- 4- Why Choose Us -----*/
.why-us .box-container{
    background-image: url("../../assets/images/Background/WhyUs.jpg");
}

.why-us .content p{
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--light-grey);
}

.why-us .why-features{
    padding-top: 1.5rem;
    display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.why-us .why-features .points{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 23rem;
        flex: 1 1 23rem;
}

.why-us .why-features i{
    font-size: 3rem;
    border-radius: var(--border-radius-3);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    height: 7rem;
    width: 7rem;
    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;
}

.why-us .why-features h3 {
    font-size: 2.3rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    color: var(--white);
}

/*----- 5- Destinations -----*/
.destinations .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 1rem;
    grid-template-areas: 
    'des-1 des-1 des-2 des-3'
    'des-4 des-5 des-6 des-6';
}

.des-1 {
    grid-area: des-1;
}

.des-2 {
    grid-area: des-2;
}

.des-3 {
    grid-area: des-3;
}

.des-4 {
    grid-area: des-4;
}

.des-5 {
    grid-area: des-5;
}

.des-6 {
    grid-area: des-6;
}

.destination-item {
    height: 32rem;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-1);
}

.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: 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-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-item:hover img {
    scale: 1.1;
}

.destination-item p {
    color: var(--white);
    background: var(--secondary-color);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-1);
    font-size: 1.6rem;
    padding: 1rem;
    width: 9rem;
    text-align: center;
    margin-left: auto;
}

.destination-item a{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
}

.destination-item a:hover{
    color: var(--main-color);
}

/*----- 6- Tours -----*/
.section-slider{
    overflow: hidden;
    padding: 0.5rem;
}

.tab-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-buttons .button{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    color: var(--white);
    background: var(--secondary-color);
    border-radius: var(--border-radius-1);
    text-transform: uppercase;
    text-align: center;
}

.tab-buttons .button:hover,
.tab-buttons .button.active{
    background: var(--linear);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;
}

.tab-sections .tab-section{
    display: none;
}

.tab-sections .tab-section.active{
    display: block;
    margin-top: 2rem;
}

.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; 
}

.tour-item{
    overflow: hidden;
    background-color: var(--white);
    border-radius: var(--border-radius-1);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.tour-item .tour-image {
    height: 25rem;
    position: relative;
}

.tour-item .price {
    position: absolute;
    bottom: 0rem;
    left: 2rem;
    transform: translateY(50%);
    color: var(--white);
    background: var(--secondary-color);
    padding: 1rem 2rem;
    font-size: 2rem;
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-1);
}

.tour-item .tour-content{
    padding: 2rem;
    padding-top: 4.5rem;
}

.tour-item .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.tour-item .rating .icon {
    font-size: 1.6rem;
    color: var(--main-color);
}

.tour-item .rating h5 {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.tour-item .tour-content a{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 500;
    padding-top: 1rem;
    padding-bottom: 0.8rem;
    color: var(--secondary-color);
}

.tour-item .tour-content a:hover{
    color: var(--main-color);
}

.tour-item .tour-details{
    padding-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.tour-item .tour-details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.tour-item .tour-details h3 .icon{
    font-size: 1.6rem;
    color: var(--main-color);
}

.tour-item .tour-details h3 span{
    color: var(--grey);
    font-size: 1.6rem;
    font-weight: 400;
}

/*----- 7- Counter -----*/
.counting{
    width: 100%;
    padding: 4rem 5%;
    margin: 1rem 0;
    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: 4rem;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Counter.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
    padding: 1rem;
}

.counting .box i{
    font-size: 3rem;
    border-radius: var(--border-radius-3);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    height: 8rem;
    width: 8rem;
    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;
    margin: 0 auto;
}

.counting .box .count{
    display: block;
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
}

.counting .box h3{
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 400;
}

/*----- 8- Portfolio -----*/
.portfolio-item{
    width: 33.3%;
    padding: 0.5rem;
}

.portfolio-content{
    position: relative;
    height: 30rem;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-1);
}

.portfolio-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    -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;
    text-align: center;
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
    background:         linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
}

.portfolio-item .view{
    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;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.portfolio-item:hover .view{
    opacity: 1;
}

.portfolio-item:hover img{
  filter: blur(2px);
}

.portfolio-item .content h5 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: var(--white);
    padding-bottom: 0.4rem;
}

.portfolio-item .content h4{
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: var(--white);
}

.portfolio-item a i{
    outline-offset: 0.7rem;
    outline: 0.15rem solid var(--main-color);
    font-size: 2rem;
    border-radius: var(--border-radius-3);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    height: 6rem;
    width: 6rem;
    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;
    margin: 0.5rem;
}

/*----- 9- Offers -----*/
.offers .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(42rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(42rem, 1fr));
    gap: 1.5rem;
}

.offer-item{
    position: relative;
    height: 30rem;
    border-radius: 5rem;
    overflow: hidden;
}

.offer-item .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -webkit-box-pack: center ;
        -ms-flex-pack: center ;
            justify-content: center ;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 3rem;
    background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.0));
    background:         linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.0));
}

.offer-item h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.offer-item h4 span {
    font-size: 2rem;
    color: var(--main-color);
    margin: 0 0.7rem;
}

.offer-item h3 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.offer-item h6{
    padding-bottom: 2rem;
}

.offer-item h6 i {
    font-size: 1.4rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.offer-item h6 span {
    font-size: 1.6rem;
    margin-left: 1rem;
    font-weight: 500;
    color: var(--white);
}

/*----- 10- Testimonials -----*/
.testimonial-bg{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-slider{
    overflow: hidden;
    position: relative;
    padding-bottom: 4rem;
}

.testimonial .swiper-pagination-bullet{
    background: var(--secondary-color);
    opacity: 0.9;
}

.testi-item {
    padding: 3rem 2rem;
    padding-top: 8rem;
    margin-top: 6rem;
    text-align: center;
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-1);
    border-bottom: var(--custom-border);
}

.testi-item img{
    height: 12rem;
    width: 12rem;
    border-radius: var(--border-radius-3);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.testi-item .fa-quote-left {
    margin: 0 auto;
    margin-bottom: 2rem;
    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;
    font-size: 7rem;
    color: transparent;
    -webkit-text-stroke: 0.2rem var(--main-color);
}

.testi-item h4{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.testi-item h6{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
}

.testi-item p{
    padding-bottom: 2rem;
}

.testi-item .rating{
    padding-top: 1rem;
}

.testi-item .rating i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/*----- 11- FAQs -----*/
.faq .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

.accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;
}

.accordion{
    background-color: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius-1);
}

.accordion:last-child{
    margin-bottom: 0rem;
}

.accordion .accordion-heading{
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 1.8rem;
}

.accordion.active .accordion-heading {
    border-bottom: 0.3rem solid var(--main-color);
}

.accordion .accordion-heading i{
    height: 4rem;
    width: 4rem;
    border-radius: var(--border-radius-3);
    color: var(--white);
    background-color: var(--main-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;
}

.accordion .accordion-heading h3{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
    color: var(--secondary-color);
}

.accordion.active .accordion-heading h3{
    color: var(--main-color); 
}

.accordion.active .accordion-content{
    display: block;
}

.accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

.faq .image{
    height: 55rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    border-radius: var(--border-radius-1);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

/*----- 12- Blogs -----*/
.blogs .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1rem;
}

.blog-item{
    background-color: var(--white);
    border-radius: var(--border-radius-1);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.blog-item .image{
    height: 25rem;
    position: relative;
} 

.blog-item .date{
    position: absolute;
    right: 2rem; 
    bottom: 0rem; 
    transform: translateY(50%);
    z-index: 1;
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--secondary-color);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-1);
    padding: 1rem 2rem;
}

.blog-item .content{
    padding: 2rem;
}

.blog-item .main-heading{
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
    padding-bottom: 0.5rem;
    padding-top: 1.3rem;
}

.blog-item .main-heading:hover{
    color: var(--main-color);
}

.blog-item .details{
    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;
    width: 100%;
    gap: 2rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 0.15rem solid rgba(0, 0, 0, 0.2);
}

.blog-item h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.blog-item h3 i{
    height: 2rem;
    width: 2rem;
    font-size: 1.8rem;
    color: var(--main-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;
}

.blog-item h3 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}

/*----- 13- Book Tours -----*/
.booking .box-container{
    background-image: url("../../assets/images/Background/Booking.jpg");
}

.booking .content{
    margin-left: auto;
}

.booking .select-box{
    padding-right: 0.5rem !important;
}

/*----- 14- Contact -----*/
.contact-info{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    background-color: var(--secondary-color);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-1);
    padding: 2rem 1rem;
}

.contact-info .info-item{
    padding: 2rem;
    text-align: center;
}

.contact-info .info-item i{
    height: 7rem;
    width: 7rem;
    border-radius: var(--border-radius-3);
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-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;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.contact-info .info-item h4{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 1rem;
}

.contact-info .info-item p{
    color: var(--light-grey);
    text-transform: none;
}

/*-- Google Map --*/
.contact iframe{
    width: 100%;
    margin-top: 2rem;
    min-height: 30rem;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-1);
}

/*----- 15- Partner Slider -----*/
.partners{
    background-color: rgba(0, 0, 0, 0.05);
}

.partners .partner-slider{
    overflow: hidden;
}

.partner-item{
    width: 20rem;
    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;
}


/*------------------------------ All Sections CSS (End) ------------------------------*/