@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Chivo+Mono:wght@100&family=Chivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Open+Sans:ital,wght@0,300;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Playfair+Display&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');    margin: 0;




body {
    font-family: 'Chivo', sans-serif;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}
:root{
    --primary-color:#353D60;
    --text-color:#101828;
    --secondary-color:#D1ECFD;
    --bg-color:#E4E7EC;
    --brand-color: #353d60;
    --brand-light: #4a5578;
    --brand-lighter: #e8eaf2;
        
  }

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

ul {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
li{
    list-style-type: none;
}

a {
    color: #000000;
    -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;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;

}
p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #475467;
}


h1,
h2,
h3,
h4
{
    font-weight: 400;
    /* line-height: 1.46; */
    color: #111;
    margin-bottom: 0;
    
    
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 24px;
    font-weight: 400;
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 768px) {

    h1 {
        font-size: 42px;
    
    }
    
    h2 {
        font-size: 30px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 22px;
    }
    
    body {
		font-size: 18px;
	}
	.mobile-title {
    color: #fff;
    font-size: 29px;
    position: absolute;
    top: 21px;
}
.navbar-collapse .site-btn {
    margin-bottom: 22px;
    margin-top: 15px;
}
.navbar-collapse.show .nav-item {
    border-bottom: 1px solid #ffffff57;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.dropdown-toggle::after {
    float: right;
    margin-top:12px;
}
 .mobile-call a{
     font-size:14px;
 }
 .footer-wrapper {
     margin-bottom:35px;
 }
}

@media(min-width:767px){
    .mobile-title{
        display:none;
    }
}

.hide {
    display: none;
}

.bg{
    background-color: var(--primary-color);
}
.bg-light{
    background-color: var(--bg-color);
}

.text-main{
    color: var(--text-color);
}

.main-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    padding: 7px 15px;
    text-transform: capitalize;
    
    
}
.sec-btn{
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    padding: 7px 15px;
    text-transform: capitalize;
    
}
.sec-btn:hover{
    background:#E7716A;
    color:#fff;
}

.pill-btn {
    background-color: #D1ECFD;
    padding: 9px 20px;
    text-align: center;
    border-radius: 50px;
    width: fit-content;
}

@media (min-width: 1200px) {
    .main-btn {
        font-size: 14px;
        padding: 0.5rem 1.2rem;
    }

    .navbar-collapse {
        order: unset;
    }
    h2 {
        font-size: 36px;
    }
  
}

.main-btn:hover,
.main-btn:focus {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

button{
    background-color: unset;
    border: none;
    outline: none;
}

.section-padding{
    padding: 35px 0;
}

.bg{
    background-color: #fcfcfc;
}
.bg-dark{
    background-color: #353D60 !important;
}

.bg-shadow{
    box-shadow: 0 7px 15px #dedede;

}

.dropdown-item.active, .dropdown-item:active {
    color: unset;
    text-decoration: none;
    background-color: unset;
}


.mobile-call.bottom-sticky {
    position: unset;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
    z-index: 99;
    padding-top: 30px;
    border-top: 1px solid #fff;
}

.site-header h3{
    font-weight: 600;
    color: var(--text-color);
    font-size: 35px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}
.site-header p{
    font-style: normal;
    font-size: 18px;
    font-weight: 400;
    color: #475467;
}
.site-header{
    margin-bottom: 40px;
}

.content-header h3{
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height:1.4;
}
.content-header p{
    color: #475467;
}
@media (max-width:992px){
    .site-header{
        width: 100% !important;
    }
    .site-header h3{
        font-size: 30px;
    }
}
.main-card {
    border-bottom: 2px solid #E4E7EC;
    border-radius: 10px;
}

.block-footer{
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #D1ECFD;
}
.block-footer h5 {
    font-weight: 400;
}

.main-row .col:not(:last-child) .main-card{
    margin-bottom: 30px;
}


/* navbar */
.navbar-toggler{
    line-height: 0 !important;
}
.navbar-toggler-icon{
    height: unset;
}
.navbar-toggler-icon svg {
    color: #fff;
    font-size:28px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-item{
    margin-bottom: 8px;
    min-width: 15rem;
}
.dropdown-submenu .dropdown-menu {
    display: none;
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


@media (min-width:992px){
    .close-btn{
        display: none;
    }
}

.close-btn{
    float: right;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

@media (max-width: 992px) {
    .navbar-collapse {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 100%;
      overflow-y: auto;
      background-color: var(--primary-color);
      padding: 20px;
      transition: all 0.3s ease;
      z-index: 999;
    }
  
    .navbar-collapse.show {
      right: 0;
    }

    .navbar-nav{
        margin-top: 50px;
    }
  }
  
  .main-header{
    background-color: var(--primary-color);
    padding: 10px 0;
  }
  .site-logo{
    width: 378px;
    height: 40px;
    object-fit: contain;
  }
  .nav-link{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
  }
  .nav-link:focus, .nav-link:hover {
    color: #fff;
}
  @media (min-width: 992px)
  {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.5rem;
        padding-left: 0.5rem;
    }
  }


  

  /* hero banner */
.hero-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 390px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #353d60;
}

  .hero-banner::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color:#000;
    opacity: 0.6;
  }

  @media (max-width:992px){
    .hero-banner{
        height: 100%;
    }
  }
  .hero-banner .text-content{
    position: relative;
  }

.hero-banner .text-content h1 {
    color: #fff;
    font-weight: 400;
    line-height: 79px;
    letter-spacing: -0.005em;
    font-size: 33px;
}
  
.hero-banner .text-content p {
    color: #E4E7EC;
    font-size: 17px;
}
  .hero-banner .img-container img{
    height: 450px;
    width: 100%;
    object-fit: contain;
}
.hero-banner .text-content .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 60px;
    width: 70%;
    margin-inline: auto;
}
@media (min-width:767px){
    .hero-banner .text-content{
        width: 75%;
        margin-inline:auto
    }
}
  


