body {
    font-family:var(--primary-font);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;

}

/* 1 General */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Background Color */
    --primary-color: #101010;
    --secondary-color: #ae7960;
    --bg-light-blue: #ebf3fd;
    --bg-white: #fff;
    --orange-color: #f26200;

    /* Text Color */
    --primary-font: 'Poppins', sans-serif;
    --secondry-font: 'Montserrat', sans-serif;
    --primary-text: #116dbf;
    --text-peregraph: #0e1f2f;
    --text-white: #fff;
    --text-black: #1a1a1a;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
}

section {
    padding: 10px 0;
}

.main-btn {
    display: inline-block;
    border-radius: 25px;
    transition: all .2s ease-in-out;
    padding: 10px 27px;
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin:7px auto;
    border: none;
}
.main-btn a{
    color: var(--text-white);
}
.main-btn:hover {
    background-color: var(--primary-color);
    color: #Fff;
    border: none;
}

.main-btn-2 {
    display: inline-block;
    border-radius: 5px;
    transition: all .2s ease-in-out;
    padding: 10px 27px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin:7px auto;
    border: none;
    cursor: pointer;
}

.main-btn-2:hover {
    background-color: var(--secondary-color);
    color: #Fff;
    border: none;
    cursor: pointer;
}
/* .main-btn-2 .active{
    background-color: var(--secondary-color);
} */
h1 {
    font-size: 84px;
    line-height: 70px;
    font-weight: 400;
    text-shadow: 1px 6px 6px rgba(0, 0, 0, 0.42);
    letter-spacing: 1px;
    color: var(--text-white);

    text-transform: uppercase;
    text-align: center;
    font-family: var(--secondry-font);
}

h1 span {
    font-size: 48px;
    line-height: 68px;
    font-weight: 400;
    text-shadow: 1px 6px 6px rgba(0, 0, 0, 0.42);
    color: var(--text-white);
    text-transform: uppercase;
    text-align: center;
    font-family: var(--secondry-font);
    letter-spacing: 2px;

}

h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 15px;
    font-family: var(--primary-font);
    position: relative;
}
h2::after{
    background-image: url(..//images/sub-image.png);
    background-repeat: no-repeat;
    content: "";
    text-align: center;
    position: relative;
    display: block;
    height: 25px;
    width: 80px;
    margin: 10px auto;
}
h3 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--primary-text);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: var(--secondry-font);
}

