  
.carousel_1{
    height: 100vh;
    margin-top: 0px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel_1 .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel_1 .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel_1 .list .item .content{
    position: absolute;
    top: 40%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #f1683a;
    text-shadow: 0 5px 10px #0004;
}
.carousel_1 .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel_1 .list .item .title,
.carousel_1 .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel_1 .list .item .topic{
    color: #f1683a;
}
.carousel_1 .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel_1 .list .item .buttons button{
    border: none;
    /* background-color: #eee; */
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
    color: white;
    text-decoration: underline;
}
.carousel_1 .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.carousel_1 .thumbnail_1{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.carousel_1 .thumbnail_1 .item{
    width: 150px; 
    height: 220px;
    flex-shrink: 0;
    position: relative; 
    /* aspect-ratio: 1.3; */
}
.carousel_1 .thumbnail_1 .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.carousel_1 .thumbnail_1 .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.carousel_1 .thumbnail_1 .item .content .title{
    font-weight: 500;
    font-size: 17px;
}
.carousel_1 .thumbnail_1 .item .content .description{
    font-weight: 300;
}
/* arrows */
.carousel_1 .arrows{
    position: absolute;
    top: 80%;
    /* right: 52%; */
    left: 12%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.carousel_1 .arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1683a;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.carousel_1 .arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel_1 .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel_1 .list .item:nth-child(1) .content .author,
.carousel_1 .list .item:nth-child(1) .content .title,
.carousel_1 .list .item:nth-child(1) .content .topic,
.carousel_1 .list .item:nth-child(1) .content .des,
.carousel_1 .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel_1 .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel_1 .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel_1 .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel_1 .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel_1.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel_1.next .thumbnail_1 .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel_1.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel_1.next .thumbnail_1{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel_1 .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    right: 0;
    top: 0;
}

.carousel_1.next .time,
.carousel_1.prev .time{
    /* animation: runningTime 3s linear 1 forwards; */
    /* animation: runningTime 1.5s linear 1 forwards; */
    animation: runningTime 1800ms linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel_1.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel_1.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel_1.prev .thumbnail_1 .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel_1.next .arrows button,
.carousel_1.prev .arrows button{
    pointer-events: none;
}
.carousel_1.prev .list .item:nth-child(2) .content .author,
.carousel_1.prev .list .item:nth-child(2) .content .title,
.carousel_1.prev .list .item:nth-child(2) .content .topic,
.carousel_1.prev .list .item:nth-child(2) .content .des,
.carousel_1.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}





@media only screen and (max-width: 600px) {
    .carousel_1 .list .item .author{
        font-size: 18px;
        letter-spacing: 4px;
    }
    .carousel_1 .list .item .title,
    .carousel_1 .list .item .topic{
        font-size: 2.5em; 
    }
  }



 
         .airline-swiper{
            padding-top: 30px;
         }
         .airline-swiper img{
            margin: auto; 
            height: 100px;
            width: 100px !important;
            padding: 10px;
            object-fit: contain;
            border: 1px solid transparent;
            border-radius: 10px;
         }
         .airline-swiper img:hover{
            border: 1px solid black;
            border-radius: 10px;
         }
         .testi_monial {
            margin: 10px 5px;
            border: 1px solid black;
            padding: 20px;
            border-radius:10px ;
            box-shadow: 0px 5px 10px rgb(214, 213, 213);
         }
         .testi_monial h3{
            color: black;
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 20px;
            text-align: start;
         }
         .testi_monial p{
            color: black;
            text-align: start;
            font-size: 16px;
         } 



/* special page css */
 
    @font-face {
	font-family: 'strong_girl';
	src: url('https://easemytrip.com/holidays/content/home-page/fonts/strong_girl.otf') format('opentype');
}
    .bnner-ttl {
    text-decoration: none;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    top: 25px;
    font-size: 35px;
    z-index: 99;
    font-weight: 500;
    color: #fff;
    font-family: "strong_girl" !important;
}
.div-bannersetmain a img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.hero_sec{
    position: relative;
    margin-top: 100px;
}
.hero_sec .cnt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.hero_sec .cnt h1 {
    font-size: 22px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
}
.search_box_prnt {
    position: relative;
    max-width: 612px;
    margin: auto;
}
.search_box {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 100px;
    color: #888888;
    background: #fff;
    position: relative;
    overflow: hidden;
    width: 612px;
    margin: auto;
    margin-top: 25px;
}
.search_box input {
    width: 100%;
    text-transform: capitalize;
    border: 0px;
    height: 64px;
    padding: 0px 189px 0 61px;
    outline: none;
    border-radius: 100px;
    font-size: 18px;
} 
.search_box button {
    background: #EF6614;
    color: #fff;
    width: 169px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 100px;
    border: 0;
    outline: none;
    font-size: 18px; 
    cursor: pointer;
}
.search_box i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    max-width: 25px;
}
/*  */
.pckg_sec_prnt {
    margin-top: -31px;
    position: relative;
    z-index: 1;
}
.containernew {
    max-width: 1200px;
    margin: auto;
}
.pckg_sec {
    list-style: none;
    background: #fff;
    box-shadow: 0px 0px 6px #00000029;
    border: 1px solid #98D1FF;
    border-radius: 100px;
    padding: 10px;
    margin: 0px auto;
    display: flex;
    align-items: center !important;
    justify-content: center;
}
.pckg_sec li {
    display: inline-flex;
    align-items: center;
    margin-right: 17px;
}
.pckg_sec li a {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}
.pckg_sec li img {
    width: 40px;
    border-radius: 50%;
}
.pckg_sec li a:hover img{
  transform: scale(1.1);
    transition: transform 0.3s ease;
}
.pckg_sec li span {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
.pckg_sec li a:hover span {
    color: #2093EF;
}

/*  */
.jckpt_deals{
  margin-top: 60px;
}
.jckpt_deals .custom_heading{
  font-size: 34px;
  margin-top: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.jckpt_deals .text {
    font-size: 15px;
    text-align: center;
}











.jckpt_deals .jckpt_box_prnt::-webkit-scrollbar {
    height: 12px;
    /* background-color: rgb(8, 16, 128); */
}

.jckpt_deals .jckpt_box_prnt::-webkit-scrollbar-button {
    width: calc(22% - 40px);
    /* background-color: rgb(8, 16, 128); */
}

.jckpt_deals .jckpt_box_prnt::-webkit-scrollbar-track {
    outline: 2px solid  black;
    border-radius: 50px;
    padding: 2px;
    background: none;
    background-color: rgb(255, 255, 255);
}

.jckpt_deals .jckpt_box_prnt::-webkit-scrollbar-thumb {
  background-color: rgb(8, 16, 128);
    border-radius: 50px; 
}
.jckpt_deals .jckpt_box_prnt {
    margin-bottom: 10px; 
  gap: 30px;
    margin-top: 30px;
        overflow: auto;
        padding-bottom: 20px;
  }
  .jckpt_deals .jckpt_box_prnt .jckpt_box {
      width: 20%;
          flex: 0 0 151px;
  }
.jckpt_deals .jckpt_box_prnt .jckpt_box .img_box {
    border-radius: 20px;
    overflow: hidden;
    max-height: 217px;
    position: relative;
}
.jckpt_deals .jckpt_box_prnt .jckpt_box:hover .img_box img {
      transform: scale(1.1);
    transition: transform 0.3s ease;
}
.jckpt_deals .jckpt_box_prnt .jckpt_box .img_box img {
    width: 100%;
    height: 218px;
    object-fit: cover;
}
.jckpt_deals .jckpt_box_prnt .jckpt_box span {
    display: block;
    color: #000;
    font-size: 20px;
    margin-top: 15px;
    font-weight: 600;
}
.jckpt_deals .jckpt_box_prnt .jckpt_box:hover span{
      color: #2093EF;
}






/*  */
.bs_plc{
      margin-top: 60px;
      margin-bottom: 30px;
}
.bs_plc .custom_heading {
    font-size: 34px;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.bs_plc .text {
    font-size: 15px;
}
.bs_plc .grid-row-box {
    display: grid
;
    grid-template:
        "abc bcd def"
        "fgh bcd hij";
    grid-gap: 12px;
    grid-template-columns: 37% 28% 33%;
        margin-top: 30px;
}
.bs_plc .grid-row-box .box-hotel-80{
    width: 100%;
    height: 455px;
    border-radius: 15px;
    background-size: cover;
    position: relative;
    object-fit: cover;
    background-color: #eee;
    overflow: hidden;
}

.bs_plc .grid-row-box .bs_plc_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bs_plc .grid-row-box .bs_plc_box:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.bs_plc .grid-row-box .box-hotel-40 {
    width: 100%;
        height: 220px;
    border-radius: 15px;
    background-size: cover;
    position: relative;
    object-fit: cover;
    background-color: #eee;
        overflow: hidden;
}
.item1 {
    grid-area: abc;
}
.item2 {
    grid-area: bcd;
}
.item3 {
    grid-area: def;
}
.item5 {
    grid-area: hij;
}
.item4 {
    grid-area: fgh;
}
.bs_plc .grid-row-box .bs_plc_box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #A0A0A000 37%, #71717100 48%, #3C3C3C77 62%, #252525AB 83%, #000000 100%) 0% 0% no-repeat padding-box;
}
.bs_plc .grid-row-box .bs_plc_box .cnt {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
}
.bs_plc .grid-row-box .bs_plc_box .cnt .f-18v1 {
    font-size: 25px;
    background: -webkit-linear-gradient(#fff, #ffe8d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1;
    -webkit-text-stroke: 1px #fff;
    font-weight: 500;
}

.bs_plc .grid-row-box .bs_plc_box .bs_plc_box .cnt span {
    font-size: 13px;
}
.bs_plc .grid-row-box .bs_plc_box .cnt{}

.bs_plc .grid-row-box .grid-row-nw {
    display: grid
;
    grid-template: "lmnw opqw";
    grid-gap: 12px;
    grid-template-columns: 49% 49%;
}

















@media only screen and (min-width: 150px) and (max-width: 1024px) {
  .bs_plc .grid-row-box .bs_plc_box .cnt .f-18v1 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 150px) and (max-width: 900px) {
  .grid-row-nw {
        display: flex !important
;
    }
  .jckpt_deals .custom_heading {
    font-size: 19px;
  }
  .jckpt_deals .text {
    font-size: 12px;
}
.bs_plc .custom_heading {
    font-size: 19px;
}
.bs_plc .text {
    font-size: 15px;
}
.bs_plc  .grid-row-box {
        display: flex !important;
        overflow: auto;
        margin-top: 15px;
    }
 .bs_plc_box_prnt {
        display: flex
;
        overflow: auto;
        margin-top: 15px;
    }
       .bs_plc .bs_plc_box {
        flex: 0 0 180px;
        height: 220px;
    }
   .bs_plc .bs_plc_box img {
        width: 100%;
    }
      .bs_plc  .bs_plc_box .cnt {
        position: absolute;
        bottom: 15px;
        left: 10px;
        color: #fff;
        font-size: 13px;
    }
      .bs_plc  .f-18v1 {
        font-size: 20px;
        background: -webkit-linear-gradient(#fff, #ffe8d3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        line-height: 1;
        -webkit-text-stroke: 1px #fff;
    }
       .bs_plc .bs_plc_box img {
        width: 100%;
    }
   .bs_plc .bs_plc_box {
        flex: 0 0 180px;
        height: 220px !important;
    }








  .pckg_sec_prnt {
        margin-top: 0;
    }
      .containernew {
        width: 100%;
        padding: 0px 15px;
    }
  .pckg_sec {
        gap: 15px;
        display: flex;
        overflow: auto;
        margin-top: 15px;
    }
    .pckg_sec li {
        display: flex;
        flex-direction: row;
        width: auto;
        margin: auto;
    }
        .pckg_sec li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        text-wrap: nowrap;
    }
    .pckg_sec li img {
        border-radius: 50%;
        min-width: 35px;
    }
    .pckg_sec li span {
        margin-left: 6px;
        font-size: 13px;
    }
    .jckpt_box_prnt {
        gap: 15px; 
        display: flex;
        overflow: auto;
                margin-top: 20px;
    }
        .jckpt_box {
        flex: 0 0 130px;
        text-align: center;
    }
    .jckpt_box .img_box img {
        width: 100%;
        border-radius: 20px;
    }
}


/* @media only screen and (max-width: 993px) {
     .hero_sec .cnt { 
    top: 55%; 
    transform: translate(-50%, -45%);
  }
} */
@media only screen and (max-width: 767px) {
    .pckg_sec{
        justify-content: start;
    }
    .div-bannersetmain a img {
    height: 220px;
    }
     .hero_sec .cnt { 
    top: 60%; 
    transform: translate(-50%, -40%);
  }
  .search_box{
    width: 350px;
  }
  .search_box input{
        padding: 0px 105px 0 30px;
            height: 45px;
  }
  .search_box i{
    font-size: 13px;
  }
  .search_box input::placeholder{
    font-size: 14px;
  }
  .search_box button{
        width: 100px;
        font-size: 15px; 
  }
 
  .hero_sec .cnt h1 {
    font-size: 17px;
    line-height: 20px;
  }
  .search_box i{
    left: 8px;
  }
}
@media only screen and (max-width: 350px) {
        .search_box {
        width: 300px;
    }
}
 
/* special page css */




/* packages tour pages */
 

    
    
/*=============================
    	29. listing
===============================*/
.tg-tour-details-area {
    margin-bottom: 30px;
}

.tg-tour-details-video-title {
    font-size: 30px;
    text-transform: capitalize;
}

.tg-tour-details-video-location span {
    text-transform: capitalize;
    color: var(--tg-common-black);
}

.tg-tour-details-video-ratings span {
    color: var(--tg-common-yellow);
}

.tg-tour-details-video-ratings span.review {
    font-size: 14px;
    color: var(--tg-common-black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-details-video-share {
        text-align: left !important;
        margin-top: 10px;
    }
}

.tg-tour-details-video-share a {
    color: var(--tg-common-black);
    text-transform: capitalize;
}

.tg-tour-details-video-share a:hover {
    color: var(--tg-theme-primary);
}

.tg-tour-details-video-thumb img {
    border-radius: 15px;
}

.tg-tour-details-video-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tg-tour-details-video-inner .tg-video-play {
    color: var(--tg-common-black);
}

.tg-tour-details-video-feature-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0px 0px 0px;
}

.tg-tour-details-video-feature-list ul li {
    display: flex;
    margin-bottom: 15px;
}

.tg-tour-details-video-feature-list ul li:not(:last-child) {
    margin-right: 35px;
}

.tg-tour-details-video-feature-list ul li .icon {
    color: var(--tg-theme-primary);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    background: #f0e9ff;
    text-align: center;
    line-height: 40px;
    display: flex
;
    margin-right: 11px;
    align-items: center;
    justify-content: center;
}

.tg-tour-details-video-feature-list ul li .title {
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--tg-grey-1);
    display: block;
    line-height: 1;
}

.tg-tour-details-video-feature-list ul li .duration {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--tg-common-black);
}

.tg-tour-details-video-feature-price p {
    font-size: 15px;
    text-transform: capitalize;
    color: var(--tg-grey-1);
    display: flex;
    align-items: center;
    justify-content: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-details-video-feature-price p {
        justify-content: flex-start;
    }
}

.tg-tour-details-video-feature-price p span {
    font-weight: 600;
    margin-left: 5px;
    font-size: 30px;
    text-transform: capitalize;
    color: var(--tg-theme-primary);
}

.tg-tour-details-video-feature-2-list ul li {
    align-items: center;
}

.tg-tour-details-video-feature-2-list ul li .icon {
    background: var(--tg-common-white);
    border: 1px solid #e4e4e4;
    border-radius: 50%;
}

.tg-tour-details-gallery-thumb img {
    border-radius: 15px;
}

.tg-tour-details-gallery-thumb-active .tg-tour-details-gallery-thumb {
    mix-blend-mode: luminosity;
    position: relative;
    border: 2px solid transparent;
    border-radius: 15px;
}

.tg-tour-details-gallery-thumb-active .tg-tour-details-gallery-thumb img {
    border-radius: 12px;
}

.tg-tour-details-gallery-thumb-active .tg-tour-details-gallery-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0.5;
    background: var(--tg-common-black);
    top: 0;
    transform: scale(1);
    transition: all 0.4s ease;
    left: 0;
}

.tg-tour-details-gallery-thumb-active .swiper-slide-active .tg-tour-details-gallery-thumb {
    border: 2px solid var(--tg-theme-primary);
}

.tg-tour-details-gallery-thumb-active .swiper-slide-active .tg-tour-details-gallery-thumb::before {
    transform: scale(0);
    opacity: 1;
}

.tg-tour-details-gallery-navigation button {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background-color: var(--tg-common-white);
    color: var(--tg-common-black);
    position: absolute;
    top: 48%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    font-size: 18px;
}

@media (max-width: 575px) {
    .tg-tour-details-gallery-navigation button {
        left: 15px;
    }
}

.tg-tour-details-gallery-navigation button:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-white);
    border-color: var(--tg-theme-primary);
}