/* procecss */
.icon-box{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--bg-color);
    display: grid;
    place-items: center;
}

/* feedback */
.feedback .main-card {
    margin-bottom: 20px;
    min-height: 282px;
}

/* blog */
.blog .sec-btn{
    background-color: #101828;
    color: #fff;
    white-space:nowrap;
}


/*footer  */
.footer-title{
    font-style: normal;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-link li:not(:last-child){
    margin-bottom: 8px;
}

.footer-link a{
    color: #fff;
}

.bottom-footer{
    padding-top: 15px;
    border-top: 1px solid var(--bg-color);
}

.social-link{
    display: flex;
    align-items: center;
    justify-content: end;
}
.social-link li:not(:last-child){
    margin-right: 5px;
}

.social-link li{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--primary-color);

}
.social-link svg{
    color: #fff;
}
.bottom-footer p{
    color:#fff;
}

/* info */
.main-head {
    font-weight: 600;
    font-size: 40px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.sub-head{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-section .info-box:not(:last-child) {
    margin-bottom: 25px;
}

.info-list li:not(:last-child){
    margin-bottom: 15px;
}

/* service */
.service .img-container img{
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* faq */
.faq .faq-box{
    margin-bottom: 15px;
}

/* call */
.call{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    
}

.call::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.5;
}

.call h3{
    font-size: 35px;
    margin-bottom: 15px;
}

.call .text-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 375px;
}

/* tabs */
.nav-pills .nav-link {
    background: 0 0;
    border: 1px solid #E4E7EC;
    border-radius: 50px;
    padding: 10px 30px;
    color: #667085;
    margin-right: 10px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #004B52;
    background-color: transparent;
    border: 1px solid #004B52;
    border-radius: 50px;

}

/* contact */
.contact-wrapper{
    border-radius: 15px;
    padding: 50px;
}

.contact label{
    color: #fff;
}


 .hero-banner .form-control{
    padding: 1rem 0.753rem;
}
 .hero-banner .input-group .btn {
    z-index: 99;
    right: -7%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #F5756B !important;
    color: #fff;
}

.svg-inline--fa{
    vertical-align: middle !important;
}
.hero-banner .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 90px;
    width: 85%;
}

.category{
    background-color: #fffcf1;
}
.category .main-card{
    background-color: #fff;
    padding: 25px;
    border-bottom: none;
}

.category .content-header {
    margin-top: 24px;
}

 .owl-carousel .owl-dots.disabled {
    display: block;
    margin-top: 30px;
}
.card-btn .main-btn:nth-child(3) {
    background: transparent;
    color: #353D60;
    border: 1px solid #353D60;
}
.card-btn .main-btn{
    border-radius: 0;
}
    .main-bread{
    padding: 15px 0;
    background: #eee;
}

.inner-list .img-container img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.inner-list .content-header{
    padding: 25px;
}

/*  */

@media (max-width:992px){
    .hero-banner .text-content h3 {
        color: #fff;
        letter-spacing: -0.005em;
        font-size: 33px;
        line-height: 40px;
    }
    .site-logo {
width: 225px;
    }
    .main-header {
     padding: 0; 
    }

    .category .main-card{
        flex-wrap: wrap !important;
    }

    .contact-info .main-card{
        flex-wrap: wrap !important;
    }

    .social-link{
        justify-content: flex-start;
    }
    .content-header h3 {

    font-size: 21px;
}
.text-container{
    width: 100% !important;
}
.nav-pills .nav-link {
    background: 0 0;
    border: 1px solid #E4E7EC;
    border-radius: 50px;
    padding: 4px 19px;
    color: #667085;
    margin-right: 5px;
}
.main-head{
    font-size: 32px;
}
.hero-banner .input-group{
    width: 100%;
    margin-top: 20px;
}
.section-padding {
    padding: 30px 0;
}
.process .main-card{
    display:flex;
}
.process .icon-box {
    height: 70px;
    width: 125px;
    margin-right: 8px;
}
.process .icon-box img {
    height: 34px;
}
.site-header {
    margin-bottom: 40px;
}
}


.trek-wrapper {
    border: 1px solid #b0aaaa;
    padding:10px;
    margin-bottom:30px;
}
.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    max-width: 100%;
    height: 60px;
}

.col-img{
    margin-right:10px;
}
.slideshow-items {
  width: 100%;
}

.slideshow-thumbnails {
  width: 100px;
}

#slideshow-items-container {
  display: inline-block;
  position: relative;
}

#lens {
  background-color: rgba(233, 233, 233, 0.4);
}

#lens, #result {
  position: absolute;
  display: none;
  z-index: 1;
}

.slideshow-items {
  display: none;
}

.slideshow-items.active {
  display: block;
}

.slideshow-thumbnails {
  opacity: 0.5;
  margin-right:10px;
}

.slideshow-thumbnails.active {
  opacity: 1;
}

#lens, .slideshow-items, .slideshow-thumbnails, #result {
  border: solid var(--light-grey-2) 1px;
}

div#slideshow-items-container img.slideshow-items {
  min-height: 450px;
  object-fit: cover;
  max-height: 450px;
}

.product_detail-block h5 {
  font-size: 12px;
  line-height: 22px;
}

.product_detail-block h5 span {
  color: rgb(0, 95, 239);
}

.product_detail-block h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 24px;
  text-transform: capitalize;
  color: rgb(51, 62, 72);
  margin-top: 20px;
}

