@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --heading-color: #0D1821;
    --primary-color:#974b20;
    --body-color:#0D1821;
    --white-color:#ffffff;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

body{
    font-family: "Marcellus", serif;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

p{
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color:var(--body-color);
}

h1, h2, h3, h4, h5 {
    font-family: "Marcellus", serif;
}

h1, h2{
    font-weight: 600;
}

.fa-phone{
    transform: rotate(90deg);
}

.bg-light{
    background-color: #fff3ed !important;
}

/*** Button Start ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.pay-btn{
    font-size: 17px;
}

.pay-btn:hover{
	color:var(--primary-color) !important;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn-primary {
    box-shadow: inset 0 0 0 0 var(--primary-color);
    background-color:var(--primary-color);
    border-color: var(--primary-color);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--white-color);
    border-color: var(--primary-color);
	background-color: var(--primary-color);
}

.bg-primary{
    background-color: var(--primary-color) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

.btn-primary:focus{
	background-color:var(--primary-color);
	border-color: var(--primary-color);
	box-shadow:unset;
}

.view-more{
    text-align: center;
    margin-top: 50px;
}

.view-more .view-more_btn{
	background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--white-color);
	transition:all .1s linear;
}

.view-more .view-more_btn:hover {
    background: #fff;
    box-shadow: 0px 5px 10px rgba(68, 12, 6, 0.14) !important;
    color: var(--primary-color);
	border:2px solid var(--primary-color);
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--primary-color) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--primary-color) !important;
}

/*** Header Start ***/
.header{
    background-color: rgba(248,249,250,1);
}
.header-top{
    border-bottom: 1px solid #d4d6d9;
}
.header-top a{
    font-size: 14px;
    color: #2B2929;
}
/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar{
	padding-top: 0;
    padding-bottom: 0;
}

.navbar-light .navbar-nav .nav-link {
    font-family: "Marcellus", serif;
    position: relative;
    padding: 30px 15px;
    color: var(--heading-color) !important;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 70px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item:hover .dropdown-menu .dropdown-item{
    padding: 8px 16px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

    .navbar.navbar-expand-lg .navbar-toggler:focus{
         box-shadow: unset;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--primary-color) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 55px;
    }
}

@media (min-width: 992px) {
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    /*min-height: 100vh*/ 
}

.carousel-header .carousel-inner .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 400px;
        margin-top: 0px;
    }

    .carousel-header {
        height: 400px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** breadcrumb ***/
.breadcrumb_area {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 135px 0;
	position:relative;
}

.breadcrumb_area:after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.breadcrumb_area .breadcrumb-item a {
    color: var(--white-color) !important;
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

.breadcrumb_area .title{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-family: "Marcellus", serif;
	position: relative;
    z-index: 10;
}

.breadcrumb-item{
	position: relative;
    z-index: 10;
}
/*** breadcrumb ***/


/*** About Start ***/
.about{
    padding-top: 70px;
    padding-bottom: 70px;
}
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}
.about .section-title::after {
    content:unset;
}
.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--primary-color) !important;
}
.about .about_img{
    position: relative;
    padding-right: 30px;
}
.about .about_img .wel_img{
    position: absolute;
    right: 0px;
    top: 100px;
}
.about .about_img .wel_img img{
    border-radius: 100%;
    width: 190px;
    height: 190px;
}
.about h1{
    font-weight: 600;
}
.about img{
    border: 3px solid var(--primary-color);
    border-radius: 16px;
}
.about .about_content{
    padding-left: 40px;
}

/*** About End ***/

/*** Destination Start ***/
.destination{
    padding: 60px 0;
}

.destination .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .destination-img:before{
    content:"";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background:linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),   
    rgba(0, 0, 0, 0.7),  
    rgba(0, 0, 0, 0)     
  );
}

