/********** Template CSS **********/
:root {
    --primary: #2302e0;
    --secondary: #2302e0;
    --light: #000000;
    --dark: #000000;
}

.fw-medium {
    font-weight: 800 !important;
}

.fw-semi-bold {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', 'Times New Roman', Times, serif;
    font-weight: 900;
    transition: .5s;
}

.btn.btn-primary{
    color: #dadada;
}
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 80px;
    height: 80px
}

.btn-sm-square {
    width: 80px;
    height: 80px;
}

.btn-lg-square {
    width: 80px;
    height: 80px
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .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;
        margin-left: 0;
        color: var(--dark) !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(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/**radio buton**/
.wrapper{
    display: inline-flex;
    position: relative;
    background: #fff;
    height: 100px;
    width: 600px;
    margin-left: 10px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 15px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
  }
  .wrapper .option{
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
  }
  .wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
  }
  .wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #0069d9;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  input[type="radio"]{
    display: none;
  }
  #trip_type:checked:checked ~ .trip_type,
  #trip_type2:checked:checked ~ .trip_type2{
    border-color: #0069d9;
    background: #0069d9;
  }
  #trip_type:checked:checked ~ .trip_type .dot,
  #trip_type2:checked:checked ~ .trip_type2 .dot{
    background: #fff;
  }
  #trip_type:checked:checked ~ .trip_type .dot::before,
  #trip_type2:checked:checked ~ .trip_type2 .dot::before{
    opacity: 1;
    transform: scale(1);
  }
  .wrapper .option span{
    font-size: 20px;
    color: #808080;
  }
  #trip_type:checked:checked ~ .trip_type span,
  #trip_type2:checked:checked ~ .trip_type2 span{
    color: #fff;
  }
 
@media (max-width: 992px){
    .wrapper{
    position: relative;
    display: inline-flex;
   margin-right: 20px;
    background: #fff;
    height: 100px;
    width: 495px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 15px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
  }
}
@media (max-width: 992px){
    .wrapper .option{
        background: #fff;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin: 0 10px;
        border-radius: 5px;
      cursor: alias;
        padding: 0 10px;
        border: 2px solid lightgrey;
        transition: all 0.3s ease;
      }
}
@media (max-width: 992px){
    .wrapper .option .dot{
        height: 20px;
        width: 20px;
        background: #d9d9d9;
        border-radius: 50%;
        position: relative;
      }
}
@media (max-width: 600px){
    .wrapper .option .dot{
        height: 10px;
        width: 10px;
        background: #d9d9d9;
        border-radius: 50%;
        position: relative;
      }
}
@media (max-width: 600px){
    .wrapper .option .dot::before{
        position: absolute;
        content: "";
        top: 1px;
        left: 1px;
        width: 8px;
        height: 8px;
        background: #0069d9;
        border-radius: 50%;
        opacity: 0;
        transform: scale(1.5);
        transition: all 0.3s ease;
}
}
@media (max-width: 600px){
    .wrapper{
    position: relative;
    display: inline-flex;
   margin-right: 20px;
    background: #fff;
    height: 100px;
    width: 495px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 15px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
  }
}
  /**radio buttton end**/
  .error-word{
    margin-right: 100px;
    justify-content: start;
   align-items: end;
   white-space: nowrap;

   text-overflow: clip;
  }
/**inside city at ou serivie**/
.inside-city-mb-0{
    margin-top: 5%;
    font-weight: 900;
    font-size: medium;
}
.out-station-mb-1{
    margin-bottom: 5%;
    font-weight: 900;
    font-size: medium;
}
/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/bg1454.jpeg);
    background-position: center ;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #000000;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #000000;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
   
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}




/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;

    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
   
    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-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.contact_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .contact_section .contact_form {
    padding: 25px;
    background-color: #282828;
    margin: 0 45px;
  }
  
  .contact_section .contact_form h4 {
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .contact_section .contact_form form {
    margin: 15px 0;
  }
  
  .contact_section .contact_form form input {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    margin-bottom: 15px;
    padding-left: 15px;
  }
  
  .contact_section .contact_form form input.message_input {
    height: 75px;
  }
  
  .contact_section .contact_form form button {
    padding: 8px 30px;
    border: none;
    outline: none;
    background-color: #efefef;
    color: #000000;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .contact_section .img-box img {
    width: 100%;
  }
  
  .app_section {
    background-color: #ffffff;
    color: #ffffff;
  }
  /* slider section */
.slider_section {
    height: calc(100% - 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
    color: #3b3a3a;
    padding: 45px 0 75px 0;
  }
  
  .slider_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section div#carouselExampleIndicators {
    width: 130%;
    margin-left: -20%;
    position: unset;
  }
  
  .slider_section .box {
    padding-left: 15%;
    margin-bottom: 100px;
  }
  
  .slider_section .box .detail-box {
    padding-right: 10%;
  }
  
  .slider_section .box .detail-box h4 {
    font-weight: bold;
    margin-bottom: 0;
    color: #ffffff;
  }
  
  .slider_section .box .detail-box h1 {
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 3rem;
  }
  
  .slider_section .box .img-box {
    margin: 0 7%;
  }
  
  .slider_section .box .img-box img {
    width: 100%;
  }
  
  .slider_section .box .btn-box {
    margin-top: 15px;
  }
  
  .slider_section .box .btn-box a {
    text-align: center;
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid #0240e9;
    background-color: transparent;
    color: #2302e0;
  }

  /**captacha code**/
  
  #table
  #customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  #customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  #customers tr:nth-child(even){background-color: #f2f2f2;}
  
  #customers tr:hover {background-color: #ddd;}
  
  #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #0c0f0e;
    color: white;
  }
  .mySlides {display:none;}