.product_detail_price h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  text-transform: capitalize;
  color: #F5756B;
}

.product_detail_price h1 s {
  font-size: 20px;
  line-height: 22px;
  text-decoration-line: line-through;
  text-transform: capitalize;
  color: rgb(115, 120, 125);
  margin-left: 15px;
}

.product_detail_brand h1 {
  font-size: 15px;
  line-height: 25px;
  text-transform: capitalize;
  color: rgb(51, 62, 72);
}

.product_detail_brand h1 span {
  font-weight: 600;
  font-size: 19px;
  line-height: 25px;
  text-transform: capitalize;
  color: rgb(51, 62, 72);
  margin-left: 5px;
}

.product_detail-block .d-flex.justify-conten-between {
  justify-content: space-between;
  margin-top: 15px;
}

div#slideshow-items-container {
  width: 100%;
}

.product_detail_item-list ul li small {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: rgb(51, 62, 72);
  width: 147px;
  display: inline-block;
  margin-bottom: 2px;
}

.product_detail_item-list ul li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgb(51, 62, 72);
}

.input-row {
  display: flex;
}

.input-row:last-child {
  border-bottom: 0px;
}

.input {
  display: flex;
  align-items: center;
  margin: 0px auto;
}

button.minus, button.plus {
  width: 30px;
  height: 30px;
  background: rgb(248, 248, 248);
  border-radius: 50px;
  color: rgb(51, 62, 72);
  font-size: 0px;
  border: 1px solid rgb(51, 62, 72);
}

.number.dim {
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgb(255, 61, 61);
  margin: 0px;
  padding:0 8px;
}

.product_detail-btn a {
  padding: 10px 16px;
  gap: 10px;
  /*width: 173px;*/
  height: 44px;
  background: #F5756B;
  /*border-radius: 8px;*/
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  margin-right:12px;
}

a.add_cart.text-white, section#cart a.add_cart.text-white {
  background: rgb(255, 61, 61);
}

section#cart a.add_cart.text-white {
  width: 200px;
}

.product_detail_text-list ul h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
}

.product_detail_text-list ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgb(51, 62, 72);
  margin-top: 10px;
}

.flas_img {
}

section#cart input {
  color: black !important;
}

section#cart .table_cart {
}

section#cart td input {
  width: 43px;
}

section#cart .cart-price h6 {
  color: rgb(97, 97, 97);
}

section#cart .cart_text {
  color: rgb(136, 107, 235) !important;
}

section#cart .cart-summary {
  border: 1px solid rgba(194, 194, 194, 0.24);
}

.product_des h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: rgb(51, 62, 72);
}

.product_des p {
  font-size: 14px;
  line-height: 23px;
  font-family: arialRegular;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.number {
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    color: rgb(255, 61, 61);
    margin: 0px;
    padding: 0 8px;
}

.rent-bt a{
    background:#E7716A;
    color:#fff;
    padding:15px 30px;
    display:inline-block;
}
.icon-box img {
    height: 50px;
    object-fit: contain;
}
.detail-btn {
    display: flex;
}
.detail-btn .main-btn {
    width: 50%;
    text-align: center;
    border-radius:0;
}
.whatsapp-btn .bus-btn {
    background-color: #48C857;
    width: 100%;
    text-align: center;
}
.whatsapp-btn .bus-btn {
    background-color: #48C857;
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px;
    color: #fff;
    font-size:12px;
}
.stick-me {
    position: sticky;
    top: 28px;
}
.form-wrapper{
    width:80%;
    margin-inline:auto;
    background:#fff;
    padding:30px;
    box-shadow:0 6px 6px #efefef;
}
.quote-btn {
    background: #F5756B;
    width: 50%;
    text-align: center;
    color: #fff;
    padding: 10px;
    margin-right: 8px;
    border-radius: 5px;
}
.whats-btn {
    background: #21c063;
    width: 50%;
    text-align: center;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}
.bottom-sticky {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
    z-index: 99;
}
.form-title {
    padding-bottom: 20px;
    border-bottom: 2px solid #f5756b;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding-bottom:10px;
    clear: both;
    font-weight: 400;
    color: #353d60 !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    margin-bottom:10px;
}

.dropdown-menu .dropdown-submenu:not(:last-child) .dropdown-item{
        border-bottom:1px solid #dee2e6;

    }
.dropdown-submenu svg{
    float:right;
}
.footer{
    background:#353D60;
}
.navbar-toggler {
    padding: 0.25rem 0;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow .15s ease-in-out;
}
.info-section .main-card .img-container img{
    height:277px;
    object-fit:cover;
}
.trek-gear-list li{
    margin-bottom:10px;
    padding-bottom:10px;
    border-bottom:1px solid #dee2e6;
}
.sidebar-title{
    border-bottom:1px solid #dee2e6;
    margin-bottom:10px;
    padding-bottom:10px;
}
.bg-whatsapp{
    background:#48C857 !important;
}
.sub-home{
    font-size:12px;
}

.trek-wrapper .img-container img{
    height:215px;
    width:100%;
    object-fit:contain;
}
.fleet-img{
    height:260px;
    width:100%;
    object-fit:cover;
}

.nav-sub{
        display: block;
    width: 100%;
    padding-bottom: 10px;
    clear: both;
    font-weight: 400;
    color: #353d60 !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    margin-bottom: 10px;
    padding-left:10px;
    padding-right:10px;
}

.dropdown-menu .nav-sub:not(:last-child)  {
    border-bottom: 1px solid #dee2e6;
}

.info-box a{
    color:var(--primary-color);
    text-decoration:underline;
}

.trek-detail h4{
    margin-top:10px;
}
tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border: 1px solid #000;
}
.b-list{
    list-style:disc;
    padding-left:15px;
    
}