.destination .destination-img .destination-overlay {
    position: absolute;
    bottom: 0%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .destination-img img {
    transition: 0.5s;
}

.destination .destination-img:hover img {
    transform: scale(1.2);
}

.destination .destination-title a{
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    font-family: "Marcellus", serif;
    letter-spacing: 0.5px;
}

.destination .destination-overlay .btn-view-all{
    color: var(--white-color);
    font-size: 14px;
}
/*** Destination End ***/


/*** Packages Start ***/
.packages{
    padding: 60px 0;
    background-color: #fff3ed;
}
.heading-box h1{
    font-weight: 600;
}
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(151,75,32, 0.6) rgba(151,75,32, 0.6) rgba(151,75,32, 0.6) rgba(151,75,32, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-time {
    position: absolute;
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--primary-color);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
    padding: 5px 11px;
    font-weight: 600;
}

.packages .packages-item .packages-content{
    padding: 20px 16px;
    background-color: var(--white-color);
}

.packages .packages-item .packages-content .packages-title h3 a{
    font-size: 20px;
    font-weight: 600;
    color: var(--body-color);
    font-family: "Marcellus", serif;
}

.packages .packages-item .packages-content .packages-title .pkg_destinations{
    color: var(--body-color);
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 8px 0;
    height: 65px;
}

.packages .packages-item .packages-content .packages-title .title_label{
    color: var(--primary-color);
}

.packages .packages-item .packages-content .action-btn{
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.packages .packages-item .packages-content .action-btn .btn-primary{
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 14px;
}

.packages .packages-item .packages-content .action-btn .btn-primary i{
    margin-right: 8px;
}

.packages .packages-item .packages-content .action-btn .btn-call i{
    transform: rotate(90deg);
}

.packages .packages-item .packages-content .action-btn .btn-primary:hover{
    background: var(--primary-color);
}

.packages .packages-item .packages-content .action-btn .btn-primary:focus{
	background-color:var(--primary-color);
	border-color:var(--primary-color);
	box-shadow:unset;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--primary-color);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--primary-color);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Our Cars Start ***/
.our-cars{
    padding: 60px 0 20px;
}

.our-cars .car-item__box{
    text-align: center;
    background: #fff3ed;
    border-radius: 13px;
    padding: 16px;
    margin-bottom: 25px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.our-cars .car-item__box .car_img{
    margin-bottom: 10px;
}

.our-cars .car-item__box .car_img img{
    width: 250px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.our-cars .car-item__box .car_detail{
    padding-bottom: 20px;
}

.our-cars .car-item__box .car_detail h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--body-color);
    font-family: "Marcellus", serif;
}

.our-cars .car-item__box .car_detail .action-btn{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.car-item__box .car_detail .action-btn .btn-primary{
    padding: 6px 20px;
    border-radius: 5px;
    font-size: 14px; 
}

.car-item__box .car_detail .action-btn .btn-primary:hover{
    background-color: var(--primary-color);
}

.car-item__box .car_detail .action-btn .btn-primary:focus{
	background-color: var(--primary-color);
	border-color:var(--primary-color);
	box-shadow:unset;
}

.car-item__box .car_detail .action-btn .btn-call i {
    transform: rotate(90deg);
}

.car-item__box .car_detail .action-btn .btn-primary i {
    margin-right: 8px;
}

/*** Gallery Start ***/
.gallery{
    padding: 60px 0;
    background: #fff3ed;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
}

.gallery .gallery-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
}

.gallery .gallery-carousel .owl-nav .owl-prev i,
.gallery .gallery-carousel .owl-nav .owl-next i {
    color: var(--primary-color);
    font-size: 17px;
    transition: 0.5s;
}

.gallery .gallery-carousel .owl-nav .owl-prev:hover,
.gallery .gallery-carousel .owl-nav .owl-next:hover {
    background: var(--primary-color);
}

.gallery .gallery-carousel .owl-nav .owl-prev:hover i,
.gallery .gallery-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial{
    padding: 60px 0;
}

.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-comment p{
   display: -webkit-box;
  -webkit-line-clamp: 4;      
  -webkit-box-orient: vertical;
  overflow: hidden; 
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--primary-color); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--primary-color);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--primary-color);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary-color);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--primary-color) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment p{
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}

.testimonial-info h5{
    font-size: 18px;
    color: var(--body-color);
    font-family: "Marcellus", serif;
}

testimonial-rating{
    display: flex;
    align-items: center;
    gap:10px;
}

.testimonial-rating i{
    color: #fec42d;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--primary-color) !important;
}
/*** Contact End ***/


/*** About Page Start ***/
.about__area{
    padding: 60px 0;
}

.about__area .about-img{
    border: 2px dotted var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 8px;
}

.about__area .about-img img{
    border-radius: 8px;
}

.about__area .about-content{
   padding-left: 50px;
   text-align: justify;
}

.about__area .about-content .section-title::after{
   content:unset;
}

.about__area .about-content h1{
   font-weight: 600;
   margin-bottom: 20px;
}

.why-choose{
    padding: 60px 0;
}

.choose-card{
    background: var(--white-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
}

.choose-card .icon{
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 100%;
}

.choose-card .icon i{
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 22px;
}

.choose-card .choose-content h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--body-color);
    margin-top: 20px;
}

.mb25{
    margin-bottom: 25px;
}

.owner_section{
    padding: 60px 0;
}

.owner_section .section-title::after{
   content:unset;
}

.owner_section .heading{
   font-weight: 600;
   margin-bottom: 20px;
}

.owner_section .owner_info{
    padding-right: 50px;
    text-align: justify;
}

.owner_section .owner_img{
    border: 2px dotted var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 8px;
}

/*** Review Page Start ***/
.reviews__area{
   padding: 60px 0;
}

.google-review-card {
    background:#f6f6f8;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user {
    flex-grow: 1;
    margin-left: 10px;
}

.review-user h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.review-user span {
    color: #777;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
}

.google-icon {
    width: 25px;
}

.review-stars {
    margin-top: 8px;
    font-size: 18px;
    color: #fbbc04;
}

.review-stars ul{
    list-style: none;
    display: flex;
    gap: 5px;
    padding-left: 0;
    margin-bottom: 8px;
}