.tg-tour-details-gallery-navigation button.tg-tour-details-gallery-next {
    right: 50px;
    left: auto;
}

@media (max-width: 575px) {
    .tg-tour-details-gallery-navigation button.tg-tour-details-gallery-next {
        right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-wrap {
        margin-right: 0;
    }
}

.tg-tour-about-border {
    border-top: 1px solid #e4e4e4;
}

.tg-tour-about-border-doted {
    border-top: 1px dotted #e4e4e4;
}

.tg-tour-about-title {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}

.tg-tour-about-title.title-2 {
    font-size: 20px;
}

.tg-tour-about-list ul li {
    display: flex;
    cursor: pointer;
}

.tg-tour-about-list ul li:not(:last-child) {
    margin-bottom: 9px;
}

.tg-tour-about-list ul li .icon {
    width: 22px;
    height: 22px;
    border-radius: 50px;
    background: var(--tg-theme-primary);
    text-align: center;
    line-height: 23px;
    display: inline-block;
    font-size: 12px;
    color: var(--tg-common-white);
    transform: translateY(2px);
    flex: 0 0 auto;
}

.tg-tour-about-list ul li .text {
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: var(--tg-common-black);
}

.tg-tour-about-list-2 ul li .text {
    font-weight: 400;
    font-size: 16px;
    color: var(--tg-grey-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-list-2.disable {
        margin-top: 12px;
    }
}

.tg-tour-about-list-2.disable .icon {
    background: #e1e4e9;
    color: #787c83;
}

.tg-tour-about-faq .accordion-button:not(.collapsed){
    background: none;
}
.tg-tour-about-faq .accordion-button {
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--tg-theme-primary);
    position: relative;
    transition: all 0.4s ease;
    border: none;
    padding: 0px;
    box-shadow: none;
}

 

.tg-tour-about-faq .accordion-button span {
    border-radius: 100px;
    padding: 7px 14px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
    display: inline-block;
    margin-right: 12px;
    background: var(--tg-theme-primary);
    color: var(--tg-common-white);
    transition: all 0.4s ease;
}

 

.tg-tour-about-faq .accordion-button::after {
    margin-left: auto;
    /* content: "\f107";
    font-family: var(--tg-ff-fontawesome); */
    position: absolute;
    top: 20%;
    right: -50px;
    font-size: 18px;
    transform: rotate(-180deg);
    transition: all 0.4s ease;
}

.tg-tour-about-faq .accordion-button.collapsed {
    color: var(--tg-common-black-2);
}

.tg-tour-about-faq .accordion-button.collapsed::after {
    transform: rotate(0);
}

.tg-tour-about-faq .accordion-button.collapsed span {
    background: var(--tg-common-white);
    color: var(--tg-theme-primary);
}

.tg-tour-about-faq .accordion-body {
    background: var(--tg-common-white);
    border: 1px solid var(--tg-grey-7);
    border-radius: 0 0 6px 6px;
    padding: 17px 30px 5px 30px;
}
.tg-tour-about-faq .accordion-body .image{
    min-width: 200px;
    height: 150px;
}
.tg-tour-about-faq .accordion-body img{
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-tour-about-faq .accordion-body .div-d{
    display: flex;
    gap: 15px;
} 
.tg-tour-about-faq .accordion-body p {
    font-weight: 400;
    line-height: 28px;
    font-size: 16px;
    text-transform: capitalize;
}

.tg-tour-about-faq .accordion-header {
    padding: 12px 80px 12px 12px;
}

.tg-tour-about-faq .accordion-item {
    border-radius: 6px;
    background:#f0e9ff;
    margin-bottom: 10px;
}

.tg-tour-about-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    filter: saturate(0);
}

.tg-tour-about-review {
    border: 1px solid var(--tg-border-1);
    border-radius: 15px;
    background: var(--tg-grey-5);
    padding: 27px 20px 27px 27px;
}

.tg-tour-about-review .head-reviews {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-review .head-reviews {
        flex-direction: column;
    }
}

.tg-tour-about-review .review-left {
    box-shadow: 0 0 10px 0 #e9e9e9;
    background: var(--tg-common-white);
    border-radius: 14px;
    width: 100%;
    min-width: 240px;
    margin-right: 30px;
    max-width: 240px;
    text-align: center;
    padding: 33px 10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-review .review-left {
        margin-right: 0;
    }
}

.tg-tour-about-review .review-left .review-info-inner {
    display: inline-block;
    line-height: 22px;
    vertical-align: middle;
}

.tg-tour-about-review .review-left .review-info-inner h2 {
    font-weight: 700;
    font-size: 64px;
    text-transform: capitalize;
    color: var(--tg-theme-primary);
    margin-bottom: 3px;
}

.tg-tour-about-review .review-left .review-info-inner span {
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--tg-grey-1);
    display: inline-block;
    margin-bottom: 4px;
}

