@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0
}

:root {
    --primary--: #9D74B0;
    --secondary--: #A7713F;
}

a {
    text-decoration: none;
    line-height: 1;
    color: #000;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

html {
    scroll-padding: 64px
}

body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Philosopher", sans-serif;
    color: #000;
}

p {
    font-size: 18px;
    margin: 0;
    color: #000;
}

section {
    overflow: hidden
}

.preloader_sec{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    background: #fff;
}

.preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.tractor {
  font-size: 4rem;
  animation: move 2s infinite linear;
}

.loading-text {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #4c9141;
  font-weight: bold;
}

@keyframes move {
  0% {
    transform: translateX(-50px);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(-50px);
  }
}

header{
    display: flex;
    justify-content: space-between;
    padding: 10px 5%;
    align-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    /* background: #fff; */
    background: #00000057;
    transition: 0.3s;
}

header.active{
    background: #fff;
}

header .header_bg{
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: translateY(-30%);
}

header nav ul{
    display: flex;
    gap: 30px;
}

header nav ul li a{
    font-size: 20px;
    font-weight: 500;
    position: relative;
    /* padding: 10px 20px; */
    z-index: 2;
    /* color: #000; */
    color: #fff;
    transition: 0.5s ease-in-out;
}

header.active nav ul li a{
    color: #000;
}

header nav ul li a:hover{
    color: var(--primary--);
}

/* header nav ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--secondary--);
    z-index: -1;
    border-radius: 5px;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}

header nav ul li a:hover::before{
    transform: scale(1);
} */

header .logo h1{
    font-weight: 800;
    color: #fff;
    transition: 0.3s;
}

header.active .logo h1{
    color: var(--primary--);
}

header .logo h1 a{
    /* color: var(--primary--); */
    color: #fff;
    transition: 0.3s;
}

header.active .logo h1 a{
    color: var(--primary--);
}

header .menu_btn {
    display: none
}

header .menu_btn i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

header.active .menu_btn i{
    color: var(--primary--);
}

.about_img_sec .about_img_1{
    border-radius: 50%;
    overflow: hidden;
    /* border: 10px solid var(--secondary--); */
}

.about_img_sec .about_img_2{
    width: 50%;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--primary--);
    margin-top: -40%;
    z-index: 2;
    position: relative;
}

.heading h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--primary--);
}

.about_us_bg{
    position: relative;
    z-index: 2;
}

.about_us_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/about_us_bg.avif);
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
}

.why_choose_bg{
    position: relative;
}

.why_choose_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/leaf_img.avif) no-repeat;
    background-size: contain;
    background-position: right bottom;
    filter: grayscale(100%);
    webkit-filter: grayscale(100%);
    z-index: -1;
    opacity: 0.1;
}

.why_choose_bg.bg_left::before{
    transform: rotateY(180deg);
}

.why_choose_flex{
    display: flex;
    gap: 10px;
    border-radius: 120px 0 120px 0;
    overflow: hidden;
}

.why_choose_flex > div{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why_choose_card{
    position: relative;
    z-index: 2;
    padding: 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why_choose_card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: #000;
    opacity: 0.6;
}

.why_choose_card::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    background: var(--bg-img--);
    background-size: cover;
}

.why_choose_card h3{
    font-size: 24px;
    color: #fff;
}

.why_choose_card p{
    color: #fff;
}

.get_btn{
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary--);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid var(--secondary--);
    transition: 0.3s ease-in-out;
}

.get_btn:hover{
    background: none;
    color: var(--secondary--);
}

.get_btn.bg_white{
    background: #fff;
    color: var(--primary--);
    border: 1px solid #fff;
}

.get_btn.bg_white:hover{
    color: #fff;
    background: none;
}

.bg_secondary{
    background: var(--primary--);
}

.border_1{
    background: #fff;
}

.visit_tourist_card{
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    height: 100%;
}

.visit_tourist_card img{
    border-radius: 10px;
    margin-bottom: 10px;
}

.visit_tourist_card h3{
    font-size: 20px;
    font-weight: 600;
}