/**logo**/
  .green-ball {
    color: #ee82ee;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: 800;

}



.text-primary {
    color: #00008B!important;
}
body {font-family: 'Times New Roman', Times, serif;}

.mb-1{
    font-weight: bolder;
    color: #000000;
    font-size: x-large;
        font-family: 'superchunk';
        src: url('./superchunk.eot');
        src: local('superchunk'), url('./superchunk.woff') format('woff'), url('./superchunk.ttf') format('truetype');
    }
    /* use this class to attach this font to any element i.e. <p class="fontsforweb_fontid_187">Text with this font applied</p> */
    .mb-1 {
        font-family: 'superchunk' !important;
       
    }


/**rate font**/
.rate-font {
font-weight: bolder;


color: #000000;
}
/**car details**/
.product-item {
    padding: 30px;
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: -20px;
    opacity: 1;
}

.product-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}
/**button color for booking section trip radio switch**/
.btn-light {
    color: #000;
    background-color: 	#fafafa;
    border-color: 	#f4f4f4;
}
.btn-light:hover {
    color: rgb(0, 0, 0);
    background-color:#c7c7c7;
    border-color: #FFC000;
}



  
  .trip
  {
      height: 100%;
      position: relative;
      right: 280px;
      max-width: 400px;
      grid-column: 2/3;

      gap: 40px;
      flex-direction: column;
      justify-content: center;
      color: white;
font-family: 'Inter', sans-serif;
font-size: clamp(20px, 5vw, 50px);
 font-weight: 900;
}
@media only screen and (max-width: 600px) {
    .trip {
     left: 10px;
     font-family: 'Inter', sans-serif;
font-size: clamp(32px, 6vw, 72px);
 font-weight: 900;
    }
  }
  h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "Nunito",sans-serif;
    font-weight: 1000;
    line-height: 1.2;
    color: #000000;
}
.h4, h5, .h5, h6, .h6, h7, .h7{
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "Nunito",'Times New Roman', Times, serif;
    font-weight: 900;
    line-height: 1.2;
    color: #0c0b0bb6;
}
/**Additional-charge**/
.Additional-charge{
   font-weight: bold;
   font-family: 'Times New Roman', Times, serif;
   font-size: large;
   margin-bottom: 30px;
}

/*** Booking ***/
.booking-new {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.form-floating {
    margin-top: 10px;
}
/**whatsapp FLoating**/
.float{
	position:fixed;
	width:70px;
	height:70px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
  
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:50px;
	box-shadow: 2px 2px 3px #999;
  z-index:150;
}
/**button**/

 
    

.my-float{
	margin-top:30px;
}
@media only screen and (max-width: 1000px) {
    .float{
        position:fixed;
	width:50px;
	height:50px;
	bottom:40px;
	right: 1px;
	background-color:#25d366;
	color:#FFF;
	border-radius:30px;
	text-align:center;
  font-size:35px;
	box-shadow: 2px 2px 3px #999;
    animation: pulse 1s cubic-bezier(0,0,0,0) 0.3s infinite;
  z-index:100;
    }
    
}
@media only screen and (max-width: 1000px) {
    .my-float{
        margin-top:16px;
    }
    
}


* {
    box-sizing: border-box;
}


.phone {
    position:fixed;
	width:70px;
	height:70px;
	bottom:120px;
	right:40px;
  font-size:45px;
	background-color:rgb(0, 122, 204);
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;

    
 
}
@media only screen and (max-width: 1000px) {
    .phone {
        position:fixed;
        width:50px;
        height:50px;
        bottom:100px;
        right:1px;
      font-size:35px;
        background-color:rgb(0, 122, 204);
        color:#FFF;
        border-radius:50px;
        text-align:center;
        box-shadow: 2px 2px 3px #999;
  z-index:100;

    }
}

