.package-thumb a{
    overflow: hidden;
}

.package-thumb a:hover img{
    transform: scale(1.1);
    transition: 0.3s ease-in;
}



/* Accordian css  */


details {

    margin: 1rem auto;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  details:not([open]) {
    animation-name: fold-in;
    animation-duration: 0.2s;
  }
  details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    padding: 1.5rem;
  }
  details summary::-webkit-details-marker,
  details summary::marker {
    content: "";
    display: none;
  }
  details summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    margin-right: 1rem;
    cursor: pointer;
    color: var(--sec-clr);
  }
  details .content {
    padding: 0 1.5rem 1.5rem;
  }
  
  details[open] summary::after {
    content: "−";
  }
  details[open] .content {
    animation-name: fold-out;
    animation-duration: 0.2s;
  }
  
  @keyframes fold-out {
    0% {
      opacity: 0;
      margin-top: -1rem;
    }
    100% {
      opacity: 1;
      margin-top: 0;
    }
  }
  @keyframes fold-in {
    0% {
      padding-bottom: 1rem;
    }
    100% {
      padding-bottom: 0;
    }
  }
  

  
  .cnt-form input{
    width: 100%;
    height: 45px;
    outline: none;
    border: 1px solid #ccc;
    outline: none;
    padding-left: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
  }

  .cnt-form textarea{
    width: 100%;
    height: 101px;
    outline: none;
    border: 1px solid #ccc;
    outline: none;
    padding-left: 15px;
    padding-top: 10px;
    margin-bottom: 10px;
    border-radius: 6px;

  }

  .cnt-form button{

    width: 100%;
    height: 45px;
    outline: none;
    border: none;
    background-color:#ea5727;
    outline: none;
    padding-left: 15px;
  
    /* margin-bottom: 10px; */
    border-radius: 6px;
    color:white;
    font-size: 1.2rem;
    font-weight: 700;
  }


  .taxi-area {
    position: relative
}

.taxi-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow)
}

.taxi-img {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--theme-bg-light);
    border-radius: 15px
}

.taxi-head {
    text-align: center
}

.taxi-head h4 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase
}

.taxi-head span {
    font-weight: 500;
    color: var(--theme-color)
}

.taxi-feature {
    padding-top: 20px;
    margin: 20px 0 30px;
    border-top: 1px solid var(--border-info-color);
    position: relative
}

.taxi-feature::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    background: var(--theme-color);
    border-radius: 50px;
    left: 50%;
    top: -4px;
    transform: translateX(-50%)
}

.taxi-feature ul li {
    padding: 4px 0
}

.taxi-feature ul li span {
    float: right
}

.taxi-feature ul li i {
    width: 30px;
    height: 30px;
    line-height: 28px;
    color: var(--color-white);
    border-radius: 50px;
    margin-right: 10px;
    text-align: center;
    background: var(--theme-color)
}

.taxi-content .theme-btn {
    width: 100%
}

.filter-btns {
    text-align: center;
    margin-bottom: 40px
}

.filter-btns li {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 50px;
    margin: 0 5px 8px 0;
    padding: 8px 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px
}

.filter-btns li.active {
    background: var(--theme-color)
}

.taxi-single-img {
    display: flex;
    align-items: center;
    height: 500px;
    border-radius: 20px;
    background: var(--theme-bg-light);
    position: relative
}

.taxi-single-img::before {
    content: "";
    position: absolute;
    border: 5px solid var(--theme-color);
    border-radius: 20px;
    width: 95%;
    height: 95%;
    left: -30px;
    bottom: -30px;
    z-index: -1
}

.taxi-single-img img {
    margin-left: -90px;
    max-width: fit-content
}

.taxi-single-details {
    padding-left: 70px
}

.taxi-single-top {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-info-color)
}

.taxi-single-tagline {
    color: var(--theme-color);
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 3px
}

.car-inner{
  background-color: #f5f5f5;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.package-card-body ul span{
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 7px 12px;
}

.car-top-int ul span{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
 }

 .btm-main{
  display: flex;
  align-items: center;
 justify-content: space-between;
 padding: 0 15px;
 }

 .btm-main .btn{
 width: 100%;
 }

 
 .btm-main .price{
 
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d373c;
 }



.car-top-int button{
  padding: 8px 0;
  margin: 10px 0px;
  border: none;
  outline: none;
  background-color:#ea5727;
  color: #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
  width: 100%;
 
}

#sm-ban{
  background-color:#162b32 !important;

}
#sm-ban h2{
  color: #ffffff;

}

.package-info-table tbody th{

background-color: #1b4965;
}

.mhead h2{
     font-weight: 800;
    font-size: 35px;
    line-height: 42px;
    color: #2d373c;
    padding: 15px 0;

}
.mhead h2 span{
  color: #ea5727 !important;
}

.section-head-alpha h2 span{
  color: #ea5727 !important;
  
}


/* button scroll top 0  */
.scroll-to-top {
  display: flex;
  width: 45px;
  height: 45px;
  background:#ea5727;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}


/* desktop buttons  */

/* Click to chat CSS  */

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  left: 20px;
  z-index: 999;
}

/* call icon  */

.call-icon {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 999;
}

.pd-lavel .rating button{
    padding: 8px 25px;
    margin: 10px 0px;
    border: none;
    outline: none;
    background-color: #ea5727;
    color: #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
}

.pd-lavel .rating button a ,
.pd-top span button a{
      color: #ffffff !important;
}

.pd-top{
    display:flex;
    justify-content:space-between;
     /*flex-wrap:wrap;*/
}