.tg-tour-about-review .review-left .review-info-inner p {
    text-transform: capitalize;
    margin-bottom: 0;
}

.tg-tour-about-review .review-right {
    width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-review .review-right {
        margin-top: 30px;
    }
}

.tg-tour-about-review .item-review-progress {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.tg-tour-about-review .text-rv-progress {
    min-width: 108px;
    padding-right: 8px;
}

.tg-tour-about-review .text-rv-progress p {
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
}

.tg-tour-about-review .bar-rv-progress {
    display: inline-block;
    width: 100%;
    max-width: 394px;
}

.tg-tour-about-review .text-avarage {
    min-width: 35px;
    padding-left: 12px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-review .text-avarage {
        min-width: 50px;
    }
}

.tg-tour-about-review .text-avarage p {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

.tg-tour-about-review .bar-rv-progress .progress {
    background-color: #e4e4e4;
    height: 10px;
    border-radius: 100px;
    border: 1px solid #e3e3e3;
}

.tg-tour-about-review .bar-rv-progress .progress .progress-bar {
    height: 8px;
    border-color: var(--tg-theme-primary);
    border-radius: 100px;
    background-color: var(--tg-theme-primary);
}

.tg-tour-about-review-form .input,
.tg-tour-about-review-form .textarea {
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-grey-1);
    border-radius: 5px;
    height: 50px;
    background: #f5f5f5;
    border: 1px solid transparent;
    padding: 10px 20px;
}

.tg-tour-about-review-form .input:focus,
.tg-tour-about-review-form .textarea:focus {
    border-color: var(--tg-theme-primary);
}

.tg-tour-about-review-form .input::-webkit-input-placeholder,
.tg-tour-about-review-form .textarea::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-grey-1);
}