.visit_tourist_slider{
    position: relative;
}

.visit_tourist_slider .slick-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary--);
    color: #fff;
    z-index: 2;
    border: 3px solid var(--primary--);
    transition: 0.3s;
    top: 50%;
}

.visit_tourist_slider .slick-arrow.slick-disabled {
    visibility: hidden
}

.visit_tourist_slider .slick-arrow.slick-next {
    right: 0
}

.visit_tourist_slider .slick-arrow.slick-prev {
    left: 0
}

.visit_tourist_slider .slick-track {
    display: flex;
}

.visit_tourist_slider .slick-track > div{
    height: auto;
}

.bg_gateway{
    position: relative;
    z-index: 2;
}

.bg_gateway::before, .bg_gateway::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bg_gateway::before{
    /* background: var(--secondary--); */
    background: var(--primary--);
    z-index: -2;
}

.bg_gateway::after{
    background: url(../images/leaf_img_2.avif) no-repeat;
    background-size: contain;
    background-position: top left;
    z-index: -1;
    opacity: 0.3;
}

.mb_150{
    margin-bottom: -200px;
    position: relative;
    z-index: 4;
}

.pt_150{
    padding-top: 170px;
}

.bg_primary{
    background: #e7e7e7;
}

.border_2{
    background: #000;
}

.why_pali_slider{
    position: relative;
}

.why_pali_slider .slick-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary--);
    color: #fff;
    z-index: 2;
    border: 3px solid var(--primary--);
    transition: 0.3s;
    top: 50%;
}

.why_pali_slider .slick-arrow.slick-disabled {
    visibility: hidden
}

.why_pali_slider .slick-arrow.slick-next {
    right: 0
}

.why_pali_slider .slick-arrow.slick-prev {
    left: 0
}