.b-list li{
        list-style:disc;
        margin-bottom:15px;

}

.card{
    height:100%;
}

.image img{
    height:300px;
    width:100%;
    object-fit:cover;
}
.bg-main {
    background-color: #f8f8f8;
    padding: 20px;
}

.a-link{
    color:blue !important;
    text-decoration:underline;
}

.blog-tab img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog .main-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.faq-box {
    box-shadow: 0 6px 6px #ededed;
    padding: 20px;
    margin-bottom:8px;
}

.faq-box h3{
    margin-bottom:7px;
}

.faq-box p{
    margin-bottom:0;
}

.contact-p{
    width:fit-content;
}

.contact-p ul li{
    margin-top:8px;
}

.contact-p ul li a{
    color:blue;
}

.contact-p ul li a:hover{
    text-decoration:underline;
}

.info-box ul li{
    list-style-type:disc;
}

.info-box ul{
    margin-left:30px;
}

 .single-banner-slide {
	height: 100vh;
	width: 100vw;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 2;
}
.single-banner-slide span {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.single-banner-slide h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 60px;
}
.single-banner-slide::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: -1;
	width: 100%;
	height: 100%;
}
.single-banner-slide p {
	color: #fff;
	font-size: 15px;
	max-width: 50%;
	margin: 0 auto;
	text-align: center;
}
.single-banner-slide a {
	color: #000;
	background: #fff;
	padding: 10px 45px;
	border-radius: 100px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	margin-top: 30px;
	transition: 0.3s;
}
.single-banner-slide a:hover {
	color: #fff;
	background: #000;
}
.owl-dots {
	display: none !important;
}
.imgOne img {
    max-width: 100%;
    border-radius: 200px 200px 200px 200px;
}
.padding {
    padding: 100px 0;
}

.imgWrap {
    position: relative;
}
.category .main-card {
    background-color: #fff;
    padding: 25px;
    border-bottom: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 25px 30px 25px;
    background-color: #fff;
    border: 1px solid #ede4e4;
    border-radius: 31px;
    margin-bottom: 2px;
}
section#servicesHome {
    background: #fff8f6;
}
.content-header h3 {
   
    font-weight: 600;
}
.fleet-img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.site-header h2 {
    font-weight: 700;
}
    .main-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .imgOne img {
    /* max-width: 100%; */
border-radius: 20px;
    width: 409px;
    min-height: 563px;
    max-height: 563px;
    object-fit: cover;
    object-position: center;
}
section.fleet {
    background: #fff8f6;
}
section.blog .content-header h3 {
    padding: 10px 20px;
}

.main-card {
    border-radius: 10px;
    overflow: hidden;
}
.site-header h3 {
    font-weight: 600;
    color: var(--text-color);
    font-size: 35px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}
button::-moz-focus-inner {
    border: 0
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey
}

::-webkit-scrollbar-thumb {
    background: #353d60;
}
.blog .main-card img {
    height: 312px;
    width: 100%;
    object-fit: cover;
}
.img_Two img {
    position: absolute;
    bottom: -82px;
    right: 53px;
    border-radius: 20px;
    width: 324px;
    height: 359px;
    object-fit: cover;
}
.imgOne img {
    /* max-width: 100%; */
    border-radius: 20px;
    width: 428px;
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}
section.info {
    padding-bottom: 200px;
}
.single-banner-slide {
    height: 75vh;
   
}
.single-banner-slide h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
    margin-bottom: 40px;
    margin-top: 8px;
}
.single-banner-slide h2 {
    color: #fff;
    text-transform: capitalize;
    font-size: 60px;
    margin-bottom: 40px;
    margin-top: 8px;
    font-weight: 600;
}
.single-banner-slide a {
    color: #000;
    background: #fff;
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}
.single-banner-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    width: 50%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
}


.sliderContent {
    position: relative;
    color: #fff;
}

.animated-text {
    opacity: 0;
    transform: translateY(30px);
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.animated-text a {
    display: inline-block; /* Allow animation on inline element */
    text-decoration: none; /* Optionally remove underline */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

.single-banner-slide p {
    color: #fff;
    font-size: 15px;
    max-width: unset;
    margin: 0 auto;
    text-align: center;
}
.sliderContent p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
}
.single-banner-slide a {
    color: #000;
    background: #fff;
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    transition: 0.3s;
}
.category .main-card:hover {
    background: #353d60;
}
.category .main-card {

    transition: .5s;
    transform: translate(-);
}

 .category .main-card:hover {
    background: #353d60;
    transform: translateY(-10px);
}
 .category .main-card {
    transition: .5s;
    margin-top: 10px;
}
section.destination.padding.bg {
    background: white;
}

#servicesHome .main-card:hover .content-header h3, #servicesHome .main-card:hover .content-header p {
    color: white;
    transition: .5s;
}


.imgOne img {
    animation: moveUp 2s ease-in-out infinite;
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.site-header p {

    margin-bottom: 0;
}
.site-header p {
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    line-height: 26px;
}

.site-header h3 {


    font-size: 35px;

    line-height: 46px;
}

.processWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9px 59px;
}
.processWrap h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 11px;
}
.processWrap p {
    color: white;
 
}
.site-header h2 {
    font-weight: 700;
    margin-bottom: 7px;
}
section.process {

    background-image: url('/assets/frontend/images/bg4.webp');
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.feedback .main-card {
    margin-bottom: 20px;
    min-height: unset;
}
.subHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subHeading h3 {
    font-weight: 500;
    font-size: 22px;
    font-weight: 600;
}
.subHeading a {
    background: #353d60;
    padding: 10px 34px;
    color: white;
    border-radius: 100px;
    font-weight: 400;
}
.subHeading h3 {
    font-weight: 500;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px solid #353d60;
    color: #353d60;
}
.site-header h2 {
    font-weight: 700;
    margin-bottom: unset;
}
.subHeading {
    margin-bottom: 20px;
}
section.blog .main-card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-bottom: 0;
}


