
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 19px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease 0s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
    text-transform: uppercase;
}
.bg-primary {
    background-color: #0d2042 !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.carousel-inner h1 {
    text-transform: uppercase !important;
    font-size: 47px;
}
.header a {
    letter-spacing: 0.2px;
    font-size: 17px;
    word-spacing: 3px;
}
.header {
    padding: 10px;
}
.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
    border-radius: 9px !important;
    font-size: 14px !important;
}

.btn-md-square {
    width: 55px;
    height: 55px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: white;

}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 13px 14px;
    color: var(--bs-white) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
    text-transform: uppercase;
    margin: 0 1px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.carousel {
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.text-white {
    color: #fff !important; 
}
.dropdown-item{
    text-transform: uppercase;
    padding: 11px 18px;
}
.text-secondary {
    color: #ffffff !important;
}
.dropdown-menu{
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 220px;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #757575;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    border-radius: 0px !important;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 8px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 71px;
    background: #13357b;
    padding: 2px 20px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}
.dropdown .dropdown-menu a r {
    padding: 10px;
}
.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background:#ffffff;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }
    a {color: rgb(19, 53, 123);text-decoration: none;text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);}

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
        background: #0000004a;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: white;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: #ffb500;
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/inner-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: #ffffff !important;
}
/*** Single Page Hero Header End ***/
.table-track table {
    background: black;
    margin: 57px 111px 20px;
    padding: 30px;
    width: max-content;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.table-track img {
    width: 36px;
}
.table-track h3 {
    color: white;
}
.table-track td {
    border: 1px dashed white;
    padding: 5px;
}
.table-track h4 {
    background: white;
    padding: 21px;
    text-align: center;
    font-size: 24px;
    display: inline-block;
    margin: 17px;
}
.table-track h1 {
    color: white;
    background: #ffb500;
    text-align: center;
    font-size: 36px;
    padding: 5px;
}
.table-track h3 {
    color: white;
    padding: 13px;
    font-size: 20px;
}
.table-track td p {
    background: #13357b;
    padding: 12px;
    width: 200px;
    margin: 0 auto;
    color: white !important;
}
.table-track td p a{
    color: white;;
}
.table-track table {
    width: 65%;
    text-align: center;
}
/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
    text-shadow: 0px 4px 3px rgb(0 0 0 / 5%), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}
.abt h1{
    text-shadow: 0px 4px 3px rgb(0 0 0 / 4%), 0px 8px 13px rgb(0 0 0 / 8%), 0px 18px 23px rgb(0 0 0 / 6%);
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Roboto';
    color: black;
 }
.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}
.about-us p {
    color: #383838;
    font-family: unset;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 23px;
}
.about-us h1 {
    border-left: 6px solid #13357b;
    padding-left: 17px;
}
.about-us h1 {
    border-left: 6px solid #13357b;
    background: #e9e9e9;
    display: inline-block;
    padding: 0px 20px;
    margin-bottom: 23px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.about p {
    color: #2b2b2b;
    padding: 0px;
    display: inline-block;
    line-height: 27px;
}



.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
    height: 292px;
}

.packages .packages-item .packages-img .packages-info {
    background: rgb(19 53 123 / 89%);
}
ul.hotelscab li {
    float: left;
    width: 25%;
    list-style: none;
    text-align: center;
}
ul.hotelscab li img {
    width: 74px !important;
}
ul.hotelscab {
    margin: 0;
    padding: 0;
    border-top: 1px solid #024adf57;
    border-bottom: 1px solid #024adf57;
    display: inline-block;
    width: 100%;
}
ul.hotelscab p {
    color: #252525;
    font-size: 14px;
    margin-right: 18px;
}
.packg {
    margin: 0 auto;
    display: table;
}
.packg ul li {
    float: left;
    margin: 5px 10px;
    list-style: none;
    margin-bottom: 24px;
}
.packages-content {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin: 10px 0px;
    border-radius: 0 0 10px 10px;
    margin-top: 0;
    border: 1px solid #13357b;
    border-top: 0px solid white;
    background-color: white;
}
 