h6 {
    color: var(--text-gray);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

p {
    color: var(--text-black);
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 14px;
    font-family: var(--primary-font);
}

.subtitle {
    display: inline-block;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-family: var(--primary-font);
    width: 80%;

}

input:hover,
input:focus,
textarea:focus,
textarea:hover,
button {
    outline: none !important;
    box-shadow: none !important;
}

/* Top line css part start */
.top-line-bg{
    background-color:#184048;
    color: var(--text-white);
    padding: 7px 0px;
    display: flex;
}
.top-line-bg ul{
    display: inline-block;
    margin: auto;
}
.top-line-bg ul li{
    color: var(--text-white);
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    margin: 0px 0.5rem;
    cursor: pointer;
    align-items: center;
    font-family: var(--primary-font);
}
.top-line-bg ul li a{
    color: var(--bg-white);
    text-decoration: none;
}
.top-line-bg ul li a:hover{
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    

}
.top-line-bg ul li i{
    margin-right: 0.6rem;
}
.top-line-bg .last{
    margin: 0 auto;
    float: inline-end;
}
/* Top line css part End */

/* Top navigation css start */
.header-wrapper{
    position: relative;
    
}
.header-wrapper .navbar{
    padding: 15px 0px;
    transition: all 1s linear;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    
}
.header-wrapper .navbar-brand{
    max-width: 180px;
    height: auto;
    cursor: pointer;
}

.header-wrapper .navbar-toggler{
    border: none;
    color: gray;
    line-height: 2;

}
.header-wrapper .navbar-toggler:focus{
    box-shadow: none;
}
.header-wrapper .nav-item{
    padding: 0px 4px;
}
.header-wrapper .nav-item .nav-link{
    position: relative;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    color: var(--primary-color);
}
.header-wrapper .nav-item .nav-link::after{
    position: absolute;
    content: '';
    left: 0;
    width: 0;
    height: 2px;
    transition: 0.3s all ease-in-out;
    bottom: 0;
    background: var(--secondary-color);

}
.header-wrapper .nav-item .nav-link.active::after,
.header-wrapper .nav-item .nav-link:hover::after{
    width: 100%;
}
.header-wrapper .nav-item .nav-link.active,
.header-wrapper .nav-item .nav-link.hover{
    color: var(--secondary-color);
}
/* Top Navigation css End */

/* Slider part css start */
.banner-wrapper{
    clear: both;
}
.banner-wrapper .carousel-item{
    max-width: 100%;
    max-height: 520px;
}

.banner-wrapper .carousel-item .carousel-caption{
    bottom: 32%;
    justify-content: left;
    
}
.banner-wrapper .carousel-item .carousel-caption h5{
    font-size: 44px;
    color: #ffffff;
    background-color:burlywood;
    background: rgba(0,0,0,0.5);
    
}
/* Slider part css end */

/* body top part css start */
.body-top-part{
    background-color:#ececec;
    padding: 10px 0px;
}
.body-top-part .box-icon {
    margin: 25px auto;
    display: flex;
    justify-content: center;
}
.body-top-part .box-icon .icon-choose {
    font-size: 48px;
    color: #fc9f1c;
    margin-right: 30px;
}
.body-top-part .box-icon .text h3 {
    font-size: 13pt;
    text-transform: uppercase;
    font-weight: 600;
    margin: 3px auto;
    color: var(--primary-color);
    font-family: var(--primary-font);
}
.body-top-part .box-icon .text p {
    margin-bottom: 0px;
}

/* Body top part css end */

/* Tour Package Part Css Start */
.flight{
    clear: both;
    margin-top: 40px;
    text-align: center;
}
.flight h2{
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--primary-font);
    line-height: 45px;
    text-transform: capitalize;


}
.flight p{
    line-height: 9px;
    text-align: center;
    font-size: 16px;


}
.flight p::after{
    background-image: url(..//images/sub-image.png);
    background-repeat: no-repeat;
    content: "";
    text-align: center;
    position: relative;
    display: block;
    height: 25px;
    width: 80px;
    margin:10px auto;
}

/* Tour Package Part Css End */
/* tour-package-wrapper part css start */
.tour-package-wrapper{
    clear: both;
}
.tour-package-wrapper h2{
    color: var(--primary-color);
}
.tour-package-wrapper .card{
    margin: 1rem auto;
    max-height: 450px;
}
.tour-package-wrapper .card img{
    max-height: 206px;
    background-size: cover;
    
}
.tour-package-wrapper .card img:hover{
    
     transition: .25s all ease-in-out;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    cursor: pointer;
}
.tour-package-wrapper .card .card-body{
    position: relative;
}
.tour-package-wrapper .card .card-body .card-title{
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.tour-package-wrapper .card .card-body .card-text{
    text-transform: capitalize;
    font-size: 16px;
}
.tour-package-wrapper .card .card-body .card-text i{
    color: var(--secondary-color);
}
.tour-package-wrapper .card .card-body span{
    text-align: end;
}
.tour-package-wrapper .service-btn{
    text-align: center;
    margin: 1rem auto;
}
/* tour-package-wrapper part css End */
/* Why Coose Heritage safari Css part Start */
.why-choose-wrapper{
    padding-top: 40px;
    background-image: url(..//images/choose-bg.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    padding-bottom: 80px;
    

}
.why-choose-wrapper .card{
    margin: 1rem 0.5rem;
    background-color: var(--bg-white);
    border: none;
}
.why-choose-wrapper .card .card-title{
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--secondry-font);
    letter-spacing: 1px;
}
.why-choose-wrapper .card  .red-button
{
    text-align: center;
}.why-choose-wrapper .card a{
    color: var(--primary-color);
    text-decoration: none;
}
.why-choose-wrapper .card a:hover{
    color: var(--secondary-color);
    transition: all 1s ease-in-out;
}
/* Why Coose Heritage safari Css part End */
/* index gallery css start */
.index-gallery{
    clear: both;
    margin-top: 40px;
}
.index-gallery h2{
    color: var(--primary-color);
    text-align: center;
}
.index-gallery .owl-carousel .item img{
    max-height: 200px;
    width: auto;
}
.index-gallery .owl-carousel .owl-nav button.owl-prev,
.index-gallery .owl-carousel .owl-nav button.owl-next,
.index-gallery .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  font-size: 38px;
  }

.index-gallery .owl-nav{
    text-align: center;
  }
/* Index Gallery css End */

/* Testimonial css Start */
.testimonial-wrapper{
    padding-top: 10px;
    background-image: url(..//images/testi-bg.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    padding-bottom: 10px;
}


.testimonial-wrapper .carousel-icon i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.testimonial-wrapper .carousel-item i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.testimonial-wrapper .t-card {
  padding: 1.8125rem 1.125rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1.25rem;
  color: #fff;
  height: auto;
}
.testimonial-wrapper .t-card p{
    color: var(--text-white);
  }

.testimonial-wrapper .arrow-down {
  width: 0;
  height: 0;
  border-left: 1.5625rem solid transparent;
  border-right: 1.5625rem solid transparent;
  border-top: 1.25rem solid rgba(0, 0, 0, 0.5);
}


/* Testimonial Css End */
 /* Index page Blog Css Start */
/* Our blog part css start */
.blog-baner-bg{
    background-image: url(..//images/blog.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    display:flex;
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
}
.blog-baner-bg::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.blog-baner-bg h2{
    align-items: center;
    /* display: flex; */
    justify-content: center;
    font-size: 44px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -80%);
}
.blog {
    margin: 40px 0px 10px 0px;
    text-align: center;
}

.homepage-blog {
    margin-top: 2px;
}

.blog-detail {
    margin-top: 5px;
}

.blog-detail .card {
    margin-top: 5px;
}

.blog-detail .card img {
    cursor: pointer;
    max-height: 210px;
    width: 100%;

}
.blog-detail .card .card-body{
    text-align: center;
}
.blog-detail .card .blog-buton {
    color: #1d1d1d;
    cursor: pointer;
    margin: 2px 0 2px 0;
    text-align: center;
}
.blog-detail .card .blog-buton i{
    border-radius: 20px;
    line-height: -1px;
    padding: 6px 7px;
    /* background-color: burlywood; */
    border: 1px solid #1d1d1d;
    margin: 0px 8px 0px 0px;
}
.blog-detail .card .blog-buton i:hover{
    border-radius: 20px;
    line-height: -1px;
    padding: 6px 7px;
    /* background-color: burlywood; */
    border: 1px solid var(--secondary-color);
    margin: 0px 8px 0px 0px;
}
.blog-detail .card .blog-buton a {
    color: #1d1d1d;
    cursor: pointer;
    /* margin: 15px 0 15px 0; */
}

.blog-detail .card .blog-buton a:hover {
    color: var(--secondary-color);
    cursor: pointer;
    /* margin: 15px 0 15px 15px; */
    transition: all 1s ease-in-out;
}
.Blog-detail-page{
    margin-top: 1px;
}
.Blog-detail-page h4{
    margin: 5px 0 15px 0px;
}
.Blog-detail-page .card img{
    width: 100%;
    max-height: 450px;
    

}
.homepage-blog .carousel-control-prev-icon {
    margin-right: 45px;
    color: #000;
    background-color: #000;
}

.homepage-blog .carousel-control-next-icon {
    margin-left: 45px;
    color: #000;
    background-color: #000;
}

.blog-page-bg {
    background-image: url(..//images/page-title-6.jpg);
    background-size: cover;
    background-position: center center;
    background-position: center;
    background-repeat: no-repeat;
    height: 380px;
}

.blog-page-bg h3 {
    color: #fff;
    text-align: center;
    margin: 100px 0px;
    color: var(--secondary-color);
    font-family: var(--secondry-font);

}

.blog-page-bg h2 {
    color: #fff;
    text-align: center;
    margin: 100px 0px;
    font-weight: 700;

}

.blog-social {
    clear: both;
}

.blog-social h5 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-social ul {
    text-align: center;
}

.blog-social ul li {
    margin: 10px;
}

.blog-social ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-social ul li a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

/* Our Blog part css End */
/* blog detail page css start */
.blog-details-page {
    clear: both;
}

.blog-details-page h3 {
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: 500;
    margin: 20px 0px;
}

.blog-details-page h4 {
    font-family: var(--primary-font);
    font-weight: 500;
    color: var(--secondary-color);
}

.input-box-blog-details {
    border: 1px solid #626263;
    opacity: 0.25;
    padding: 5px 0px;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    display: inline-block;


}

.recent-post {
    border-bottom: 1px solid #e7e7e7;
}

.recent-post .card {
    border: none;
}

.recent-post .card img {
    min-height: 70px;
    max-width: 100%;
}

.recent-post .card .card-body {
    padding: 0px;
    margin: 5px 0px 0px 5px;

}

.recent-post .card .card-body h5 {
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;

}

.recent-post .card .card-body h5 a {
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.recent-post .card .card-body h5 a:hover {
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: capitalize;
    text-decoration: underline;
    transition: all ease-in-out 1ms;
}

/* Blog details page css end */

.trip-advisor{
    text-align: center;
    margin: 40px auto;
    clear: both;
    display: block;
    position: relative;
}
.trip-advisor h3{
    color: var(--primary-color);
    align-self: center;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-right: 40px;
}
/* Index Page Blog Css End */
/* Footer Part Css Start */
.footer-wrapper{
    background-color: #090c0d;
    background-position: top;
    background-size: cover;
    padding: 40px 0px;
}
.footer-wrapper ul{
    display: inline-block;
}
.footer-wrapper ul h6{
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 5px;
    margin-top: 8px;
}
.footer-wrapper ul li{
    
    margin: 0px 15px 0px 0px;
    color: var(--text-white);
    
}
.footer-wrapper ul li a{
  color: var(--text-white);
  font-size: 18px;
    padding: 10px;
}
.footer-wrapper ul li a:hover{
    
    color: var(--secondary-color);
}
.footer-wrapper .addres h6{
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    line-height: 1.3;

}
.last-foter{
    background-color: #222220;
    background-position: top;
    background-size: cover;
    padding: 25px 0px 10px 0px;
}
.last-foter .copyright{
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
    color: var(--text-white);
    font-weight: 500;
}
.last-foter .contact{
    font-size: 18px;
    color: var(--text-white);
    text-align: center;
    margin-top: 15px;
}
.last-foter ul li{
    cursor: pointer;
}

/* Footer Part Css END */
.video-bg-text{
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    position: relative;
    
}
.video-bg-text video{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    max-height: 100%;
    display: block;
}
.video-bg-text .contants{
    text-align: center;
} 
.video-bg-text .contants h2{
    font-size: 44px;
    color: #f2f2f2;
    margin-bottom: 40px;
}
.video-bg-text .contants a{
    font-size: 23px;
    color: #f2f2f2;
    border: 2px solid #000;
    border-radius: 40px;
    padding: 15px 25px;
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}
.video-bg-text .contants a:hover{
    background-color:#f2f2f2;
    color: #000;

}
.video-bg-text .background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position:center;
    background-repeat: no-repeat;
    background: fixed;
    background-size: cover;
}

@media (min-aspect-ratio:16/9){
    background-clip{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio:16/9){
    background-clip{
        width:auto;
        height:100%;
    }
} 
/* About us page css start */
.about-top-baner{
    background-image: url(..//images/about_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
   
    display:flex;
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
}
.about-top-baner::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.about-top-baner h2{
    align-items: center;
    /* display: flex; */
    justify-content: center;
    font-size: 44px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -80%);
}
.about-top{
    clear:both;
}
.about-top .about-img{
    display: block;
    position: relative;
    border: 2px solid #ae7960;
    align-items: center;
    text-align: center;
    
}
.about-top .about-img img{
    max-width: 100%;
    max-height: auto;
    position: relative;
}
.about-top .about-top-txt {
    clear: both;
}
.about-top .about-top-txt h2{
    color: var(--primary-color);
    letter-spacing: 1px;
}
.about-top .about-top-txt h2::after{
    margin: 10px 0px;    
}
#tag-country {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14pt;
    margin: 20px 0 10px 0;
}
#tag-country .list-country {
    display: inline-block;
    margin: 0 20px 20px 0;
    padding-bottom: 5px;
    color: var(--primary-color);
    border-bottom: 2px solid #fff;
}
#tag-country .list-country:hover{
    border-bottom: 2px solid #ff9219;
    transition: 0.3s all ease-in-out;
}
#tag-country .list-country sup{
    font-size: 11px;
    font-style: italic;
}