.tg-tour-about-review-form .input:-moz-placeholder,
.tg-tour-about-review-form .textarea:-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-grey-1);
}

.tg-tour-about-review-form .input::-moz-placeholder,
.tg-tour-about-review-form .textarea::-moz-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-grey-1);
}

.tg-tour-about-review-form .input:-ms-input-placeholder,
.tg-tour-about-review-form .textarea:-ms-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-grey-1);
}

.tg-tour-about-review-form .textarea {
    height: 150px;
    padding-top: 0px;
}

.tg-tour-about-review-form .tg-checkbox {
    transform: translateY(-1px);
}

.tg-tour-about-cus-name h6 {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}

.tg-tour-about-cus-name h6 span {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--tg-theme-primary);
    margin-left: 15px;
}

@media (max-width: 575px) {
    .tg-tour-about-cus-review {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .tg-tour-about-cus-review-thumb {
        margin-bottom: 15px;
    }
}

.tg-tour-about-cus-review-thumb img {
    width: 128px;
    max-width: 128px;
    margin-right: 34px;
    border-radius: 50%;
}

.tg-tour-about-cus-review-star i {
    color: var(--tg-common-yellow);
    font-size: 18px;
}

.tg-tour-about-cus-reply {
    font-weight: 500;
    font-size: 14px;
    color: var(--tg-theme-primary);
    display: inline-block;
    border-radius: 6px;
    padding: 3px 16px;
    background: #eaf0fb;
}

.tg-tour-about-cus-reply:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-white);
}