.bottom-footer {
    padding-top: 0;
    border-top: unset;
    background: #1b2347;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 20px;
}
.fleet-img {
    height: 275px;
   
}
.social-link li {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    justify-content: center;
}
.social-link li:not(:last-child) {
    margin-right: 16px;
}
.footer-title {

    margin-bottom: 18px;
    font-weight: 600;
}
.footer-link li:not(:last-child) {
    margin-bottom: 13px;
}

.dropdown-item {
 
    padding-bottom: 6px;

    margin-bottom: 0;
}

.main-row .col:not(:last-child) .main-card {
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-bottom: 0;
}
section.blog-tab .content-header {
    padding: 10px;
}
.single-banner-slide h2, .single-banner-slide h1 {
    color: #fff;
    text-transform: capitalize;
    font-size: 60px;
    margin-bottom: 40px;
    margin-top: 8px;
    font-weight: 600;
}

.content-header h3 {

    margin-bottom: 0;
 
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    width: fit-content;
    position: absolute;
    right: 0;
    z-index: 99;
}


.captcha-container{
    width:100%;
    overflow:hidden;
}

table{
    width:100%;
    padding:5px;
}

table td {
    padding: 10px;
    padding-bottom: 0;
}

.related-box .main-card{
    display:flex;
    align-items:center;
}



.related-box .main-card .img-container {
    margin-right:8px;
    width:30%;
    height:80px;
}

.related-box .main-card .img-container img {
    width:100% !important;
    height:100% !important;
    object-fit:contain;
}

.related-box .main-card .content-header {
    width:70%;
}

.related-box .main-card h3 {
    font-size: 16px;
    font-weight: 400;
}

.related-wrapper .related-box{
    margin-bottom:15px;
}

 .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    }
    
    .img-radius{
        border-radius:10px;
    }
      .custom-check::before {
        content: "\f560";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        /* margin-right: 8px; */
        color: #ffffff;
        position: absolute;
        left: -47px;
        background: #353a61;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        display: grid;
        place-items: center;
    }
    
    .custom-check {
    position: relative;
    margin-left: 50px;
    margin-bottom:15px;
}

@media(min-width:768px){
    .h-title{
        width:70%;
    }
}

.process {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
.process__item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    position: relative;
    padding: 10px 23px;
    transition: 0.4s ease-in-out;
}
.process__item:hover {
  background: #f2f2f2;
}
.process__item:hover .process__number {
  transform: translateY(5px);
  color: #353D60;
}
.process__number {
  font-size: 90px;
  -webkit-text-stroke: 1px #003c71;
  display: block;
  color: transparent;
  font-family: "Roboto Condensed";
  font-weight: 700;
  transition: 0.4s ease-in-out;
}
.process__title {
    display: block;
    font-family: "Roboto Condensed";
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 23px;
    color: #353D60;
    text-transform: uppercase;
}
.process__subtitle {
    display: block;
    font-family: "Josefin Slab";
    font-size: 17px;
    color: #353D60;
    margin-top: 15px;
    line-height: 1.5;
}

@media (min-width: 768px) {
  .process {
    display: inline-block;
  }
  .process__item {
    width: 49%;
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .process {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .process__item {
    width: 100%;
  }
  .process__item:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 75%;
    background: #8c8c8c;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.2;
    transform: translateY(-50%);
  }
  
  
  
}

.category .main-card:hover .content-header h3{
    color:#fff;
}


.destination_address {
    position: relative;
    padding: 50px;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    z-index: 0;
}

.destination_address::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 C300,100 900,0 1200,100 L1200,120 L0,120 Z" fill="%23002359"/></svg>') no-repeat bottom center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}



    
    .footer-address {
        display:flex;
        gap:15px;
        margin-bottom:20px;
    }
    
    .destination_address h3 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 22px;
        color: #002359;
    }
    
    .addr-info{
        font-size:1.4rem;
    }
    
    .footer-address span {
    background: #353d61;
    height: 40px;
    width: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 10px;
}

    .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    }
    
    .img-radius{
        border-radius:10px;
    }
      .custom-check::before {
        content: "\f560";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        /* margin-right: 8px; */
        color: #ffffff;
        position: absolute;
        left: -47px;
        background: #353a61;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        display: grid;
        place-items: center;
    }
    
    .custom-check {
    position: relative;
    margin-left: 50px;
    margin-bottom:15px;
}

@media(min-width:768px){
    .h-title{
        width:70%;
    }
}

.process {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
.process__item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    position: relative;
    padding: 10px 23px;
    transition: 0.4s ease-in-out;
}
.process__item:hover {
  background: #f2f2f2;
}
.process__item:hover .process__number {
  transform: translateY(5px);
  color: #353D60;
}
.process__number {
  font-size: 90px;
  -webkit-text-stroke: 1px #003c71;
  display: block;
  color: transparent;
  font-family: "Roboto Condensed";
  font-weight: 700;
  transition: 0.4s ease-in-out;
}
.process__title {
    display: block;
    font-family: "Roboto Condensed";
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 23px;
    color: #353D60;
    text-transform: uppercase;
}
.process__subtitle {
    display: block;
    font-family: "Josefin Slab";
    font-size: 17px;
    color: #353D60;
    margin-top: 15px;
    line-height: 1.5;
}


.h-head{
    display:flex;
    gap:10px
}

.enquiry-section p{
    margin-bottom:5px !important;
    font-weight:bold;
}