.why_pali_card h3{
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.reach_card i{
    display: flex;
    width: 60px;
    height: 60px;
    background: var(--primary--);
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto;
}

.reach_card h3{
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.reach_card p{
    font-size: 16px;
}

.amenities_card{
    height: 100%;
    border: 1px solid #fff;
    padding: 20px 20px;
    border-radius: 20px;
}

.amenities_card .amenities_img{
    /* width: 80px;
    height: 80px; */
    /* border: 1px solid #fff; */
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 0 auto;
}

.amenities_card .amenities_img_new{
    width: 80px;
    height: 80px;
    /* border: 1px solid #fff; */
    /* padding: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 0 auto;
}

.amenities_card .amenities_img img{
    border-radius: 20px;
}

.amenities_card .amenities_img svg{
    fill: #fff !important;
    width: 90%;
    height: auto;
}

.amenities_card h3{
    color: #fff;
    margin-top: 15px;
    font-size: 28px;
    text-align: center;
}

.service_card {
    /* border: 1px solid var(--secondary--); */
    border: 1px solid var(--primary--);
    /* display: flex; */
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.service_card .service_img {
    /* width: 35% */
}

.service_card .service_detail {
    /* width: 65%; */
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.service_card .service_detail h3 {
    font-size: 24px;
    /* color: var(--secondary--); */
    color: #000;
    margin-bottom: 0
}

.service_card .service_detail p {
    font-size: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary--)
}

.service_card .service_detail ul {
    display: flex;
    flex-wrap: wrap
}

.service_card .service_detail ul li {
    width: 50%;
    font-size: 14px;
    margin-bottom: 10px;
    padding-right: 5px
}

.service_card .service_detail ul li i {
    /* color: var(--secondary--); */
    color: var(--primary--);
    margin-right: 5px
}

.service_card .service_detail ul li a {
    color: var(--secondary--);
    font-size: 14px
}

.service_card .service_detail .book_now a {
    padding: 10px 25px;
    /* border: 1px solid var(--secondary--); */
    border: 1px solid var(--primary--);
    float: right;
    border-radius: 50px;
    transition: 0.3s
}

.service_card .service_detail .book_now a:hover {
    /* background: var(--secondary--); */
    background: var(--primary--);
    color: #fff
}

.trek_card{
    /* background: var(--secondary--); */
    background: var(--primary--);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.trek_card .trek_card_content img{
    width: 80px;
}

.trek_card .trek_card_content h3{
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.trek_card .trek_card_img img{
    border-radius: 20px;
}

footer {
    background: var(--primary--);
    padding-top: 20px
}

footer .footer h2 {
    font-size: 20px;
    color: #ffffffb3;
    font-weight: 500
}

footer .footer ul {
    padding-left: 25px
}

footer .footer ul li {
    padding-bottom: 10px;
    position: relative;
    color: #ffffffb3
}

footer .footer ul li i {
    position: absolute;
    left: -25px;
    top: 4px;
    font-size: 18px;
    color: #fff;
}

footer .footer ul li a {
    font-size: 16px;
    transition: 0.3s;
    color: #ffffffb3
}

footer .footer ul li a:hover {
    color: #fff
}

footer .footer-1 ul {
    padding: 0
}

footer .footer-1 ul li {
    padding-bottom: 5px
}

footer .footer p {
    font-size: 14px;
    color: #ffffffb3
}

.bottom-footer p {
    font-size: 16px;
    padding-bottom: 15px
}


/* car animation */

.moving_car {
    position: relative;
    overflow: hidden
}

.new_svg {
    width: 100%;
    height: auto
}

.car {
    position: absolute;
    z-index: 10;
    -moz-animation: myfirst 20s linear infinite;
    -webkit-animation: myfirst 20s linear infinite;
    transform: scale(.8);
    bottom: 28%
}

@-moz-keyframes myfirst {
    0% {
        left: -10%
    }

    10.33%,20% {
        left: 10%
    }

    30.33%,40% {
        left: 30%
    }

    50.33%,60% {
        left: 50%
    }

    70.33%,80% {
        left: 65%
    }

    90.33%,100% {
        left: 85%
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -10%
    }

    10.33%,20% {
        left: 10%
    }

    30.33%,40% {
        left: 30%
    }

    50.33%,60% {
        left: 50%
    }

    70.33%,80% {
        left: 65%
    }

    90.33%,96% {
        left: 85%
    }

    100% {
        left: 101%
    }
}

.tyre {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3f3f40;
    position: absolute;
    z-index: 2;
    left: 9px;
    top: 20px;
    -moz-animation: tyre-rotate 1s infinite linear;
    -webkit-animation: tyre-rotate 1s infinite linear
}

.tyre_1 {
    opacity: 0;
    animation: tyre_rotate_none 20s infinite linear
}

@keyframes tyre_rotate_none {
    0% {
        opacity: 0
    }

    0%,10% {
        opacity: 0
    }

    15%,19% {
        opacity: 1
    }

    23.33%,29% {
        opacity: 0
    }

    33.33%,38% {
        opacity: 1
    }

    42.33%,50% {
        opacity: 0
    }

    54.33%,60% {
        opacity: 1
    }

    64.33%,70% {
        opacity: 0
    }

    74.33%,80% {
        opacity: 1
    }

    84.33%,90% {
        opacity: 0
    }

    94.33%,98% {
        opacity: 1
    }

    22.33%,100% {
        opacity: 0
    }
}

@-moz-keyframes tyre-rotate {
    from {
        -moz-transform: rotate(-360deg)
    }

    to {
        -moz-transform: rotate(0deg)
    }
}

@-webkit-keyframes tyre-rotate {
    from {
        -webkit-transform: rotate(-360deg)
    }

    to {
        -webkit-transform: rotate(0deg)
    }
}

.tyre:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #bdc2bd;
    position: absolute;
    top: 5px;
    left: 5px
}

.gap {
    background: #3f3f40;
    width: 2px;
    height: 4px;
    position: absolute;
    left: 14px;
    top: 8px;
    box-shadow: 0 9px 0 #3f3f40
}

.gap:before {
    content: '';
    display: block;
    width: 2px;
    height: 4px;
    position: absolute;
    background: #3f3f40;
    box-shadow: 0 12px 0 #3f3f40;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: 0 7px;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: 0 7px;
    z-index: 3
}

.car-base {
    position: absolute;
    display: block;
    width: 125px;
    height: 30px;
    background: #000;
    border-radius: 10% 10% 50% 50% / 60% 100% 20% 10%;
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    border: solid;
    border-color: #000
}

.back-bonet {
    background: #4c4b4b;
    border-radius: 54% 25% 0 0;
    height: 22px;
    left: 11px;
    position: absolute;
    top: 8px;
    width: 40px
}

.tyre.front {
    left: 94px
}

.car-body {
    border-bottom: 24px solid #d1352b;
    height: 0;
    top: 10px;
    width: 120px;
    position: relative
}

.car-body:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 24px;
    position: absolute;
    right: -5px;
    background: #d1352b;
    border-top-right-radius: 4px;
    z-index: 1
}

.car-body:after {
    content: '';
    display: inline-block;
    width: 121px;
    border-bottom: 1px solid #942b25;
    border-right: 2px solid #fff0;
    height: 0;
    z-index: 2;
    position: absolute
}

.car-gate {
    width: 32px;
    height: 20px;
    background: #d1352b;
    border-radius: 0 0 2px 8px / 0 0 2px 8px;
    box-shadow: 0 0 0 1px #892924;
    position: absolute;
    left: 48px
}

.car-gate:before {
    content: '';
    width: 8px;
    height: 2px;
    background: #4c4b4b;
    position: absolute;
    top: 2px;
    left: 4px;
    box-shadow: 1px 1px 1px rgb(0 0 0 / .1)
}

.car-top-back {
    background: none repeat scroll 0 0 #4C4B4B;
    border-radius: 5px 0 0 0;
    height: 20px;
    left: 4px;
    position: absolute;
    top: -20px;
    width: 58px
}

.car-top-back:before {
    width: 30px;
    height: 15px;
    background: #736f6f;
    content: '';
    position: absolute;
    top: 3px;
    left: 8px;
    border-radius: 2px
}

.car-top-back:after {
    content: '';
    background: #4c4b4b;
    border-radius: 30%;
    height: 5px;
    left: 3px;
    position: absolute;
    top: -1px;
    width: 62px
}

.car-top-front {
    top: -19px;
    position: absolute;
    left: 47px;
    width: 20px;
    height: 20px;
    background: #dc4630;
    border-left: 1px solid #892924;
    border-radius: 2px 0 0 0
}

.car-top-front:after {
    width: 26px;
    height: 20px;
    -webkit-transform: skew(37deg);
    -moz-transform: skew(37deg);
    background: #dc4630;
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    border-radius: 4px 0 4px 4px
}

.car-top-front:before {
    width: 12px;
    height: 5px;
    background: #dc4630;
    content: '';
    position: absolute;
    top: 14px;
    left: 28px;
    z-index: 1;
    border: solid #a82e27;
    border-width: 0 1px 1px 0
}

.wind-sheild {
    top: 3px;
    left: 3px;
    position: absolute;
    z-index: 3;
    width: 18px;
    height: 12px;
    background: #f5e7e7;
    border-radius: 0 3px 0 0
}

.wind-sheild:after {
    width: 12px;
    height: 12px;
    -webkit-transform: skew(25deg);
    -moz-transform: skew(25deg);
    background: #f5e7e7;
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    border-radius: 3px
}

.boundary-tyre-cover {
    position: absolute;
    top: 14px;
    left: 10px;
    border-bottom: 20px solid #4c4b4b;
    border-right: 10px solid #fff0;
    height: 0;
    width: 20px
}

.boundary-tyre-cover:before {
    content: '';
    position: absolute;
    display: inline-block;
    background: #4c4b4b;
    height: 20px;
    width: 15px;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    border-radius: 3px;
    left: -6px;
    top: 0
}

.boundary-tyre-cover:after {
    content: '';
    position: absolute;
    display: inline-block;
    background: #4c4b4b;
    height: 20px;
    width: 20px;
    -webkit-transform: skewx(40deg);
    -moz-transform: skewX(40deg);
    border-radius: 3px;
    right: -14px;
    top: 0
}

.boundary-tyre-cover-inner {
    position: absolute;
    top: 4px;
    left: 4px;
    border-bottom: 16px solid #000;
    border-right: 10px solid #fff0;
    height: 0;
    width: 15px;
    z-index: 2
}

.boundary-tyre-cover-inner:before {
    content: '';
    position: absolute;
    display: inline-block;
    background: #000;
    height: 16px;
    width: 15px;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    border-radius: 3px 3px 0 0;
    left: -6px;
    top: 0
}

.boundary-tyre-cover-inner:after {
    content: '';
    position: absolute;
    display: inline-block;
    background: #000;
    height: 16px;
    width: 20px;
    -webkit-transform: skewx(40deg);
    -moz-transform: skewX(40deg);
    border-radius: 3px 3px 0 0;
    right: -11px;
    top: 0
}

.boundary-tyre-cover-back-bottom {
    position: absolute;
    width: 14px;
    height: 8px;
    background: #4c4b4b;
    top: 12px;
    left: -19px
}

.bonet-front {
    background: #d1352b;
    border-radius: 5px 258px 0 38px / 36px 50px 0 0;
    height: 4px;
    position: absolute;
    right: 0;
    top: -4px;
    width: 40px;
    z-index: 0
}

.back-curve {
    background: none repeat scroll 0 0 #4C4B4B;
    border-radius: 960% 100% 0 0;
    height: 20px;
    left: -3px;
    position: absolute;
    top: 1px;
    transform: rotate(6deg);
    width: 5px
}

.stepney {
    height: 6px;
    left: -4px;
    position: absolute;
    top: 6px;
    width: 8px;
    z-index: -1;
    background: #3f3f40
}

.stepney:before {
    width: 8px;
    height: 12px;
    background: #3f3f40;
    content: '';
    position: absolute;
    top: -10px;
    left: -7px;
    border-radius: 3px 3px 0 0
}

.stepney:after {
    width: 8px;
    height: 12px;
    background: #0d0c0d;
    content: '';
    position: absolute;
    top: 0;
    left: -7px;
    border-radius: 0 0 3px 3px
}

.tyre-cover-front {
    background: #4c4b4b;
    height: 4px;
    left: 97px;
    position: absolute;
    top: 13px;
    width: 22px;
    z-index: 1
}

.tyre-cover-front:before {
    background: none repeat scroll 0 0 #4c4b4b;
    content: "";
    display: inline-block;
    height: 21px;
    left: -10px;
    position: absolute;
    top: 0;
    transform: skewX(-30deg);
    width: 10px;
    z-index: 6;
    border-radius: 4px 0 0 0
}

.tyre-cover-front:after {
    background: none repeat scroll 0 0 #4c4b4b;
    content: "";
    display: inline-block;
    height: 6px;
    left: 14px;
    position: absolute;
    top: 0;
    transform: skewX(30deg);
    width: 17px;
    z-index: 6;
    border-radius: 0 4px 2px 0
}

.boundary-tyre-cover-inner-front {
    position: absolute;
    top: 4px;
    left: 4px;
    border-bottom: 16px solid #000;
    border-right: 10px solid #fff0;
    height: 0;
    width: 15px;
    z-index: 7
}

.boundary-tyre-cover-inner-front:before {
    background: none repeat scroll 0 0 #000;
    border-radius: 3px 3px 0 0;
    content: "";
    display: inline-block;
    height: 17px;
    left: -10px;
    position: absolute;
    top: 0;
    transform: skewX(-30deg);
    width: 15px
}

.boundary-tyre-cover-inner-front:after {
    content: '';
    position: absolute;
    display: inline-block;
    background: #000;
    height: 16px;
    width: 20px;
    -webkit-transform: skewx(25deg);
    -moz-transform: skewX(25deg);
    border-radius: 3px 3px 0 0;
    right: -12px;
    top: 0
}

.base-axcel {
    background: none repeat scroll 0 0 #000;
    bottom: -15px;
    height: 10px;
    left: 30px;
    position: absolute;
    transform: rotate(-2deg);
    width: 70px;
    z-index: -1
}

.base-axcel:before {
    background: none repeat scroll 0 0 #000;
    border-radius: 0 0 0 10px / 0 0 0 5px;
    content: "";
    height: 10px;
    left: -35px;
    position: absolute;
    top: -2px;
    transform: rotate(6deg);
    width: 30px
}

.base-axcel:after {
    background: none repeat scroll 0 0 #000;
    border-radius: 0 0 0 10px / 0 0 0 5px;
    content: "";
    height: 10px;
    right: -33px;
    position: absolute;
    top: -1px;
    transform: rotate(-4deg);
    width: 40px;
    border-radius: 0 10px 5px 0
}

.front-bumper {
    background: none repeat scroll 0 0 #4c4b4b;
    border-radius: 0 2px 2px 0;
    height: 8px;
    position: absolute;
    right: -15px;
    width: 11px;
    z-index: 1;
    -moz-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg)
}

.front-bumper:before {
    background: none repeat scroll 0 0 #000;
    content: "";
    height: 10px;
    left: -7px;
    position: absolute;
    transform: rotate(-22deg);
    width: 9px;
    z-index: 1
}

.car-shadow {
    background: none repeat scroll 0 0 #fff0;
    bottom: -15px;
    box-shadow: -5px 10px 15px 3px #000;
    left: -7px;
    position: absolute;
    width: 136px
}

.moving_car .km_data {
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    bottom: 45%;
    z-index: 10;
    transform: scale(0);
    opacity: 0
}

.moving_car .km_data.km_1 {
    left: 10%;
    animation: km_data 20s linear infinite
}

@keyframes km_data {
    0% {
        transform: scale(0);
        opacity: 0
    }

    0%,10% {
        transform: scale(0);
        opacity: 0
    }

    15%,19% {
        transform: scale(1);
        opacity: 1
    }

    22.33%,100% {
        transform: scale(0);
        opacity: 0
    }
}

.moving_car .km_data.km_2 {
    left: 30%;
    animation: km_2_data 20s linear infinite
}

@keyframes km_2_data {
    0% {
        transform: scale(0);
        opacity: 0
    }

    0%,30% {
        transform: scale(0);
        opacity: 0
    }

    33.33%,38% {
        transform: scale(1);
        opacity: 1
    }

    42.33%,100% {
        transform: scale(0);
        opacity: 0
    }
}

.moving_car .km_data.km_3 {
    left: 50%;
    animation: km_3_data 20s linear infinite
}

@keyframes km_3_data {
    0% {
        transform: scale(0);
        opacity: 0
    }

    0%,50% {
        transform: scale(0);
        opacity: 0
    }

    54.33%,60% {
        transform: scale(1);
        opacity: 1
    }

    64.33%,100% {
        transform: scale(0);
        opacity: 0
    }
}

.moving_car .km_data.km_4 {
    left: 65%;
    animation: km_4_data 20s linear infinite
}

@keyframes km_4_data {
    0% {
        transform: scale(0);
        opacity: 0
    }

    0%,70% {
        transform: scale(0);
        opacity: 0
    }

    74.33%,80% {
        transform: scale(1);
        opacity: 1
    }

    84.33%,100% {
        transform: scale(0);
        opacity: 0
    }
}

.moving_car .km_data.km_5 {
    left: 85%;
    animation: km_5_data 20s linear infinite
}

@keyframes km_5_data {
    0% {
        transform: scale(0);
        opacity: 0
    }

    0%,90% {
        transform: scale(0);
        opacity: 0
    }

    94.33%,98% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(0);
        opacity: 0
    }
}

.moving_car .km_data::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    z-index: -1
}

.moving_car .km_data h3 {
    font-size: 14px;
    margin-bottom: 5px
}

.moving_car .km_data p {
    font-size: 16px;
    margin: 0
}

.moving_car_slider {
    display: none
}
/* car animation */

.n-btn {
    background: var(--secondary--);
    color: #fff;
}

.prime_location_card img{
    border-radius: 20px;
}

.prime_location_card h3{
    font-size: 24px;
    margin: 15px 0 5px 0;
    font-weight: 600;
}