.Package_Inclusion strong {
    color: #f9633f;
    margin-left: 4px;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
}
.Package_Inclusion ul li {
    list-style: none;
    color: black;
    margin-top: 5px;
    font-size: 14px;
    margin-bottom: 1px;
    border-bottom: 1px solid #13357b45;
    padding-bottom: 9px;
}
a.backgd {
    background: #ffb500;
    border-radius: 0;
    color: white !important;
}
.packg ul li:first-child a{
    background-color: black;
}
a.backgd:hover { 
    color: white !important;
}
.Package_Inclusion ul li img {
    width: 17px !important;
    float: left;
    margin-right: 12px;
}
.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}
.bg-newcontact {
    background: rgb(19 53 123);
    padding: 20px;
    margin-top: 27px;
}
.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: auto;
    top: 8px;
    left: 5px;
    display: inline-block;
    background: #ff6540;
    color: var(--bs-white);
    z-index: 5;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 3px 10px!important;
    font-size: 13px;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
    box-shadow: 0 10px 20px rgb(0 0 0 / 12%), 0 6px 6px rgb(0 0 0 / 11%);
    background: #13357b;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0px;
    padding: 5px 30px;
    border: 1px solid #13357b70;
    border-radius: 30px;
    transition: all 0.5s ease 0s;
    box-shadow: 0 10px 20px rgb(0 0 0 / 12%), 0 6px 6px rgb(0 0 0 / 11%);
    background: #13357b;
}
.Adventurous {
    opacity: 0.1;
    position: relative;
    top: -40px;
}
.Explore { 
    height: 160px;
}
.national-info h5 {
    color: #ffc107 !important;
    font-size: 25px;
}
.carousel-caption h4 {
    font-size: 18px;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: white;
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0px 0px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    margin: 0 16px;
    padding: 18px 0;
    border-radius: 67px;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.national-info {
    background: #05050575;
    padding: 13px 17px;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
    height: 250px;
    object-fit: cover;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}
.Explore h1 {
    font-weight: 800;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 35px;
    margin-top: 1px;
    color: #13357b;
    background: white;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 40px;
}
.packages {
    background-image: url(../img/package-bg.jpg);
    padding: 51px;
    background-attachment: fixed;
    background-size: cover;
}


h1.mb-0.Package {
    opacity: 0.2;
    margin-top: -17px;
}
.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    margin: 14px 0px;
}
.national-info a {
    color: #ffffff !important;
    font-size: 15px;
}
.national-info a:hover {
    color: #ffffff !important;
     
}
.international-item a:hover{
    color: white!important;
}
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px; 
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    margin: 0 16px;
    padding: 11px 0;
    border-radius: 67px;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgb(255 181 0), rgba(19, 53, 123, .8)), url(../img/bg-contact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}
.contct ul {
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 0;
}
.contct ul li {
    list-style: none;
    background: white;
    float: left;
    width: 47%;
    margin: 0 8px;
    height: 152px;
    margin-bottom: 14px;
    padding-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-bottom: 5px solid #ffc107;
}
.contct p {
    font-weight: 700;
    color: rgb(19 53 123);
    font-family: sans-serif;
    letter-spacing: 0.5px;
    word-spacing: 0px;
    font-size: 16px;
}
.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}
.form-floating {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn-primary {
    color: rgb(255, 255, 255);
    background-color: rgb(0 0 0);
    border-color: rgb(0 0 0);
}

/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgb(74 74 74 / 68%);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}