.tg-tour-about-rating-category ul {
    display: grid;
    grid-template-columns: repeat(2, 270px);
    list-style: none;
    margin: 27px 0 0 5px;
    padding: 0;
}

@media (max-width: 575px) {
    .tg-tour-about-rating-category ul {
        grid-template-columns: repeat(1, 270px);
    }
}

.tg-tour-about-rating-category ul li {
    display: flex;
    margin-bottom: 13px;
}

.tg-tour-about-rating-category ul li label {
    width: 100px;
    max-width: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--tg-grey-1);
}

.tg-tour-about-rating-category ul li .rating-icon i {
    color: #dadada;
    font-size: 16px;
}

.tg-tour-about-sidebar {
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    box-shadow: 0 0 15px 0 #efefef;
    background: var(--tg-common-white);
    padding: 25px 30px 30px 30px;
    margin-left: -30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-sidebar {
        margin-left: 0;
    }
}

.tg-tour-about-sidebar-title {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black);
}

.tg-tour-about-date input {
    font-weight: 500;
    font-size: 13px;
    color: var(--tg-grey-1);
    border-radius: 8px;
    background: #f4f4f4;
    height: 40px;
    width: 100%;
    box-shadow: none;
    border: 1px solid transparent;
    padding-left: 38px;
    padding-right: 15px;
}