.mar-60{
    margin-top: 60px;
}
.clint{
    background-color: #ececec;
    padding: 10px 0px;
    max-height: 450px;
    width: auto;
    display: block;
    position: relative;
    overflow: hidden;
}
.clint h2::after{
    margin: 10px 0px;
}

.clint .about-social{
    float: right;
}
.clint .about-social p{
    text-align:center;
}
.clint .about-social a{
    color: var(--primary-color);
    font-size: 26px;
    margin: 10px 5px;

}
.clint .about-social a:hover{
    color: var(--secondary-color);
    
}
/* About us page css End */
/* gallery css start */
.Gallery-baner-bg{
    background-image: url(..//images/galery.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
   
    display:flex;
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
}
.Gallery-baner-bg::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.Gallery-baner-bg h2{
    align-items: center;
    /* display: flex; */
    justify-content: center;
    font-size: 44px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -80%);
  line-height: 45px;
}
#gallery {
    padding-top: 40px;
  }
  @media screen and (min-width: 991px) {
    #gallery {
      padding: 60px 30px 0 30px;
    }
  }
  
  .img-wrapper {
    position: relative;
    margin-top: 15px;
  }
  .img-wrapper img {
    width: 100%;
  }
  
  .img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
  }
  .img-overlay i {
    color: #fff;
    font-size: 3em;
  }
  
  #overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 5%;
  }
  @media screen and (min-width: 768px) {
    #overlay img {
      width: 60%;
    }
  }
  @media screen and (min-width: 1200px) {
    #overlay img {
      width: 50%;
    }
  }
  
  #nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
  }
  #nextButton:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    #nextButton {
      font-size: 3em;
    }
  }
  
  #prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
  }
  #prevButton:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    #prevButton {
      font-size: 3em;
    }
  }
  
  #exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  #exitButton:hover {
    opacity: 0.7;
  }
  @media screen and (min-width: 768px) {
    #exitButton {
      font-size: 3em;
    }
  }