.pd-top h2:last-child{
    float:right;
}

.package-details-wrapper .col-lg-2 button{
    padding: 4px 15px;
    margin: 10px 4px;
    border: none;
    outline: none;
    background-color: #ea5727;
    color: #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
}

.pd-top span{
    display:flex;
    justify-content:space-between;
    /*flex-wrap:wrap;*/
}

del{
    color:#ea5727;
    padding-left:15px;
    margin-right:10px;
}

.cat-more{
    
    font-size: 16px;
    color: #162b32;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    font-family: var(--f-primary);
    transition: all .3s ease-in-out;
    padding: 30.5px 0;
    position: relative;
    cursor:pointer;
    font-style:normal;
}
.cat-more::after{
   /* font-family: "Font Awesome 5 Free";*/
   /*content: "\2b";*/
   /*display: inline-block;*/
   /*padding-right: 3px;*/
   /*vertical-align: middle;*/
   /*font-weight: 900;*/
   
   
   position: absolute;
    right: -19px;
    color: #ea5727;
    font-family: bootstrap-icons !important;
    content: "\f64d";
    font-size: 13px;
    font-weight: 600;
    transition: all .5s ease-in-out;
    top: 34px;
    transition: all .5s ease-in-out;

}

.sub-menu{
      width: max-content !important;
}
.package-gallary-item p{
    color:white;
    font-size:1.1rem;
    background-color:#ea5727;
    text-align:center;
}


/*detail page css */

  .nav-pills {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .section-head-alpha {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-link-btn {
      background-color: #ea5727 !important;
      color: #ffffff !important;
      -webkit-animation: glowing 1500ms infinite;
      -moz-animation: glowing 1500ms infinite;
      -o-animation: glowing 1500ms infinite;
      animation: glowing 1500ms infinite;
      border: 0;
      padding: 10px 25px;
      border-radius: 10px;
      text-align: end !important;
      float: end !important;
    }



    .pkg_brd {
      background-color: #f7f7f7;
      margin-bottom: 10px;
      border: solid 1px #d1d2d2;
      margin-top: 20px;
      padding: 20px 15px 0px 15px;
      box-shadow: 1px 1px 10px #ea5727;
    }

    .pkg_brd {
      border: solid 1px #ea5727;
      padding: 0px;
      margin-bottom: 20px;
    }


    .pkg_bg {
      background-color: #f7f7f7;
      margin-bottom: 10px;
      border: solid 1px #d1d2d2;
      margin-top: 20px;
      padding: 20px 15px 0px 15px;
      box-shadow: 1px 1px 10px #ea5727;
    }

    .pkg_hdg {
      text-align: center;
      font-weight: bold;
      text-transform: uppercase;
    }



    .pkg_nm {
      font-weight: bold;
      color: #fff;
      background-color: #ea5727;
      border-bottom: solid 1px #ea5727;
      text-align: center;
      margin: 0px;
      font-size: 22px;
      padding: 8px 2px;
    }

    .pkg_rs {
      font-size: 18px;
      font-weight: bold;
      text-align: center;
      padding: 10px;
      border-bottom: solid 1px #ea5727;
      color: #162b32;
    }

    .pkg_btn {
      padding: 15px 10px;
    }

    .pkg_btn a {
      background-color: #ea5727;

      text-decoration: none;
      color: #fff;
      font-weight: 600;
      padding: 7px 25px;
      border-radius: 6px;
    }


    .nav-title {
      color: #2d373c;
      font-weight: 800;
      font-size: 1.8rem;
      line-height: 55px;
    }

    .pd-lavel {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .pd-lavel li,
    .section-head-alpha li,
    .nav-pills li {
      list-style: none;

    }

    .pd-lavel li button,
    .section-head-alpha li button,
    .nav-pills li button {
      border: 2px solid #ea5727;
      box-sizing: border-box;
      border-radius: 30px;
      font-weight: 600;
      font-size: 17px;
    }

    .nav-pills h2 {
      font-weight: 800;
    }

    @media only screen and (max-width: 768px) {

      .heading-btn {
        text-align: center !important;

      }

      .heading-main h2 {
        text-align: center !important;
        color: ;
      }

      .top-book {
        margin-top: -45px;
      }

      .nav-link-btn {

        text-align: center !important;
      }
      .breadcrumb-title{
          font-size: 2rem !important;
      }
    }
    .lst-words{
        color:#ea5727;
    }
    .m-head{
        font-weight: 800;
        font-size: 35px;
        line-height: 42px;
        color: #2d373c;
        margin-top: -7px
    }
    .img-bck-clr{
        background-color: #ea5727 !important;
        padding:10px;
    }
    .bkgd-shdo{
        background-color:#f3f3f3;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    }
    .glry-shdo{
        background-color:#f3f3f3;
        padding:1px 15px;box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    }
    .pkg-loc-shdo{
        background-color:#f3f3f3;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    }
    
    .mheading {
      font-weight: 800;
      font-size: 35px;
      line-height: 42px;
      color: #2d373c;
      padding: 15px 0;
    }
    
    .wp-btn{
      background-color: #075e54;
     color: #fcfcfc;
     padding: 8px 15px;
     font-weight: 600;
     border-radius:5px !important;
    }
    
    .wp-btn a{
     color: #fcfcfc;
    }
    .loc-inner ul li a{
        color:white;
    }

@media only screen and (max-width: 600px) {
  .topbar-area .contact-list .mobile{
        margin-left: 100px;
}

.mobile{
		font-size: 25px;
		font-family: cursive;
		color: white;
		animation: blink 1s linear infinite;
	}

@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}
}