.tg-tour-about-date input:focus {
    border-color: var(--tg-theme-primary);
}

.tg-tour-about-date input::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 13px;
    color: var(--tg-grey-1);
}

.tg-tour-about-date input:-moz-placeholder {
    font-weight: 500;
    font-size: 13px;
    color: var(--tg-grey-1);
}

.tg-tour-about-date input::-moz-placeholder {
    font-weight: 500;
    font-size: 13px;
    color: var(--tg-grey-1);
}

.tg-tour-about-date input:-ms-input-placeholder {
    font-weight: 500;
    font-size: 13px;
    color: var(--tg-grey-1);
}

.tg-tour-about-date .calender,
.tg-tour-about-date .angle {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.tg-tour-about-date .angle {
    left: auto;
    right: 15px;
}

.tg-tour-about-time .time {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black);
    transform: translateY(-1px);
}

.tg-tour-about-time .form-check label {
    font-weight: 500;
    font-size: 14px;
    color: #898989;
}

.tg-tour-about-time .form-check-input {
    font-weight: 500;
    font-size: 14px;
    color: #898989;
    width: 15px;
    height: 15px;
    margin-top: 0;
    vertical-align: middle;
    border: 1px solid #afafaf;
    transform: translateY(5px);
    line-height: 1;
}

.tg-tour-about-time .form-check-input:checked~label {
    color: var(--tg-common-black);
}

.tg-tour-about-time .form-check-input:checked {
    background-color: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
}

.tg-tour-about-time .form-check-input:focus {
    border-color: var(--tg-theme-primary);
    box-shadow: none;
}

.tg-tour-about-tickets {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tg-tour-about-tickets-adult {
    margin-right: 5px;
}

.tg-tour-about-tickets-adult span {
    font-weight: 400;
    font-size: 14px;
    color: var(--tg-grey-1);
    line-height: 1;
}

.tg-tour-about-tickets-adult p {
    font-weight: 400;
    font-size: 14px;
    color: var(--tg-grey-1);
    line-height: 1;
}

.tg-tour-about-tickets-adult p span {
    font-weight: 500;
    color: var(--tg-common-black);
}

.tg-tour-about-tickets-quantity .nice-select {
    border: 1px solid #d6d6d6;
    border-radius: 24px;
    padding: 6px 10px;
    width: 60px;
    height: 29px;
    line-height: 15px;
    font-weight: 400;
    font-size: 16px;
    color: var(--tg-grey-1);
}

.tg-tour-about-tickets-quantity .nice-select:after {
    right: 10px;
    font-size: 16px;
    color: var(--tg-grey-1);
}

.tg-tour-about-extra ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tg-tour-about-extra ul li .quantity {
    font-weight: 500;
    font-size: 16px;
    color: var(--tg-common-black);
}

.tg-tour-about-extra ul li .adult {
    font-size: 14px;
    color: var(--tg-grey-1);
    text-transform: capitalize;
    font-weight: 400;
    padding-left: 30px;
}

.tg-tour-about-extra ul li .tg-label {
    font-size: 14px;
    color: var(--tg-grey-1);
}

.tg-tour-about-coast .total-price {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--tg-theme-primary);
    margin-bottom: 0;
}

.tg-tour-about-2-inner {
    box-shadow: 0 0 15px 0 #efefef;
    border: 1px solid #e9e9e9;
    border-radius: 15px;
    background: var(--tg-common-white);
    padding: 40px 38px 35px 40px;
}