/* gallery css end */
/* carrwntal css start */
.car-rental{
    clear: both;
}
.car-rental .btn{
    float:right;
}
.oneday-baner-bg{
    background-image: url(..//images/one-day.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: left left; */
   
    display:flex;
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
}
.oneday-baner-bg::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.oneday-baner-bg h2{
    align-items: center;
    /* display: flex; */
    justify-content: center;
    font-size: 44px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -80%);
}
.oneday-tour{
    clear: both;
}
.oneday-tour h3{
    color: var(--primary-color);
}
.oneday-tour .btn{
    float: right;
}
/* Contact Page Css Start */
.contact-baner-bg{
    background-image: url(..//images/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top bottom;
    display:flex;
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
}
.contact-baner-bg::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.contact-baner-bg h2{
    align-items: center;
    /* display: flex; */
    justify-content: center;
    font-size: 44px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -80%);
}
.contact-page{
    clear: both;
}
.contact-page .maping{
    border: 2px solid #ae7960;
    text-align: center;
}
.contact-page h2::after{
    margin: 10px 0px;
}

.career-form-bg {
    background-color: var(--bg-light-blue);
    left: 0;
    right: 0;
    display: block;
    position: relative;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.career-form-bg h2{ 
    text-align: center;
    margin: 1rem 0;
}
.career-form-bg .form-label {
    margin-bottom: 0rem;
    margin-top: 15px;
}
.career-form-bg .form-control {
    border: 2px solid #a1a6ae;
    border-radius: 0;
    background: transparent; 
    line-height: 2rem;

}
.career-form-bg .form-select{
    border: 2px solid #a1a6ae;
    border-radius: 0;
    background: transparent; 

}
.career-form-bg .input-group{
    margin-bottom: 5px;
    position: relative;
}
/* Contact Page Css End */
/* model popup css srart */
.model-popup{
    clear: both;
}
.model-popup .modal-header{
    background-color: var(--primary-color);
    text-align: center;
}
.model-popup .modal-header .btn-close{
   background-color: var(--bg-white);
}
.model-popup .modal-header .modal-title{
    text-align: center;
}
.model-popup .modal-body .form-label {
    margin-bottom: 0.2rem;
}
.model-popup .modal-header img{
    text-align: center;
}
/* Model Popup css End */
/* right side contact form css start */
.contact-frm{
    clear: both;

}
.contact-frm .card{
    background-color:#ffc6ab;
    display: block;
    position: relative;
}
.contact-frm .card .form-label{
    font-size: 14px;
    text-transform: capitalize;
    margin: 7px 0px 2px 7px;
}
.contact-frm .card .booking{
   text-align: center;
    
}
.contact-frm .card .booking h3{
    color: var(--text-white);
    font-size: 18px;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    height: 40px;
    margin-top: 0px;
    background-color: var(--primary-color);
    align-items: center;
    display: flex;
    justify-content:center;
}

/* Tour Details Page Css Start */
.tour-page-detail{
    margin-top: 60px;
    clear: both;
}
.tour-page-detail h4{
    font-size: 36px;
    font-family: "Biryani", sans-serif;
  font-weight: 600;
  font-style: normal;
    margin-bottom: 1rem;
}
.tour-page-detail .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 450px;
    background-size: cover;
}
.tour-page-detail .detail-bg{
    background-color: #ecc185;
    padding: 5px 0px 0px 20px;
}
.tour-page-detail .info-list {
    clear: both;
    margin-top: 1rem;
    display: inline-block;
    float: start;
    

}

