
/*** 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: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/* heading */

.heading-top
{
    padding: 50px 0px 0px 0px;
}
.heading-bottom 
{
    padding: 0px 0px 50px 0px;
}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

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

.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);
}

.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);
  
}

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

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 90%;
    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 ***/

/* carousel caption style */

.caption
{
  padding: 250px 0px 0px 0px;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 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: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 85px;
}

.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: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: var(--bs-white);
    }

    .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;
    }

    .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;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        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(30, 31, 27, 0.4), rgba(13, 14, 12, 0.4)), url(../img/T%26C.html\ banner.png);
    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: var(--bs-secondary) !important;
}
/* terms banner */
.bg-breadcrumb1 {
  background: linear-gradient(rgba(30, 31, 27, 0.4), rgba(13, 14, 12, 0.4)), url(../img/T%26C.html\ banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.bg-breadcrumb1 .breadcrumb-item1 a {
  color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.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_content{
    text-align: justify;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}
.service .service-content-inner:hover img{

  background-color: white;
}

.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 ***/

/*** Service Start ***/
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
  transition: 0.5s;
}

.service .service-item:hover {
  background: rgba(102, 16, 242, 0.09);
  border: 1px ;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {
  background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

/*** 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;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.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(243, 174, 95, 0.8) rgba(195, 83, 18, 0.6) rgba(234, 172, 121, 0.6) rgba(242, 189, 110, 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: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.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;
}

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

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    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: 0 0 20px 0;
}
.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;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.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;
}

.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;
}

.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;
    background: rgba(0, 0, 0, 0.3);
    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(230, 123, 36, 0.4);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.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(rgba(51, 51, 44, 0.4), rgba(33, 32, 26, 0.4)), url(../img/about-img-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


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

.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;
}



/*** 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(227, 106, 7, 0.3);
}

.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: rgba(255, 255, 255, .2);
    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(235, 137, 18, 0.4);
    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%;
}

.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(30, 31, 27, 0.4), rgba(13, 14, 12, 0.4)), url(../img/sub-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 ***/

/*** Default 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;
}
/*** copyright end ***/

/* article */
.article {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: justify;
}

.article h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

.article p {
    color: #666;
    line-height: 1.8;
}

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

/* gallery */
.gallery-item {
    margin-bottom: 30px;
  }
  .gallery-item img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
  }
  .gallery-item img:hover {
    transform: scale(1.05);
  }


  /* activity */
  /*** Activities Start ***/
.activities .activities-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 45px rgba(12, 18, 20, .08);
    transition: 0.5s;
}

.activities .activities-item:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}
.activities-item:hover h4{
     color: black !important;
}
.activities .activities-item:hover a {
    background: var(--bs-light) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}
/*** Activities End ***/

/* try plus */

.count-box h1::after
{
  position: relative;
    content: "+";
    top: -5px;
    right: -5px;
}

/* icons and heading */
/*=============================
	07. Services
===============================*/
.services-bg {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
  }
  @media (max-width: 767.98px) {
    .services-bg {
      padding: 100px 0;
    }
  }
  .services__bg-three {
    background-size: cover;
    background-position: center;
    padding: 120px 0 90px;
  }
  @media (max-width: 767.98px) {
    .services__bg-three {
      padding: 100px 0 70px;
    }
  }
  .services__bg-four {
    background-size: cover;
    background-position: center;
    padding: 120px 0 90px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 767.98px) {
    .services__bg-four {
      padding: 100px 0 70px;
    }
  }
  .services__bg-five {
    background-size: cover;
    background-position: center;
    padding: 30px 0 30px;
  }
  @media (max-width: 767.98px) {
    .services__bg-five {
      padding: 100px 0 70px;
    }
  }
  .services__bg-six {
    background-size: cover;
    background-position: center;
    padding: 50px 0;
  }
  @media (max-width: 767.98px) {
    .services__bg-six {
      padding: 100px 0;
    }
  }
  .services__bg-seven {
    background-size: cover;
    background-position: center;
    padding: 120px 0 90px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 767.98px) {
    .services__bg-seven {
      padding: 100px 0 70px;
    }
  }
  .services__area-two {
    background: var(--tg-heading-color);
    padding: 120px 0 90px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 767.98px) {
    .services__area-two {
      padding: 100px 0 70px;
    }
  }
  .services-item-wrap .row {
    --bs-gutter-x: 24px;
  }
  .services-item {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 30px;
  }
  .services-item:hover {
    box-shadow: 0px 4px 30px 0px #CFDEE4;
  }
  .services-item:hover .services-content .icon {
    background: var(--tg-theme-secondary);
    color: var(--tg-color-white-default);
  }
  .services-item .services-content .icon {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
  }
  .services-item .services-content h4
  {
  font-size: 20px;
  }
  .services__item-two {
    border: 2px solid var(--bs-primary);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 0px 10px 0px 80px;
    margin-bottom: 30px;
    background: var(--tg-heading-color);
  }
  .services__item-two:hover .services__icon-two {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .services__item-three {
    background: var(--tg-color-white-default);
    padding: 40px 40px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  @media (max-width: 1199.98px) {
    .services__item-three {
      padding: 35px 30px;
    }
  }
  .services__item-three:hover .services__icon-three i {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .services__item-four {
    background: var(--tg-color-white-default);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 30px 80px 30px 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
  }
  @media (max-width: 1199.98px) {
    .services__item-four {
      padding: 30px 20px 30px 20px;
      gap: 25px;
    }
  }
  @media (max-width: 991.98px) {
    .services__item-four {
      flex-wrap: wrap;
      padding: 30px 30px;
    }
  }
  @media (max-width: 767.98px) {
    .services__item-four {
      padding: 30px 25px;
    }
  }
  .services__item-five {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #E9E9F0;
    background: var(--tg-color-white-default);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    padding: 60px 30px 45px;
    text-align: center;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .services__item-five:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .services__item-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 22px;
  }
  .services__item-top .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
  }
  @media (max-width: 1199.98px) {
    .services__item-top .title {
      font-size: 20px;
    }
  }
  .services__item-wrap-two .row [class*=col-]:nth-child(odd) .services__item-five {
    margin-top: 30px;
  }
  @media (max-width: 991.98px) {
    .services__item-wrap-two .row [class*=col-]:nth-child(odd) .services__item-five {
      margin-top: 0;
    }
  }
  .services-thumb {
    -webkit-border-radius: 10px 10px 0 100px;
    -moz-border-radius: 10px 10px 0 100px;
    -o-border-radius: 10px 10px 0 100px;
    -ms-border-radius: 10px 10px 0 100px;
    border-radius: 10px 10px 0 100px;
    overflow: hidden;
    position: relative;
  }
  .services-thumb img {
    height: 200px;
    object-fit: cover;
    width: 100%;
  }
  .services__thumb-four {
    width: 337px;
    flex: 0 0 auto;
  }
  @media (max-width: 1199.98px) {
    .services__thumb-four {
      width: 300px;
    }
  }
  @media (max-width: 991.98px) {
    .services__thumb-four {
      width: 100%;
    }
  }
  .services__thumb-four img {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    height: 380px;
    object-fit: cover;
    width: 100%;
  }
  @media (max-width: 1199.98px) {
    .services__thumb-four img {
      height: 340px;
    }
  }
  .services__icon-two {
    font-size: 60px;
    line-height: 0;
    color: var(--tg-theme-primary);
    display: inline-block;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    /* margin-bottom: 20px; */
  }
  .services__icon-three {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-color-gray-3);
    border: 1px solid var(--tg-color-gray-2);
    flex: 0 0 auto;
    line-height: 0;
    font-size: 42px;
    color: var(--tg-theme-secondary);
    position: relative;
  }
  .services__icon-three i {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  .services__icon-three::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    background: #DCE7EC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
  }
  .services__icon-five {
    position: relative;
    z-index: 1;
    color: var(--tg-theme-primary);
    font-size: 45px;
    line-height: 0;
    display: inline-block;
    margin-bottom: 50px;
  }
  .services__icon-shape .shape {
    position: absolute;
    z-index: -1;
  }
  .services__icon-shape .shape:nth-child(1) {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .services__icon-shape .shape:nth-child(1) svg {
    color: var(--tg-color-yellow-light);
  }
  .services__icon-shape .shape:nth-child(2) {
    left: -2px;
    bottom: -13px;
  }
  .services__icon-shape .shape:nth-child(2) svg {
    color: var(--tg-theme-primary);
  }
  .services__icon-shape .shape:nth-child(3) {
    left: 50px;
    top: -18px;
  }
  .services__icon-shape .shape:nth-child(3) svg {
    color: var(--tg-theme-primary);
  }
  .services-content {
    padding: 30px 30px 30px;
    position: relative;
  }
  .services-content .icon {
    width: 90px;
    height: 90px;
    background: var(--tg-theme-primary);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 0;
    color: white;
    border: 3px solid var(--tg-color-white-default);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: -55px;
    z-index: 2;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .services-content .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .services-content .title a:hover {
    color: var(--tg-theme-primary);
  }
  .services-content p {
    margin-bottom: 22px;
  }
  .services-content .btn {
    background: var(--tg-theme-primary);
    color: white;
    padding: 16px 20px;
  }
  .services-content .btn:hover {
    color: var(--tg-color-white-default);
  }
  .services__content-two .title {
    color: var(--tg-color-white-default);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
  }
  services__content-two .title h6
  {
    color: var(--tg-color-white-default);
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
  }
  .services__content-two p {
    margin-bottom: 25px;
    color: var(--tg-color-gray-2);
  }
  .services__content-two .btn {
    background: #2E328B;
    color: #9597C8;
    padding: 16px 20px;
  }
  .services__content-two .btn::before {
    background: var(--tg-color-white-default);
  }
  .services__content-two .btn::after {
    color: var(--tg-color-white-default);
  }
  .services__content-two .btn:hover {
    color: var(--tg-theme-secondary);
  }
  .services__content-two .btn:hover::after {
    color: var(--tg-theme-secondary);
  }
  .services__content-three p {
    margin-bottom: 25px;
  }
  .services__content-three .btn {
    background: var(--tg-color-yellow-light);
    color: var(--tg-theme-primary);
  }
  .services__content-three .btn:hover {
    color: var(--tg-color-white-default);
  }
  .services__content-four .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  @media (max-width: 1199.98px) {
    .services__content-four .title {
      font-size: 26px;
    }
  }
  .services__content-four p {
    margin-bottom: 20px;
  }
  .services__content-four .about__list-box {
    margin-bottom: 20px;
  }
  .services__content-four .about__list-box li i {
    font-size: 15px;
  }
  .services__content-four .btn {
    background: var(--tg-color-gray-3);
    color: var(--tg-theme-secondary);
  }
  .services__content-four .btn:hover {
    color: var(--tg-color-white-default);
  }
  .services__content-five .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .qualification
  {
    font-size: 18px;
  }
  .designation{
  font-size: 15px;
  color: #000;
  }
  .services__content-five p {
    margin-bottom: 25px;
  }
  .services__content-five .btn {
    background: var(--tg-color-gray-3);
    color: var(--tg-theme-secondary);
    padding: 16px 24px;
  }
  .services__content-five .btn:hover {
    color: var(--tg-color-white-default);
  }
  .services-bottom-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  @media (max-width: 767.98px) {
    .services-bottom-content {
      flex-wrap: wrap;
      text-align: center;
    }
  }
  .services-bottom-content p {
    margin-bottom: 0;
  }
  .services__tab-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
  }
  @media (max-width: 767.98px) {
    .services__tab-wrap {
      flex-wrap: wrap;
    }
  }
  .services__tab-wrap .nav-tabs {
    border-bottom: none;
    margin-bottom: 0;
    flex-direction: column;
    width: 330px;
  }
  @media (max-width: 1199.98px) {
    .services__tab-wrap .nav-tabs {
      width: 270px;
    }
  }
  @media (max-width: 767.98px) {
    .services__tab-wrap .nav-tabs {
      width: auto;
      justify-content: center;
      flex-direction: row;
    }
  }
  .services__tab-wrap .nav-item {
    margin-bottom: 5px;
  }
  .services__tab-wrap .nav-item:last-child {
    margin-bottom: 0;
  }
  .services__tab-wrap .nav-link {
    border: none;
    background: linear-gradient(90deg, #3B3D9A 13.19%, rgba(44, 46, 143, 0.54) 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 11px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    color: var(--tg-color-white-default);
    padding: 8px 55px 8px 25px;
    position: relative;
    width: 330px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  @media (max-width: 1199.98px) {
    .services__tab-wrap .nav-link {
      width: 270px;
      font-size: 18px;
      padding: 15px 45px 15px 20px;
    }
  }
  .services__tab-wrap .nav-link i {
    font-size: 40px;
    line-height: 0;
    color: var(--tg-theme-primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  @media (max-width: 1199.98px) {
    .services__tab-wrap .nav-link i {
      font-size: 35px;
    }
  }
  .services__tab-wrap .nav-link::after {
    content: "\f10a";
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: flaticon;
    font-weight: 500;
    font-size: 24px;
    line-height: 0;
  }
  .services__tab-wrap .nav-link.active {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
  }
  .services__tab-wrap .nav-link.active img {
   background: var(--tg-theme-secondary);
    color: var(--tg-color-white-default);
  }
  .services__shape-wrap img {
    position: absolute;
    z-index: -1;
  }
  .services__shape-wrap img:nth-child(1) {
    left: 0;
    bottom: 0;
  }
  @media (max-width: 991.98px) {
    .services__shape-wrap img:nth-child(1) {
      width: 200px;
    }
  }
  .services__shape-wrap img:nth-child(2) {
    right: 0;
    top: 0;
  }
  @media (max-width: 991.98px) {
    .services__shape-wrap img:nth-child(2) {
      width: 200px;
    }
  }
  .services__shape-wrap-two img {
    position: absolute;
    z-index: -1;
  }
  .services__shape-wrap-two img:nth-child(1) {
    left: 0;
    top: 0;
  }
  @media (max-width: 767.98px) {
    .services__shape-wrap-two img:nth-child(1) {
      width: 200px;
    }
  }
  .services__shape-wrap-two img:nth-child(2) {
    right: 0;
    bottom: 0;
  }
  @media (max-width: 767.98px) {
    .services__shape-wrap-two img:nth-child(2) {
      width: 200px;
    }
  }
  .services__details-area {
    padding: 120px 0;
  }
  @media (max-width: 767.98px) {
    .services__details-area {
      padding: 100px 0;
    }
  }
  .services__details-wrap .row .col-70 {
    width: 70.4%;
    flex: 0 0 auto;
  }
  @media (max-width: 991.98px) {
    .services__details-wrap .row .col-70 {
      width: 100%;
    }
  }
  .services__details-wrap .row .col-30 {
    width: 29.6%;
    flex: 0 0 auto;
  }
  @media (max-width: 991.98px) {
    .services__details-wrap .row .col-30 {
      width: 100%;
    }
  }
  .services__details-thumb {
    margin-bottom: 35px;
  }
  @media (max-width: 767.98px) {
    .services__details-thumb {
      margin-bottom: 25px;
    }
  }
  .services__details-thumb img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    min-height: 250px;
    object-fit: cover;
  }
  .services__details-thumb-two {
    margin-bottom: 0;
  }
  @media (max-width: 767.98px) {
    .services__details-thumb-two {
      margin-bottom: 30px;
    }
  }
  .services__details-content > .title {
    margin-bottom: 22px;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
  }
  @media (max-width: 1199.98px) {
    .services__details-content > .title {
      font-size: 36px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-content > .title {
      font-size: 32px;
    }
  }
  .services__details-content > p {
    margin-bottom: 20px;
  }
  .services__details-content > p.last-info {
    margin-bottom: 0;
  }
  .services__details-content .title-two {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 600;
  }
  @media (max-width: 1199.98px) {
    .services__details-content .title-two {
      font-size: 32px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-content .title-two {
      font-size: 28px;
    }
  }
  .services__details-content-two > .title {
    font-size: 36px;
  }
  @media (max-width: 1199.98px) {
    .services__details-content-two > .title {
      font-size: 32px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-content-two > .title {
      font-size: 30px;
    }
  }
  .services__details-top {
    margin-bottom: 30px;
  }
  .services__details-top .row .col-49 {
    width: 48.9%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .services__details-top .row .col-49 {
      width: 100%;
    }
  }
  .services__details-top .row .col-51 {
    width: 51.1%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .services__details-top .row .col-51 {
      width: 100%;
    }
  }
  .services__details-top-content .title {
    margin-bottom: 15px;
    font-size: 40px;
  }
  @media (max-width: 1199.98px) {
    .services__details-top-content .title {
      font-size: 36px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-top-content .title {
      font-size: 32px;
    }
  }
  .services__details-top-content p {
    margin-bottom: 15px;
  }
  .services__details-list {
    margin: 35px 0 10px;
  }
  .services__details-list-two {
    margin: 25px 0 10px;
  }
  .services__details-list-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    -webkit-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7E8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 30px 30px;
    margin-bottom: 30px;
  }
  @media (max-width: 1199.98px) {
    .services__details-list-box {
      gap: 15px;
      padding: 30px 25px;
      flex-wrap: wrap;
    }
  }
  .services__details-list-box .icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    flex: 0 0 auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    color: var(--tg-color-white-default);
    font-size: 50px;
    line-height: 0;
  }
  .services__details-list-box .icon i {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .services__details-list-box .content .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .services__details-list-box .content p {
    margin-bottom: 0;
  }
  .services__details-list-box:hover .icon i {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .services__details-list-box-two {
    -webkit-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.05);
    background: #FFFBF4;
    border: 1px solid #FBD58A;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 30px 30px 30px;
    text-align: center;
    margin-bottom: 30px;
  }
  @media (max-width: 1199.98px) {
    .services__details-list-box-two {
      padding: 30px 18px 30px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-list-box-two {
      padding: 30px 30px 30px;
    }
  }
  .services__details-list-box-two .icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    line-height: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto 30px;
    font-size: 40px;
  }
  .services__details-list-box-two .icon i {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .services__details-list-box-two .content .title {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
  }
  @media (max-width: 1199.98px) {
    .services__details-list-box-two .content .title {
      font-size: 20px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-list-box-two .content .title {
      font-size: 22px;
    }
  }
  .services__details-list-box-two .content p {
    margin-bottom: 0;
  }
  .services__details-list-box-two:hover .icon i {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .services__details-list-box-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
  }
  @media (max-width: 1199.98px) {
    .services__details-list-box-three {
      gap: 14px;
      margin-bottom: 30px;
    }
  }
  .services__details-list-box-three .icon {
    font-size: 60px;
    line-height: 0;
    color: var(--tg-theme-primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-transform: rotateY(0) translateY(3px);
    -moz-transform: rotateY(0) translateY(3px);
    -ms-transform: rotateY(0) translateY(3px);
    -o-transform: rotateY(0) translateY(3px);
    transform: rotateY(0) translateY(3px);
  }
  .services__details-list-box-three .content .title {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
  }
  .services__details-list-box-three .content p {
    margin-bottom: 0;
  }
  @media (max-width: 1199.98px) {
    .services__details-list-box-three .content p br {
      display: none;
    }
  }
  .services__details-list-box-three:last-child {
    margin-bottom: 0;
  }
  .services__details-list-box-three:hover .icon {
    -webkit-transform: rotateY(180deg) translateY(3px);
    -moz-transform: rotateY(180deg) translateY(3px);
    -ms-transform: rotateY(180deg) translateY(3px);
    -o-transform: rotateY(180deg) translateY(3px);
    transform: rotateY(180deg) translateY(3px);
  }
  .services__details-inner {
    margin: 35px 0 30px;
  }
  .services__details-inner .row .col-44 {
    width: 43.9%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .services__details-inner .row .col-44 {
      width: 100%;
    }
  }
  .services__details-inner .row .col-56 {
    width: 56.1%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .services__details-inner .row .col-56 {
      width: 100%;
    }
  }
  .services__details-inner-two {
    margin: 80px 0 45px;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-two {
      margin: 50px 0 40px;
    }
  }
  .services__details-inner-two .row .col-48 {
    width: 48.5%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .services__details-inner-two .row .col-48 {
      width: 100%;
    }
  }
  .services__details-inner-two .row .col-52 {
    width: 51.5%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .services__details-inner-two .row .col-52 {
      width: 100%;
    }
  }
  .services__details-inner-three {
    margin-bottom: 40px;
  }
  .services__details-inner-four {
    margin: 40px 0 35px;
  }
  .services__details-inner-four .services__details-inner-content-two p {
    margin-bottom: 25px;
  }
  .services__details-inner-five {
    margin: 0 0 55px;
  }
  .services__details-inner-five .services__details-inner-content-three {
    margin: 0 30px 0 0;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-five .services__details-inner-content-three {
      margin: 0 0 0 0;
    }
  }
  @media (max-width: 991.98px) {
    .services__details-inner-five .services__details-inner-content-three {
      margin: 0 0 30px 0;
    }
  }
  .services__details-inner-five .services__details-list-box {
    padding: 25px 25px;
    margin-bottom: 20px;
  }
  .services__details-inner-five .services__details-list-box:last-child {
    margin-bottom: 0;
  }
  .services__details-inner-six {
    margin: 30px 0 40px;
  }
  .services__details-inner-six .services__details-inner-content-three {
    margin: 0 60px 0 0;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-six .services__details-inner-content-three {
      margin: 0 0 0 0;
    }
  }
  @media (max-width: 991.98px) {
    .services__details-inner-six .services__details-inner-content-three {
      margin: 0 0 30px 0;
    }
  }
  .services__details-inner-img {
    position: relative;
  }
  @media (max-width: 767.98px) {
    .services__details-inner-img {
      margin-bottom: 30px;
    }
  }
  .services__details-inner-img img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    min-height: 230px;
    object-fit: cover;
    width: 100%;
  }
  .services__details-inner-img .play-btn {
    width: 62px;
    height: 62px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--tg-color-white-default);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    color: var(--tg-theme-secondary);
    font-size: 18px;
  }
  .services__details-inner-img .play-btn:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
  }
  .services__details-inner-img-wrap {
    margin: 30px 0 0;
  }
  .services__details-inner-img-wrap img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
  }
  .services__details-inner-content .title {
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: capitalize;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-content .title br {
      display: none;
    }
  }
  .services__details-inner-content p {
    margin-bottom: 20px;
  }
  .services__details-inner-content-two .title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-content-two .title {
      font-size: 32px;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-inner-content-two .title {
      font-size: 28px;
    }
  }
  .services__details-inner-content-two p {
    margin-bottom: 0;
    width: 90%;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-content-two p {
      width: 100%;
    }
  }
  .services__details-inner-content-three {
    margin-left: 30px;
  }
  @media (max-width: 1199.98px) {
    .services__details-inner-content-three {
      margin-left: 0;
    }
  }
  @media (max-width: 767.98px) {
    .services__details-inner-content-three {
      margin-top: 30px;
    }
  }
  .services__details-inner-content-three .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  @media (max-width: 767.98px) {
    .services__details-inner-content-three .title {
      font-size: 28px;
    }
  }
  .services__details-inner-content-three p {
    margin-bottom: 0;
  }
  .services__details-inner-graph img {
    -webkit-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
    border: 0.8px solid #DADADA;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
  }
  .services__sidebar {
    margin-right: 20px;
  }
  @media (max-width: 1199.98px) {
    .services__sidebar {
      margin-right: 0;
    }
  }
  @media (max-width: 991.98px) {
    .services__sidebar {
      margin-top: 100px;
    }
  }

  .certificate{
    font-size: 20px;
    font-weight: 700;
    color: #f17c57;
  }

 .client-logo
 {

  padding: 80px 0px 80px 0px; 

 }
 
 /*** Service ***/
.service-item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

.service-item .service-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(237, 109, 40, 0.3);
  border-radius: 10px;
  z-index: 1;
}

.service-item .service-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  transition: .5s ease-out;
  z-index: 2;
}

.service-item:hover .service-img::after {
  width: 0;
  left: auto;
  right: 0;
}

.service-item .service-text .service-icon {
  width: 140px;
  height: 140px;
  padding: 15px;
  margin-top: -70px;
  margin-bottom: 40px;
  background: #FFFFFF;
  border-radius: 140px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
  transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
  color: #FFFFFF;
}

.service-item .service-text .btn {
  color: var(--secondary);
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
  color: var(--dark);
  background: var(--secondary);
}

/*  */

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
      width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
      width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(.8);
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: .5s;
}

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