@media (max-width: 575px) {
    .tg-tour-about-2-inner {
        padding: 20px 28px 15px 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .tg-tour-about-2-content .tg-tour-about-list-2 {
        margin-bottom: 10px;
    }
}
/* Animation for fade/slide-in */
.animated-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.animated-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Accordion icon and animation */
.tg-tour-about-faq .accordion-button .fa {
  margin-right: 10px;
  color: var(--tg-theme-primary);
  font-size: 1.1rem;
  transition: color 0.3s;
}
.tg-tour-about-faq .accordion-button.collapsed .fa {
  color: #bdbdbd;
}
.tg-tour-about-faq .accordion-button:hover .fa {
  color: var(--tg-theme-secondary);
}
/* Card hover and shadow improvements */
.widget.sticky-booking{
    position: sticky;
    top: 130px;
 }
 .widget {
  box-shadow: 0 2px 16px rgba(86,12,227,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
 .widget:hover {
  box-shadow: 0 8px 32px rgba(247,74,31,0.13);
  transform: translateY(-2px) scale(1.01);
}
/* List icon improvements */
.tg-tour-about-list ul li .icon, .tg-tour-about-list-2 ul li .icon {
  background: var(--tg-theme-primary);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 14px;
  transition: background 0.3s, color 0.3s;
}
.tg-tour-about-list ul li:hover .icon, .tg-tour-about-list-2 ul li:hover .icon {
  background: var(--tg-theme-secondary);
  color: #fff;
}
/* Sidebar icon */
.widget_title .fa {
  color: var(--tg-theme-primary);
  margin-right: 8px;
}
/* Typography improvements */
.tg-tour-about-title, .widget_title {
  letter-spacing: 0.5px;
}
.itinerary-tabs-swiper {
  border-radius: 12px;
  background: #f8f8ff;
  padding: 8px 30px 8px 0;
}
.itinerary-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--tg-theme-primary);
  background: #fff;
  border-radius: 24px;
  padding: 10px 26px;
  margin: 0 3px;
  box-shadow: 0 1px 6px rgba(86,12,227,0.04);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
  min-width: fit-content;
}
.gallery-thumbs-swiper .swiper-slide-thumb-active img{
    border:2px solid #2b038c;
}
.itinerary-tab.swiper-slide-thumb-active, .itinerary-tab.active,  .itinerary-tab:hover {
  background: var(--tg-theme-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(86,12,227,0.10);
  border: 2px solid var(--tg-theme-primary);
}
.itinerary-tab .fa {
  font-size: 1.1rem;
}
#itinerary-tab-content {
  min-height: 220px;
  margin-top: 10px;
}
.itinerary-day-card {
  display: flex;
  gap: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(86,12,227,0.07);
  padding: 28px 24px;
  align-items: flex-start;
  animation: fadeInAccordion 0.5s;
}
@media (max-width: 767px) {
  .itinerary-day-card { flex-direction: column; padding: 16px 8px; gap: 12px; }
}
.itinerary-day-img {
  width: 180px;
  height: 130px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .itinerary-day-img { width: 100%; height: 120px; }
}
.itinerary-day-content {
  flex: 1;
}
.itinerary-day-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tg-theme-primary);
  margin-bottom: 0.5rem;
}
.itinerary-day-desc {
  font-size: 1rem;
  color: #353844;
  margin-bottom: 0.5rem;
}
.itinerary-day-meals {
  font-size: 0.98rem;
  color: var(--tg-theme-secondary);
  font-weight: 500;
} 

        .breadcumb-content {
            position: relative
        }

        .tour-packages-swiper .swiper-wrapper{
            padding-bottom: 50px;
        }
        .tour-packages-swiper{
            margin: 30px 0px 50px 0px;
        }




        .breadcumb-wrapper {
            position: relative;
            background-color: #113d48;
            background-position: left top;
            padding: 163px 0;
            overflow: hidden;
            text-align: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .pt-35 {
            padding-top: 35px;
        }

        .mb-35 {
            margin-bottom: 35px;
        }

        .mb-15 {
            margin-bottom: 15px;
        }

        .mb-25 {
            margin-bottom: 25px;
        }

        .lh-28 {
            line-height: 28px;
        }

        .mb-40 {
            margin-bottom: 40px;
        }

        .mb-20 {
            margin-bottom: 20px;
        }

        .mr-10 {
            margin-right: 10px;
        }

        .mb-45 {
            margin-bottom: 45px;
        }







        .widget {
            background-color: #ffffff;
            border: 1px solid #e1e4e5;
            border-radius: 8px;
            margin-bottom: 40px;
            margin-top: 30px;
            position: relative;
            padding: 20px;
        }

        .widget_title {
            position: relative;
            padding-bottom: 17px;
            margin: -0.12em 0 30px 0;
        }

        .widget_title {
            position: relative;
            font-size: 24px;
            font-weight: 600;
            line-height: 34px;
            line-height: 1em;
            margin: -0.12em 0 30px 0;
        }

        .widget_title:after,
        .widget_title:before {
            content: '';
            height: 3px;
            width: 100%;
            background-color: #e9edf5;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .widget_title:after {
            background-color: #1ca8cb;
            width: 30px;
        }






        .recent-post {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            margin-bottom: 20px
        }

        .recent-post:last-child {
            margin-bottom: 0
        }

        .recent-post .media-img {
            margin-right: 15px;
            width: 80px;
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
            position: relative
        }

        .recent-post .media-img img {
            width: 100%;
            border-radius: 4px;
            -webkit-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out
        }



        .recent-post:hover .post-title a {
            color: #1ca8cb;
        }

        .recent-post .post-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
            text-transform: capitalize
        }

        .recent-post .recent-post-meta {
            margin-bottom: 12px
        }

        .recent-post .recent-post-meta a {
            text-transform: capitalize;
            font-size: 16px;
        }

        .recent-post .recent-post-meta a i {
            margin-right: 6px;
        }

        .recent-post .recent-post-meta a:hover {
            color: #1ca8cb;
        }

        .recent-post:hover .media-img img {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1)
        }

        .recent-post:hover .media-img:after {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
            border-radius: 15%
        }

        .service-img {
                border-radius: 8px;
    height: 400px;
    margin-bottom: 20px;
        }

        .service-img img {
                border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
        }
        .tg-tour-about-inner{
            margin-top: 10px;
            padding: 20px;
        }
        .tg-tour-faq-wrap{
            padding: 20px;
        }
        .tg-tour-about-content{
            margin: 30px 0px 40px 0px;
        }
       .gallery-main-swiper .swiper-button-next:after, .gallery-main-swiper .swiper-button-prev:after{
            font-size: 18px;
    background: white;
    height: 30px;
    width: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
        } 
       .popular-swiper .swiper-button-next:after {
            font-size: 18px;
    background: white;
    height: 45px;
    width: 45px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
        } 
       .popular-swiper   .swiper-button-prev:after{
            font-size: 18px;
    background: white;
    height: 45px;
    width: 45px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
        } 
        .itinerary-tabs-swiper .swiper-button-next{
            width: 45px;
            height: 45px;
        }
        .itinerary-tabs-swiper .swiper-button-prev{
            width: 45px;
            height: 45px;
        }
        .itinerary-tabs-swiper .swiper-button-next:after{
            font-size: 18px;
            background: white;
            height: 45px;
            width: 45px;
            display: flex
        ;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
        }
        .itinerary-tabs-swiper .swiper-button-prev:after{
            font-size: 18px;
            background: white;
            height: 45px;
            width: 45px;
            display: flex
        ;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
        }
        .popular-swiper .swiper-button-next {
            width: 45px;
            height: 45px;
        }
        .popular-swiper   .swiper-button-prev{
            width: 45px;
            height: 45px;
        }