.footer-ten {
    background: url(../img/Footer.jpg) rgb(21, 20, 20);
    position: relative;
    background-size: cover;
    background-position: right;
}
.footer-ten:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000b8;
}

    .footer-ten .footer-content {
        position: relative;
        z-index: 2;
    }
    i.fa.fa-map-marker-alt.me-3 {
        display: none;
    }
    .footer-ten .footer-pattern img {
        position: absolute;
        top: 0;
        left: 0;
        height: 330px;
        background-size: cover;
        background-position: 100% 100%;
    }

    .footer-ten .footer-logo {
        margin-bottom: 24px;
        display: inline-block;
        padding: 15px 54px;
    }

        .footer-ten .footer-logo img {
            max-width: 200px;
        }
    .footer-ten .contact-info {
        line-height: 35px;
    }
    .footer-ten .divider-line {
        border-bottom: 1px solid gray;
        padding: 12px 0px;
        border-top: 1px solid gray;
        display: inline-block;
        width: 100%;
        margin: 13px 0px;
        line-height: 34px;
    }
    .footer-ten .contact-details a {
        color: white;
    }
    .footer-ten .contact-heading {
        display: block;
        float: left;
        margin-right: 30px;
        overflow: hidden;
        width: 70px;
        color: #FFFFFF;
        font-weight: 700;
    }
    .footer-ten .contact-details {
        color: #fff;
        display: block;
    }

    .footer-ten .footer-text p {
        margin-bottom: 14px;
        font-size: 14px;
        color: #ffffff;
        line-height: 28px;
    }

    .footer-ten .footer-social-icon span {
        color: #fff;
        display: block;
        font-size: 20px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 20px;
    }

    .footer-ten .footer-social-icon a {
        color: #fff;
        font-size: 16px;
        margin-right: 15px;
    }

    .footer-ten .footer-social-icon i {
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 38px;
        border: 2px solid white;
    } 
    .footer-ten .footer-widget-heading h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 40px;
        position: relative;
    }

        .footer-ten  .footer-widget-heading h3::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -15px;
            height: 2px;
            width: 50px;
            background: #ff5e14;
        }

    .footer-ten .footer-widget ul li {
        display: inline-block;
        float: left;
        width: 50%;
        margin-bottom: 12px;
    }
    .Explore img {
        width: 30px;
        margin-right: 22px;
    }
    .Explore h4 {
        font-size: 24px;
        color: rgb(251, 99, 63);
        display: inline-block;
        margin-bottom: 12px !important;
        font-weight: 800;
        text-transform: uppercase;
    }
    .years {
        position: relative;
        background: #13357b;
        top: 13px;
    }
    .years h1 {
        position: absolute;
        background: #173b86;
        padding: 38px;
        left: 0;
        color: white;
    }
    .DETAI {
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        padding: 14px;
        
    }
    .harke p {
        background: white;
        padding: 3px;
        line-height: 25px;
        word-spacing: 1px;
        margin-bottom: 9px;
        color: #3c3c3c;
    }
    .service-title-name a {
        font-size: 19px;
    }
    .harke h2 {
        color: #3b3a3a;
        /* margin: 23px; */
        font-family: 'Roboto';
        font-weight: 600;
        font-size: 22px;
    }
    strong.folors {
        color: white;
        margin-right: 22px;
    }
    .last-footers {
        text-align: center;
        color: white;
    }
    .harke h1 {
        margin-top: 20px;
        font-size: 29px;
        font-weight: 900;
        color: #13357b;
        margin-bottom: 21px;
    }
    .harke {
        margin-top: 22px;
    }
    .packages-content h5 {
        font-size: 21px;
        margin-bottom: 9px !important;
        display: inline-block;
        font-weight: 700;
    }
    .DETAI h1 {
        font-size: 34px;
        color: #13357b;
    }
    .play-btn {
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    .play-btn.playbtn2:before {
        top: 0px;
        height: auto;
        width: auto;
    }
    .call-btn .play-btn:before, .call-btn .play-btn:after {
        background-color: #0d2042;
    }
    .call-btn .play-btn:before, .call-btn .play-btn:after {
        background-color: #0d2042;
    }
    .call-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }
    .btn-group:has(.call-btn) {
        gap: 50px;
    }
    .play-btn.playbtn2:before {
        top: 0px;
        height: auto;
        width: auto;
    }
    p.fw-medium.text-primary {
        font-weight: bolder;
        display: inline-table;
        padding: 8px;
        margin: 5px 11px;
        color: #2b2b2b !important;
        font-size: 15px;
        text-transform: uppercase;
        position: relative;
        border: 1px dashed #13357b6b;
    }
    .flot_right2 {
        display: inline-flex;
    }
    .service-img img {
        height: 265px;
        object-fit: cover;
    }
    .flot_left1 {
        float: left;
        width: 49%;
    }
    .call-btn i {
        width: 51px;
        height: 51px;
        line-height: 51px;
        text-align: center;
        border-radius: 50%;
        background: #000000;
        color: white;
        font-size: 24px;
    }
    .play-btn.playbtn2::after {
        height: 0px;
        width: 0px;
    }
    .call-btn .play-btn:before, .call-btn .play-btn:after {
        background-color: #0d2042;
    }
    .call-btn .btn-text {
        font-size: 16px;
    }
    .contact-feature_link {
        font-size: 20px;
        font-weight: 400;
        color: rgb(255 181 0);
    }
    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0;
        }
    
        30% {
            opacity: 0.4;
        }
    
        100% {
            transform: scale(1.8);
            opacity: 0;
        }
    }
    
    @keyframes ripple2 {
        0% {
            transform: scale(0.2);
            opacity: 1;
        }
    
        50% {
            opacity: 0.40;
        }
    
        100% {
            transform: scale(1.9);
            opacity: 0; 
        }
    }
    .fancy-animation {
        animation: morph 8s ease-in-out infinite;
    }
    
    @keyframes morph {
        0% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }
    
        50% {
            border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        }
    
        100% {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }
    }
    
    .movingX {
        animation: movingX 8s linear infinite;
    }
    .service-title {
        width: 100%;
        background: #13357b;
        margin-top: 0px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        height: 78px;
    }
    p.text-primary.fw-medium span{
        color: white;
    }
    
        .footer-ten .footer-widget ul li a:hover {
            color: #ff5e14;
        }

        .footer-ten .footer-widget ul li a {
            color: #f9f9f9;
            text-transform: capitalize;
        }

    .footer-ten .subscribe-form {
        position: relative;
        overflow: hidden;
    }

        .footer-ten .subscribe-form input {
            width: 100%;
            padding: 14px 28px;
            background: #2E2E2E;
            border: 1px solid #2E2E2E;
            color: #fff;
        }

        .footer-ten .subscribe-form button {
            position: absolute;
            right: 0;
            background: #ff5e14;
            padding: 13px 20px;
            border: 1px solid #ff5e14;
            top: 0;
        }

            .footer-ten .subscribe-form button i {
                color: #fff;
                font-size: 22px;
                transform: rotate(-6deg);
            }

    .footer-ten .copyright-area {
        background: #202020;
        padding: 13px 0;
        margin-top: 35px;
    }  

    ol, ul, dl { 
        margin: 0;
        padding: 0;
    }
    .whatsapp {
        border-radius: 50%;
        bottom: 90px;
        box-shadow: 0 3px 6px #00000029, 0 3px 6px #0000003b;
        cursor: pointer;
        position: fixed;
        right: 22px;
        width: 60px;
        z-index: 9;
    }
    .whatsapp img {
        max-width: -webkit-fill-available;
    }
    .bg-breadcrumb h3 {
        text-transform: uppercase;
        font-size: 52px;
    }
    .breadcrumb-item+.breadcrumb-item::before{
        color: #fcfcfc;
    }
    .tabhafe-left-left {
        float: left !important;
        width: 20% !important;
    }
    .tabhafe-left-right {
        width: 78% !important;
        float: right !important;
    }

    .nav .nav-item button.active {
        background-color: transparent;
        color: var(--bs-danger) !important;
      }
      .nav .nav-item button.active::after {
        content: "";
        border-right:4px solid #13357b;
        height: 100%;
        position: absolute;
        right: -1px;
        top: 0;
        border-radius: 5px 0 0 5px;
      }
      .virtical-tab {
        width: 100% !important;
    }
      
      .virtical-tab img {
        float: left; 
        border-bottom: 7px solid red;
        width: 29% !important;
    height: 397px;
    object-fit: cover;
    
    }
    div#pills-tabContent {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
        border: 1px solid white; 
    }
   
    .doortwo {
        float: right;
        width: 67%;
    }
    .doortwo li {
        color: rgb(41, 41, 41);
        margin-bottom: 6px;
        background: rgba(241, 241, 241, 0.72);
        padding: 7px 10px;
    }
    .doortwo h2 {
        text-align: center;
        font-size: 17px;
        color: white;
        text-transform: uppercase;
        background: #13357b;
        border-bottom: 6px solid red;
        padding: 10px;
        margin-bottom: 12px;
    }
    .doortwo h3 {
        text-align: center;
        font-size: 22px;
        color: #13357b;
        margin-bottom: 17px;
        border-bottom: 1px solid #13357b38;
        padding-bottom: 23px;
    }
    .nav.nav-pills.virt-left {
        display: inline;
        float: left;
        width: 17%;
    }
    .nav li.nav-item {
        padding: 0;
        margin: 0 10px 10px;
    }
    .nav.nav-pills.virt-left .nav-link {
        border-width: 1px 1px 4px;
        border-style: solid;
        border-color: rgba(205, 49, 49, 0.54) rgb(19 53 123) rgb(19 53 123);
        border-image: initial;
        text-align: left;
        width: 216px;
        border-radius: 0px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        text-transform: uppercase;
        font-size: 17px;
        padding: 16px 10px;
        margin-bottom: 14px;
        position: relative;
        font-weight: 600;
        padding-left: 34px;
    }
    .nav.nav-pills.virt-left .nav-link:before {
        content: "";
        background: #13357b;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        position: absolute;
        bottom: -7px;
        left: -2px;
        z-index: 6;
        transition: all 0.3s ease 0s;
    }
    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        background: #cd3131;
        color: white;
    }
    .nav .nav-item button.active {
        background-color: transparent;
        color: #ffffff !important;
    }
    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        background: rgb(255 181 0) !important;
        color: white !important;
    }
    .map-address {
        text-align: center;
        margin-bottom: 40px;
    }
    .blog-img .fa {
        color: white !important;
    }
    .Package_Inclusion {
        margin-bottom: 15px;
        margin-left: 8px;
    }

    .videos {
        position: relative;
        z-index: 1;
        margin-bottom: 94px;
        width: 92%;
    }
    .videos:before {
        content: "";
        position: absolute;
        width: 200px;
        height: 391px;
        background: #13357b;
        z-index: -1;
        left: -27px;
        top: -22px;
    }


    @media screen and (min-device-width: 320px) and (max-device-width: 767px) { 
        .ExploreTour .tab-class .nav-item{
            margin: 4px 0px;
        }
        .navbar-light .navbar-nav .nav-link, .sticky-top.navbar-light .navbar-nav .nav-link { 
            border-bottom: 1px solid #ffffff;
        }
        a {
            text-shadow: 1px 2px 1px #ffffff00;
        }
        nav.navbar .btn.btn-primary {
            width: 100%;
            margin-top: 21px;
        }
        .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
            color: #ffffff !important;
        }
        .navbar-light .navbar-nav .nav-link, .sticky-top.navbar-light .navbar-nav .nav-link { 
            color: #fcfcfc !important;
        }
        .navbar.navbar-expand-lg .navbar-toggler { 
            box-shadow: none;
        }
        .carousel-header .carousel-control-prev .carousel-control-prev-icon, .carousel-header .carousel-control-next .carousel-control-next-icon {
            opacity: 3;
        }
        .carousel-header {
            height: 345px !important;
        }
        .carousel-header .carousel-inner .carousel-item {
            position: relative;
            min-height: 81vh;
        }
        .mb-5 {
            margin-bottom: 4rem !important;
        } 
        .packages .packages-item .packages-img .packages-info small, .packages .packages-item .packages-img .packages-info small i{
            padding: 5px;
        }
        .Package_Inclusion { 
            margin-left: 0px;
        }
        .py-5 {
            padding-top: 1rem !important;
            padding-bottom: 3rem !important;
        }
        .gallery .tab-class .nav-item{
            width: 100%;
            text-align: center;
        }
        .whatsapp{
            bottom: 182px;
            right: 7px;
            width: 44px;
        }
        .contct ul li{
            width: 100%;
        }
        .footer-ten .footer-widget-heading h3{
            margin-top: 27px;
        }
        .btn-md-square { 
            bottom: 122px;
            right: 24px;
        }
        .carousel-inner h1 {
            text-transform: uppercase !important;
            font-size: 29px;
        }
        .bg-breadcrumb{
            padding: 30px 0 50px 0;
        }
        .bg-breadcrumb h3 {
            text-transform: uppercase;
            font-size: 35px;    
            padding-top: 43px;
        }
        .flot_left1 { 
            width: 100%;
        }
        p.text-primary.fw-medium1{
            width: 100%;
        }
        .flot_right2 {
            display: contents;
        }
        p.text-primary.fw-medium1{
            padding: 1px 14px 4px 29px;
            height: 54px;
        }
        .nav.nav-pills.virt-left {  
            width: 100%;
            display: inline-block;
        }
        .virtical-tab img { 
            width: 100%; 
            height: 171px; 
        }
        .doortwo {
            float: right;
            width: 99%;
        }
        .map-address img {
            width: 100%;
        }
        .Adventurous{
            display: none;
        }
        html, body{
            overflow-x: hidden;
        }
        .navbar{
            background: black;
            padding: 12px !important;
        }
        .navbar-light .navbar-brand img {
            max-height: 71px;
        }
        .navbar.navbar-expand-lg .navbar-toggler { 
            border: 1px solid #ffffff;
            color: #ffffff;
        }
        link.active {
            color: #ffffff !important;
        }
        .btn-primary { 
            background-color: rgb(255 0 0);
            border-color: rgb(0 0 0);
        }
        .carousel-header .carousel-inner .carousel-item img, .carousel-header .carousel-inner .carousel-item .carousel-caption {
            height: 330px;
            margin-top: 2px;
        }
        .carousel{
            height: 332px;
        }
        .carousel-header .carousel-control-prev .carousel-control-prev-icon{
            padding: 25px 20px;
        }
        .carousel-header .carousel-control-next .carousel-control-next-icon{
            padding: 25px 20px;
        }
        p.fw-medium.text-primary{
            width: 300px;
            padding: 15px;

        }
        .packages{
            padding: 0px;
        }
        .Explore h1{
            font-size: 20px;
        }
        .packages .packages-item .packages-img {
            height: 325px;
        }
        .packages .packages-item .packages-img img {
            transition: 0.5s;
            height: 262px;
        }
        .packg ul li{
            width: 47%;
            margin: 5px 3px;
        }
        .packg ul li a{
            font-size: 12px!important; 
        }
        .packg ul li:first-child a {
            background-color: black;  
            font-size: 12px!important;  
        }
        .packg {
            margin: 0 auto;
            display: flow-root;
        }
        .Explore h1{
            padding: 10px 10px;
        }
        .Explore {
            height: 108px;
        }
        .table-track table{
            margin: 20px 0px 20px;
        }
        .table-track table {
            width: 100%;
            text-align: center;
        }
        .tabhafe-left-left {
            float: left !important;
            width: 100% !important;
        }
        .nav.nav-pills.virt-left .nav-link{
            padding: 9px 7px;
            margin-bottom: 5px;
        }
        .tabhafe-left-right {
            width: 100% !important; 
        }
        .virtical-tab img{
            width: 100% !important;
        }
        .container-fluid.p-5.d-flex.align-items-start {
            padding: 10px !important;
        }
        .tabhafe-left-left li {
            float: left;
            width: 42% !important;
        }
        .nav.nav-pills.virt-left .nav-link{
            width: 141px;
            text-align: center;
        }
        .service-title .p-3 {
            padding: 13px 0 !important;
        }
    }

    @media screen and (min-device-width: 768px) and (max-device-width: 991px) { 
        .tabhafe-left-right{
            width: 77% !important;
        }
        .tabhafe-left-left {
            float: left !important;
            width: 20% !important;
        }
        .nav.nav-pills.virt-left .nav-link{
            width: 125px;
        }
        .navbar-light .navbar-brand img {
            max-height: 65px;
            background: black;
            padding: 2px;
        }
    }
    @media screen and (min-device-width: 1280px) and (max-device-width: 1366px){
        .packg ul li {
            width: 142px;
            float: left !important;
            text-align: left;
            margin: 16px 0;
        }
    }
     
    
/*** copyright end ***/