.review-stars ul li i{
    font-size: 15px;
}

.review-text {
    color: var(--body-color);
}

.read-more {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
}

.read-more:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/*** Contact Page Start ***/
.contact__area{
    padding: 60px 0;
}

.contact__area .contact-info{
    background: #fff3ed;
}

.contact__area .contact-info .contact-box{
    padding: 25px;
}

.border-botm{
    border-bottom: 1px solid #ddd;
}

.contact__area .contact-info .contact-box i{
    color: var(--primary-color);
}

.contact__area .form-area{
    padding-left: 20px;
}

.contact__area .form-area .form-control{
    background: #fff3ed;
    border: 1px solid var(--primary-color) !important;
}

.contact__area .form-area .form-control:focus{
	box-shadow:unset;
}

/** Payments Page  **/
.payments__area{
    padding: 60px 0;
}

.payments__area .payment-box{
    background-color: #fff3ed;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
}

.payments__area .payment-box ul{
	padding-left: 0;
    list-style: none;
}

.payments__area .payment-box ul li{
	text-align: center;
    font-size: 18px;
    color: var(--body-color);
	margin-bottom: 10px;
}

.payments__area .payment-box .payment-title h3{
    text-align: center;
    font-size: 20px;
    font-weight: 600; 
    color: var(--primary-color);
    margin-bottom: 30px;
}

.payments__area .payment-box .payment-detail span{
    display: block;
    text-align: center;
    font-size: 18px;
    color: var(--body-color);
    margin-bottom: 10px;
}

.payments__area .payment-detail .payment_qr_img img{
    width: 100%;
    height: 100%;
}

/** detail **/
.detail__area{
    padding: 60px 0;
}

.detail__area .detail__box .img-div{
    margin-bottom: 25px;
}

.detail__area .detail__box .img-div img{
    width: 100%;
    max-width: 100%;
}

.detail__area .detail__box h4{
    margin: 30px 0;
}

.taxi_wrap h2{
	font-size: 24px;
    margin-bottom: 20px;
}

.taxi_options{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    column-gap: 20px;
}

.taxi_options .taxi-item{
	text-align: center;
}

.taxi_options .taxi-item .img-box img{
	width: 230px;
}

.taxi_options .taxi-item h3{
	font-size: 20px;
    font-weight: 600;
    color: var(--body-color);
	margin-top:20px;
}

.get_in_touch{
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    border-radius: 15px;
    padding: 25px 40px;
    margin-left: 25px;
}

.get_in_touch h3{
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
}

.get_in_touch p{
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 13px;
}

.get_in_touch .call{
    border-bottom: 1px solid #ddd;
    padding-bottom: 13px;
}

.get_in_touch .call a, .get_in_touch .email a{
    color: var(--body-color);
}

.get_in_touch .call a i{
    transform: rotate(90deg);
    margin-right: 5px;
}

.get_in_touch .email{
    padding-top: 13px;
    padding-bottom: 13px;
}

.get_in_touch .email a i{
    margin-right: 5px;
}

.contact-action__btn{
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:15px;
}

.contact-action__btn .action-btn{
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    text-align: center;
}

.contact-action__btn .action-btn i{
    margin-right: 5px;
}

.widget-box{
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.widget-box ul{
    list-style: none;
    display: flex;
    gap: 25px;
    padding-left: 0;
}

.widget-box ul li{
    color: var(--body-color);
}

.widget-box ul li i{
    margin-right: 8px;
}

.description h5{
    font-size: 18px;
    font-weight: 600;
    color: var(--body-color);
    margin-bottom: 16px;
}

.car-rental{
	padding:60px 0;
}

.car-rental .car-rervices__box{
	position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.car-rental .car-rervices__box:before{
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.car-rental .car-rervices__box img {
    transition: 0.5s;
}

.car-rental .car-rervices__box:hover img {
    transform: scale(1.1);
}

.car-rental .car-rervices__box .car-rervices__overlay {
    position: absolute;
    bottom: 0%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.car-rental .car-rervices__box .title a {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    font-family: "Marcellus", serif;
    letter-spacing: 0.5px;
}

.car-rental .car-rervices__box .car-rervices__overlay .btn-view-all {
    color: var(--white-color);
    font-size: 14px;
}

/*** Footer Start ***/
.footer {
    background: var(--primary-color);
    padding: 60px 0 90px;
}
.footer-item .f_title{
    font-size: 20px;
    font-weight: 600;
    font-family: "Marcellus", serif;
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    color: #eee;
}

.footer .footer-item .call{
    transform: rotate(90deg);
}

.f_desti{
    margin-left: 50px;
}

.footer .about_text{
    color: var(--white-color);
    font-size: 16px;
    font-family: "Marcellus", serif;
}

.footer_logo{
    width: 200px;
    max-width: 100%;
    margin-bottom: 20px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #7b3a15;
}
.copyright p{
    margin-bottom: 0;
    padding: 16px 0;
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
}
/*** copyright end ***/