/* packages tour pages */











@media screen and (max-width: 678px) {
    .popular-swiper .swiper-button-next:after, .swiper-button-prev:after{
             
    height: 35px;
    width: 35px; 
        } 
       .popular-swiper .swiper-button-next:after, .swiper-button-prev:after{
            
    height: 35px;
    width: 35px; 
        } 
        .popular-swiper .swiper-button-next {
            width: 35px;
            height: 35px;
        }
        .popular-swiper  .swiper-button-prev{
            width: 35px;
            height: 35px;
        }
    .carousel_1 {
    height: 85vh;
    }
    .carousel_1 .list .item .content{
        padding-right: 0;
    }
    .carousel_1 .list .item .content .title{
        font-size: 30px;
    }
   .carousel_1 .arrows{
            top: 90%;
                left: 5%;
    }
    .carousel_1 .list .item .content{
        top: 30%;
        left: 30%;
    transform: translateX(-30%);
    }
    /* .thumbnail_1{
            left: 20%;
    } */
    /* .thumbnail_1 .item {
    width: 140px;
    height: 140px;
    } */
}



















 .main-card {
            margin: 20px 0px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .main-card-tabmain .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
       .main-card-tabmain .tab-container {
            display: flex;
            background: #f5f5f5;
            border-radius: 12px;
            padding: 4px;
            width: 100%;
            max-width: 400px;
        }
        
       .main-card-tabmain .tab-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            color: #666;
        }
        
       .main-card-tabmain .tab-btn.active {
            background: #1e3a8a;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        
       .main-card-tabmain .tab-btn i {
            margin-right: 8px;
        }
        
         
        
        .main-card-tabmain .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
        }
        
       .main-card-tabmain .form-row.single {
            grid-template-columns: 1fr 1fr 1fr;
        }
        
        .main-card-tabmain .form-group {
            position: relative;
        }
        
       .main-card-tabmain .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            margin-left: 15px;
        }
        
       .main-card-tabmain .form-label i {
            margin-right: 8px;
        }
        
       .main-card-tabmain .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            transition: all 0.3s ease;
            background: white;
        }
        
        .main-card-tabmain .form-input:focus {
            outline: none;
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
        }
        
       .main-card-tabmain .form-input::placeholder {
            color: #999;
        }
        
      .main-card-tabmain  .airport-code {
            position: absolute;
            right: 15px;
            top: 65%;
            transform: translateY(-50%);
            background: #f0f0f0;
            color: #666;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
        }
        
       .main-card-tabmain .swap-btn {
            position: absolute;
                top: 60%;
    left: 50%;
    transform: translate(-30%, -40%);
            width: 45px;
            height: 45px;
            background: white;
            border: 2px solid #667eea;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
       .main-card-tabmain .swap-btn:hover {
            background: #667eea;
            color: white; 
        }
        
       .main-card-tabmain .search-btn {
            width: 100%;
            padding: 18px;
            background:#1e3a8a;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
       .main-card-tabmain .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px #1e3b8a46;
        }
        
        
        
        /* Mobile Responsive */
        @media screen and (max-width: 678px) {
            .carousel_1 {
                height: 100vh;
            }
        }
        @media (max-width: 768px) {
            .tg-tour-about-list ul li .text{
                font-size: 13px;
            }
            
           
            .tg-tour-about-inner{
                padding: 20px 10px;
            }
            .tg-tour-faq-wrap{
                padding: 20px 10px;
            }
            .main-card {
                padding: 25px;
            }
            
           .main-card-tabmain .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
           .main-card-tabmain .form-row.single {
                grid-template-columns: 1fr;
            }
            
           .main-card-tabmain .swap-btn {
                display: none;
            }
            
           .main-card-tabmain .tab-container {
                max-width: 100%;
            }
            
             
        }
        
        @media (max-width: 480px) {
            
            
            .main-card {
                padding: 20px;
            }
            
           
        }