.tour-page-detail .info-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 35px;
    padding: 0px 0px 0px 62px;
    margin-bottom: 15px;
}

.tour-page-detail .info-list li:last-child {
    margin-right: 0px !important;
}

.tour-page-detail .info-list li i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgb(67 65 63);
    border-radius: 5px;
    font-size: 24px;
    color: #ffffff;
}


.tour-page-detail .info-list li span {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--primary-color);
    width: 100px;
}

.tour-page-detail .info-list li h5 {
    display: block;
    font-size: 16px;
    line-height: 28px;
}

.tour-page-detail .tour-details-content .title-box .info-list li h5 .price {
    font-size: 20px;
}

.tour-page-detail .card-body{
    border:none;
    padding-bottom: 0px;

}
.tour-page-detail .card-body .card{
    padding: none;
}
.tour-page-detail .list-inner h2{
    color: var(--primary-color);
    margin-left: 2rem;
}
.tour-page-detail .list-inner h2::after{
    display: none;
}
.tour-page-detail .list-inner .list-one li{
    list-style: none;
    margin: 5px 0px 10px 5px;
}
.tour-page-detail .list-inner .list-one li i{
    color: var(--secondary-color);
    margin-right: 10px;

}
.tour-page-detail .list-inner .list-two li{
    list-style: none;
    margin: 5px 0px 10px 5px;
}
.tour-page-detail .list-inner .list-two li i{
    color:#a90004;
    margin-right: 10px;

}
/* .tour-page-detail .list-one li:before{
    position: absolute;
    content: '';
    background-image: url(..//images/icon-5.png);
    left: 0px;
    top: 5px;
    width: 18px;
    height: 13px;
    background-repeat: no-repeat;
} */


.box-detail{
    display: block;
}
.box-detail a{
    text-align: center;
    position: absolute;
    display: flex;
    background-color:var(--primary-color);
    padding: 15px 25px;
    color: var(--text-white);
    border-radius: 50px;
    align-items: center;
    top: 10%;
    left: 2%;

}
.box-detail a:hover{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}
/* Tour Details Page Css End */


