.h-head a:hover{
    color:#fff;
    text-decoration:underline;
}

.h-whatsapp{
    background:#1daa61;
    color:#fff;
    padding:8px 15px;
    display:inline-block;
    border-radius:5px;
}

.h-call{
    background:var(--primary-color);
    color:#fff;
    padding:8px 15px;
    display:inline-block;
    border-radius:5px
}

/*.enquiry-section {*/
/*    position: absolute;*/
/*    bottom: 45px;*/
/*}*/

.inner.enquiry-section{
    position:unset;
    margin-top:20px;
}

.inner .h-head{
    justify-content:center;
}




@media (min-width: 768px) {
  .process {
    display: inline-block;
  }
  .process__item {
    width: 49%;
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .process {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .process__item {
    width: 100%;
  }
  .process__item:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 75%;
    background: #8c8c8c;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.2;
    transform: translateY(-50%);
  }
  
  
  
}

.category .main-card:hover .content-header h3{
    color:#fff;
}

.destination_list .main-card{
    background:#fff;
    padding:10px;
    box-shadow:0 6px 6px #e7e7e7;
    height:100%;
}

.destination_list .main-card h3 {
    margin-top: 15px;
    text-align: center;
    font-size: 1.8rem;
}


.banner-slider {
    position: relative;
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    padding: 100px 0;

}
@media (max-width: 991px) {
    .banner-slider {
        background: #f8f9fa; /* Replace with actual value of $__light__vampire */
        padding: 70px 0;
    }
    .banner-slider .home-banner h1{
        font-size:2.8rem !important;
    }
    .destination_address h3 {
    font-size: 1.9rem;

    }
    .addr-info {
    font-size: 1rem;
}
}
@media (max-width: 479px) {
    .banner-slider {
        padding: 50px 0;
    }
}

.banner-slider .home-banner h1 {
    letter-spacing: -0.02em;
    margin: 0 0 10px 0;
    font-weight: 700; 
    color: #333; 
    font-size:4.1rem;
    -webkit-text-stroke: 1px #003c71;
    color: transparent;
}


.banner-slider .home-banner h1 span {
    color: #353d60;

    font-weight: 700;
}

.banner-slider .home-banner .banner-imgs img {
    position: relative;
    z-index: 99;
}



.lets-talk {
    position: relative;
    display: block;
    background-color: #353a61;
    overflow: hidden;
    z-index: 1;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lets-talk__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .2;
    z-index: -1;
}

.lets-talk__bg video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.lets-talk__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lets-talk__title {
  position: relative;
  display: block;
}

.lets-talk__title p {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 20px;
}

.lets-talk__title h2 {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 17px;
  color:#fff;
}

.lets-talk__btn-boxes {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.lets-talk__btn-1 {
  position: relative;
  display: block;
}

.lets-talk__btn-1 .thm-btn {
  background-color: #fff;
}

.lets-talk__btn-2 {
  position: relative;
  display: block;
}

.lets-talk__btn-2 .thm-btn {
  background-color: #21c063;
  color: #fff;
}

.lets-talk__btn-2 .thm-btn::after {
  background-color: #fff;
}

.lets-talk__btn-2 .thm-btn:hover {
  color: #000;
}

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    color: var(--gorent-black);
    background-color: var(--gorent-base);
    padding: 13px 30px 13px;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}

.thm-btn:hover {
    color: #fff;
}

.thm-btn::after {
    content: "";
    background-color:var(--primary-color);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.thm-btn:hover:after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.lets-talk {
    position: relative;
    overflow: hidden;
}

.lets-talk__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.whatsapp-icon {
    position: fixed;
    right: 6%;
    bottom: -2.5%;
    z-index: 99999;
}
.eiGYSu,
.jWcIXO {
    position: relative;
}
.eiGYSu {
    display: flex;
    margin: 7px;
    -webkit-box-pack: end;
    justify-content: flex-end;
    max-height: 50px;
}
.jWcIXO {
    flex-shrink: 0;
    width: 50px;
    order: 2;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 6px;
    transition: 0.5s;
    z-index: 200;
    display: block;
    border: 0;
    background-color: #4dc247 !important;
}
.q8c6tt-2.eiGYSu {
    bottom: 55px !important;
}
b,
strong {
    font-weight: 600;
}
#CDSWIDFRR.cx_brand_refresh .widFRRImages img {
    width: 120px;
    padding: 4px 0;
    height: auto !important;
}

/*.navbar-nav .dropdown-menu {*/
/*    position: absolute;*/
/*    z-index: 9999;*/
/*    width:100%;*/
/*}*/


.number-section{
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-position:center;
    background-size:cover;
    background-attachment: fixed;
    position:relative;
}

.number-section:before{
    position:absolute;
    content:"";
    height:100%;
    width:100%;
    left:0;
    top:0;
    background:#1b2347;
    opacity:0.6;
}

.number-section h2 {
    color: #fff;
    position: relative;
    font-size: 39px;
    font-weight: 600;
}

.number-rent {
    position: relative;
}

.number-wrapper {
    background: #b2c3ff30;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    border:1px solid #fff;
}

.number-wrapper h3{
    font-size:30px;
    font-weight:700;
    color:#fe9307;
}

.number-wrapper p{
    font-size:18px;
    font-weight:600;
    color:#fff;
}

@media (max-width: 991px) {
    .banner-slider .home-banner .banner-imgs img {
        display: none;
    }
}

.banner-slider .home-banner .explore-text {
    color: #888;
    padding: 15px;
    background: #fff;
    border-radius: 70px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 6px 6px #d1d1d1;
}
@media (max-width: 991px) {
    .banner-slider .home-banner .explore-text {
        padding: 10px 15px;
    }
}
.banner-slider .home-banner .explore-text span {
    color: #003c71; /* Replace with $__golden__yellow */
}
.banner-slider .home-banner .explore-text span i {
    font-weight: 600; /* Replace with $__semibold */
}

.banner-slider p {
    margin: 0 0 30px 0;
}


.modal-content{
    background:#fff;
}



.table-wrapper {
    background: #ffac4012;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 7px #b2b2b2;
    margin-top: 30px;
}

.modal-content tbody, .modal-content td, .modal-content tfoot, .modal-content th, .modal-content thead, .modal-content tr {
    border-color: inherit;
    border-style: solid;
    border: 1px solid #000;
}


 .about-section {
        padding: 70px 0;
        position: relative;
        overflow: hidden;
    }

    section.about-section .section-badge {
        display: inline-block;
        color: var(--brand-color);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        position: relative;
        padding-left: 60px;
    }

   section.about-section .section-badge::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: var(--brand-color);
    }

    .section-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-title .highlight {
        color: var(--brand-color);
        position: relative;
    }

    .about-description {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.9;
        margin-bottom: 2rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

    .feature-list li {
        padding: 1rem 0;
        color: #555;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .feature-list li:hover {
        padding-left: 10px;
        color: var(--brand-color);
    }

    .feature-list li:last-child {
        border-bottom: none;
    }

    .feature-list li i {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
        color: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .feature-list li:hover i {
        transform: scale(1.1) rotate(5deg);
    }

    .btn-custom {
        background: var(--brand-color);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(53, 61, 96, 0.2);
    }

    .btn-custom:hover {
        background: var(--brand-light);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(53, 61, 96, 0.3);
        color: white;
    }

    .image-wrapper {
        position: relative;
        height: 600px;
    }

    .main-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .main-image:hover img {
        transform: scale(1.05);
    }

    .image-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border: 20px solid var(--brand-color);
        border-radius: 30px;
        z-index: 1;
    }

    .decoration-1 {
        top: -30px;
        right: -30px;
        opacity: 0.3;
    }

    .decoration-2 {
        bottom: -30px;
        left: -30px;
        opacity: 0.2;
        border-color: var(--brand-light);
    }

    .stats-box {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        z-index: 3;
        min-width: 200px;
    }

    .stats-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--brand-color);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stats-label {
        color: #666;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .experience-badge {
        position: absolute;
        top: 30px;
        left: -50px;
        background: var(--brand-color);
        color: white;
        padding: 1.5rem 2rem;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(53, 61, 96, 0.3);
        z-index: 3;
        text-align: center;
    }

    .experience-badge .number {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    @media (max-width: 991px) {
        .section-title {
            font-size: 2.5rem;
        }

        .image-wrapper {
            height: 500px;
            margin-top: 3rem;
        }

        .experience-badge {
            left: 20px;
            top: 20px;
        }

        .stats-box {
            right: 20px;
            bottom: 20px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 2rem;
        }

        .image-wrapper {
            height: 400px;
        }

        .decoration-1, .decoration-2 {
            display: none;
        }
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
    /*number section start */
     :root {
        --brand-color: #353d60;
        --brand-light: #4a5578;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .vecal-section {
        position: relative;
        padding: 100px 0;
        background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600&h=900&fit=crop');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        overflow: hidden;
    }

    .vecal-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(53, 61, 96, 0.95) 0%, rgba(53, 61, 96, 0.85) 100%);
        z-index: 1;
    }

    .vecal-section .container {
        position: relative;
        z-index: 2;
    }

   .vecal-section .section-badge {
        display: inline-block;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .vecal-section .section-title {
        font-size: 3rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

   .vecal-section .section-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 15px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .stat-card:hover::before {
        opacity: 1;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        background: white;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--brand-color);
        font-size: 1.3rem;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .stat-card:hover .stat-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        font-weight: 500;
        position: relative;
        z-index: 1;
    }

   .vecal-section .btn-custom {
        background: white;
        color: var(--brand-color);
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        margin-top: 1rem;
    }

   .vecal-section .btn-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        color: var(--brand-color);
        background: #f8f9fa;
    }

    @media (max-width: 991px) {
       .vecal-section .section-title {
            font-size: 2.5rem;
        }

        .stats-grid {
            margin-top: 3rem;
        }
    }

    @media (max-width: 767px) {
       .vecal-section .section-title {
            font-size: 2rem;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .about-section {
            padding: 60px 0;
        }
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .decorative-line {
        width: 80px;
        height: 4px;
        background: white;
        margin-bottom: 2rem;
        border-radius: 2px;
    }
    
    
    
    .rental-fleet{
        background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    }
    
    .rental-fleet img{
        height:250px;
        width:100%;
        object-fit:cover;
    }
    
    .rental-fleet-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid var(--primary-color);
    }
    
    .rental-fleet-box p{
        margin-bottom:0;
    }
    .rental-fleet-content{
        padding:15px;
    }
    
    .quote-wrapper .form-control, .quote-wrapper .form-select{
        border-radius:0;
        color:#676767;
    }
    
    .quote-wrapper button {
    background-color: #fff;
    color: var(--primary-color);
    padding: 11px 40px;
    outline: none;
    border: none;
    }
    
    .quote-wrapper button:hover{
        background-color:#fff;
        box-shadow:0 0 10px #000;
        color:var(--primary-color);
    }


@media (max-width: 991px) {
    .banner-slider p {
        font-size: 14px; /* Replace with $__font__size__14 */
    }
}

.banner-imgs {
  position: relative;
  animation: slideLeftRight 3s ease-in-out infinite ;
}

@keyframes slideLeftRight {
0% {
    transform: translateX(0);
}
50% {
    transform: translateX(-40px);
}
100% {
    transform: translateX(0);
}
}

@media (max-width: 767px) {
    
    .dropdown-submenu svg{
        display:none;
    }
    
    .single-banner-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    width: 100%;
    height: 100%;
    clip-path: unset;
}
.sliderContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
    .single-banner-slide h2, .single-banner-slide h1 {
  
    font-size: 33px;
    margin-bottom: 12px;
    margin-top: 8px;

}
.single-banner-slide a {
    color: #000;
    background: #fff;
    padding: 10px 19px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    transition: 0.3s;
}



.single-banner-slide {
    height: 35vh;
}

    
    
    .padding {
    padding: 50px 0;
}
.img_Two img {

    display: none;
}
    .imgOne img {
        margin-top: 29px;
        border-radius: 20px;
        width: 100%;
        min-height: unset;
        max-height: unset;
        /* object-fit: contain; */
        object-position: center;
        height: 385px;
    }


section.info {
    padding-bottom: 50px;
}
    .main-btn {
        font-size: 13px;
        padding: 10px 29px;
    }
    .site-header {
        margin-bottom: 17px;
    }
    .site-header h2 {
   
    margin-bottom: unset;
    font-size: 27px;
    line-height: 37px;
}
.subHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  
}
.subHeading h3 {
    font-weight: 500;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #353d60;
    color: #353d60;
    margin-bottom: 12px;
}
    .bottom-footer {
        margin-bottom: 47px;
        flex-direction: column;
    }
        .social-link {
        
        margin-top: 10px;
    }
    .footer-link li:not(:last-child) {
  
    font-weight: 300;
}
.footer-link a {
   
    font-weight: 300;
}
.site-header h3 {
    font-size: 24px;
    line-height: 36px;
}
section.feedback {
    text-align: center;
}
.subHeading a {
 
    padding: 8px 34px;

    font-size: 13px;
}
.content-header h3 {
   
    line-height: 26px;
    height: unset;
}
.blog .main-card img {
    height: unset;
  
   
}
    .category .main-card {
        padding: 21px;
    }
    
    .process .content-header{
        padding-top:0 !important;
    }
    .feedback .main-card{
       min-height:auto;
    }
    .hero-banner .text-content h1 {
    color: #fff;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -0.005em;
    font-size: 45px;
    margin-bottom: 30px;
}
.hero-banner .text-content .input-group {
   
    width: 90%;
}
table{
    width:100% !important;
}
.contact-wrapper {
    border-radius: 15px;
    padding: 18px;
}
div#rentedYour .supportBtn {
    min-width: 216px;
    padding: 12px;
    width: 100%;
}
div#rentedYour label.form-label {
    margin-bottom: 6px;
}



div#rentedYour label.form-label {
    font-size: 13px;
}

div#rentedYour input {
    font-size: 12px;
}

div#rentedYour select#vtype {
    font-size: 12px;
}


div#rentedYour h1.text-white {
    font-size: 27px;
}
.enquiry-section {
    position:unset;
    margin-top: 0;
}
    
}






@media (max-width: 992px) {
    .category .main-card {
        padding: 7px;
    }
    .main-btn {
    font-size: 13px;
    padding: 10px;
}
    .process .icon-box {
        height: 100px;
        width: 100px;
        margin-right: 0;
    }
    .main-card {
 
    margin-bottom: 24px;
}
.bottom-footer {

    margin-bottom: 47px;
}

    .img_Two img{
    position:unset !important;
}

.whatsapp-icon{
    display:none;
}
.lets-talk__title {
    margin-bottom: 20px;
}
.lets-talk__title h2 {
    font-size: 30px;
}

}




/*testimonial start */

  :root {
            --brand-color: #353a60;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }
        
        .testimonial-section {
            padding: 80px 0;
            background: #edeef3;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            color: var(--brand-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--brand-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            margin-top: 25px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 35px 30px;
            margin: 15px;
            box-shadow: 0 10px 30px rgba(53, 58, 96, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(53, 58, 96, 0.08);
            margin-bottom: 30px;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(53, 58, 96, 0.15);
        }
        
        .quote-icon {
            color: var(--brand-color);
            font-size: 2.5rem;
            opacity: 0.15;
            position: absolute;
            top: 20px;
            right: 25px;
        }
        
        .customer-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: block;
            border: 4px solid var(--brand-color);
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(53, 58, 96, 0.2);
        }
        
        .customer-name {
            color: var(--brand-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-align: center;
        }
        
        .customer-location {
            color: #6c757d;
            font-size: 0.95rem;
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .customer-location i {
            color: var(--brand-color);
        }
        
        .review-text {
            color: #495057;
            font-size: 1rem;
            line-height: 1.7;
            text-align: center;
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .rating {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .rating i {
            color: #ffc107;
            font-size: 1rem;
        }
        
        /* Owl Carousel Custom Dots */
        .owl-theme .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            margin: 5px 7px;
            background: #d6d6d6;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            background: var(--brand-color);
            width: 30px;
            border-radius: 10px;
        }
        
        .owl-theme .owl-dots {
            margin-top: 40px;
        }
        img.customer-photo {
    min-width: 80px;
    max-width: 80px;
}
svg.svg-inline--fa.fa-star {
    fill: #e55754;
    color: #e55754;
}
a.testBtn {
    background: #353d61;
    color: white;
    padding: 11px 35px;
    display: inline-block;
    border-radius: 50px;
}
.testBtnWrap {
    display: flex;
    justify-content: end;
}
a.bgDarkBtn {
    background: #ca7b18;
    padding: 15px 30px;
}
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .testimonial-card {
                margin: 10px;
            }
        }





