html {
    scroll-behavior: smooth;
    font-size: 16px;

}

* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: "Quicksand", sans-serif;
    background-color: #060d15;
    background-color: black;
    /* width: 100%;
    height: 100%;
    position: relative; */
    color: white;
    line-height: normal;

}



ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
    color: white;
    font-size: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* mix-blend-mode: difference; */
    pointer-events: none;
    overflow: hidden;

}

.container-1 {
    max-width: 95%;
    margin: auto;
    width: 100%;
    padding: 0 15px;
}


/* header-css-start */
div#header-main {
    display: flex;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    border-bottom: 1px solid white;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100px;
}

.logo a {
    display: inline-block;
}

.logo a img {
    width: 100%;
}

.nav-bar {
    display: flex;

}

.nav-bar>ul {
    display: flex;
    gap: 20px;
}

.nav-bar>ul>li>a {
    display: flex;
    color: white;
    padding: 10px 0;
    align-items: center;
    gap: 4px;
}

.nav-bar>ul>li:hover>a {
    color: #20754b;
    transition: 0.3s;
}

.nav-bar>ul>li:hover>a>i {
    color: #20754b;
    transition: 0.3s;
    transform: rotate(-180deg);
}

.nav-bar>ul>li>a>i {
    font-size: 14px;
    color: white;
}

.header-left-info {
    display: flex;
}

.header-left-info>ul {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.header-left-info>ul>li>a {
    display: flex;
    color: white;
    flex-direction: column;
    font-size: 20px;
    text-align: end;
}

.header-left-info>ul>li>a>span {
    font-size: 16px;
}

.header-left-info>ul>li {
    position: relative;
}

.header-left-info>ul>li::after {
    position: absolute;
    top: 0;
    right: -25px;
    height: 100%;
    width: 1px;
    content: "";
    background-color: white;
}

.header-left-info>ul>li:last-child::after {
    display: none;
}

.header-left-info>ul>li>a.book-now {
    border: 1px solid #fff;
    padding: 12px 30px 12px 30px;
    border-radius: 50px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    overflow: hidden;
}

.drop-down-nav {
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    top: 80px;
    left: -20px;
    width: 300px;
    background-color: white;
    z-index: 9;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.drop-down-nav>li>a {
    color: black;
    position: relative;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    padding-left: 20px;
    width: 100%;
    transition: 0.3s;
}

.drop-down-nav>li:hover>a {
    color: #20754b;
    transform: translateX(10px);

}

.drop-down-nav>li {
    border-bottom: 1px solid #e9e9e9;

}

.drop-down-menu:hover .drop-down-nav {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    top: 40px;
    transition: 0.5s;
}

.drop-down-menu {
    position: relative;
}

.header-left-info>ul>li>a.book-now:hover {
    background-color: #20754b;
    transition: 0.3s;
    color: white;

}

.header-left-info>ul>li>a.book-now:hover {
    border: none;
}

.header-left-info>ul>li>a.book-now:hover>i {
    color: white !important;
}


/* banner-css-start */
#banner-main {
    width: 100%;
}

.banner {
    position: relative;

}

.banner::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.2;
    content: "";
    z-index: 9;
}

.banner-image img {
    width: 100%;
}

.banner-image {
    position: relative;
}

.banner-main-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.banner-info {
    width: 100%;
}

.banner-info {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;

}

.main-character {
    width: 350px;
    position: absolute;
    bottom: 0;
    left: -100%;
    transition: 1s;
}

.slick-active .main-character {
    left: 0;
}


.main-character img {
    width: 100%;
}

/* .main-character {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
} */

.header-left-info>ul>li>a.book-now>i {
    transform: rotate(-45deg);
}

.header-left-info>ul>li>a.book-now:hover>i {
    color: black;
    animation: lefttoright 0.55s forwards;
}

@keyframes lefttoright {
    49% {
        transform: translateX(40px);
    }

    50% {
        opacity: 0;
        transform: translateX(-40px);
    }

    51% {
        opacity: 1;
    }
}

.sky {
    width: 300px;
    position: relative;
    opacity: 0.4;

}

.sky-1 {
    animation: cloudMove 17s linear infinite;
}

.sky-2 {
    animation: cloudMove 20s linear infinite;
}

.sky img {
    width: 100%;
}

.banner-sky {
    display: flex;
    justify-content: space-between;
    width: 80%;
    position: absolute;
    top: 0;
}

@keyframes cloudMove {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}

.banner-data-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;


}

.banner-data-details h2 {
    font-family: "Water Brush", cursive;
    font-size: 36px;
    color: white;
    transform: translateX(200px);
    opacity: 0;
    transition: 1s;
}

.slick-active .banner-data-details h2 {
    opacity: 1;
    transform: translateX(0px);

}

.banner-data-details p {
    color: white;
    max-width: 80%;
    margin: auto;
    transform: translateY(50px);
    opacity: 0;
    transition: 1s;
}

.slick-active .banner-data-details p {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.2s;
}

.banner-data-details .book-now {
    border: 1px solid #fff;
    padding: 12px 30px 12px 30px;
    border-radius: 50px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    color: white;
    transform: translateY(60px);
    opacity: 0;
    transition: 1s;

}

.slick-active .banner-data-details .book-now {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.4s;

}

.banner-detail-btn {
    display: flex;
}

/* @keyframes cloudMove-1 {
  0% {
    right: -100px;
  }
  100% {
    right: 100%;
  }
} */
/* safari-zones-css */
#safari-zones {
    display: flex;
    width: 100%;
    padding: 60px 0;
    background-color: #20754b;

}

.safari-zones {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.zone-safri {
    background-image: url("../images/package-banner.jpg");
    background-size: cover;
    width: 48.50%;
    padding: 35px 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    background-color: #409e49;
    background-position: -100px;
}

.zone-safri:last-child {
    background-position: left;
    flex-grow: 1;
}

.zone-safri:last-child p {
    max-width: 60%;

}

.zone-safri h2 {
    color: white;
    font-size: 24px;
    font-weight: 400;
}

.zone-safri h2 span {
    color: white;
    font-weight: 300;
}

.enquiry-btn a {
    display: inline-flex;
    padding: 10px 20px;
    color: white;
    border: 2px solid white;

}

/* our-details-css */
.our-details {
    display: flex;
    width: 100%;
}

.data {
    display: flex;
    color: white;

}

.details-heading {
    width: 40%;
    padding: 30px 25px 50px 25px;
    border-right: 1px solid white;
}

.element-counter {
    width: 20%;
    padding: 30px 15px 50px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid white;
}

.element-counter:last-child {
    border-right: none;
}

.details-heading h2 {
    font-size: 25px;
    line-height: 35px;
}

.element-counter .counter-number {
    font-size: 54px;
    font-weight: 600;
    line-height: normal;

}

.element-counter .counter-title {
    line-height: normal;
    font-size: 20px;

}

.booknow {
    display: flex;
    color: white;
    font-size: 20px;
}

.element-counter .booknow {
    display: flex;
    color: white;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.our-details {
    display: flex;
    width: 100%;
    border-top: 1px solid white;
    margin-top: 10px;
}

.container-details {
    width: 100%;
}

/* about-css-start */

#about-us {
    display: flex;
    width: 100%;
    padding: 80px 0 40px 0;
}

.about-left-1 img {
    width: 100%;
}

.about-left-2 img {
    width: 100%;
}

.about-left-1 img {

    position: relative;
    transition: top 0.5s;
}

.about-left-1 img {
    top: 0;
}

.about-left-2 img {
    position: relative;
    transition: bottom 0.5s;
    bottom: 0;
}



.about-left-2 {
    position: relative;
}

.about-left-2::after {
    position: absolute;
    bottom: -25px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: white;
    content: "";
}

.about-left-1 {
    position: relative;
}

.about-left {
    position: relative;
}

.imag-pading {
    padding: 0 8px;
}

.about-experience {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: white;
    background-size: contain;
    color: black;
}

.about-experience h5 {
    font-size: 1.2rem;
    color: black;
}

.about-experience p {
    line-height: 16px;
    font-size: 0.8rem;
}

.about-experience::after {
    position: absolute;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 1px dashed black;
    content: "";
    animation: circle 1s linear infinite;
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-right h2 {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
    color: white;

}

.about-right h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: white;
}




.description {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.description p {
    text-align: justify;
    color: white;
}

.read-more {
    display: inline-flex;
    margin-top: 10px;
    position: relative;
    z-index: 9;
}

.read-more a {
    padding: 15px 20px;
    color: white;

    position: relative;
}

.news-letter p {
    text-align: justify;
}

.qodef-svg--button-border {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 1px);
    fill: none;
    stroke: white;

}

.qodef-svg--button-border path {
    stroke-dasharray: 4 3;
    animation: qode-marching-ants-animation .2s linear infinite;
    animation-play-state: running
}

@keyframes qode-marching-ants-animation {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 6;
    }
}

.about-main-heding {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    position: relative;
}


.about-main-heding .underline {
    position: absolute;
    left: 15%;
    bottom: 0px;
    content: "";
    width: 10%;
    height: 1px;

    background-color: #ffffff4d;
}


.about-main-heding h5 {
    color: white;
    font-size: 18px;
    position: relative;
    padding-left: 15px;
}

.about-main-heding h5::after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.about-main-heding h2 {
    color: white;
    font-size: 42px;
    font-weight: 600;
    padding-left: 15px;
}

.banner-bird {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    gap: 20px;
}

.bird {
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg);
    background-size: auto 100%;
    width: 90px;
    height: 125px;
    will-change: background-position;
    animation-name: fly-cycle;
    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-delay: -0.5s;
    opacity: 0.7;

}

.bird-container {
    animation: fly-right-one 22s linear infinite;
    position: relative;
    transform: scale(0) translateX(-10vw);
}

.bird-container-2 {
    animation-duration: 21s;
}

.bird-container-1 {
    animation-duration: 20.5s;
}

.bird-container-1 {
    animation-duration: 21.5s;
}

@keyframes fly-cycle {
    100% {
        background-position: -900px 0;
    }
}

@keyframes birdmove {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

@keyframes fly-right-one {
    0% {
        transform: scale(0.4) translateX(-190px);
        /* -10vw */
    }

    10% {
        transform: translateY(-20px) translateX(190px) scale(0.5);
        /* 2vh, 10vw */
    }

    20% {
        transform: translateY(-10px) translateX(570px) scale(0.5);
        /* 0vh, 30vw */
    }

    30% {
        transform: translateY(5px) translateX(950px) scale(0.6);
        /* 4vh, 50vw */
    }

    40% {
        transform: translateY(5px) translateX(1330px) scale(0.6);
        /* 2vh, 70vw */
    }

    50% {
        transform: translateY(10px) translateX(1710px) scale(0.7);
        /* 0vh, 90vw */
    }

    60% {
        transform: translateY(10px) translateX(2090px) scale(0.8);
        /* 0vh, 110vw */
    }

    80% {
        transform: translateY(0px) translateX(2530px) scale(0.8);
    }

    100% {
        transform: translateY(-20px) translateX(2090px) scale(0.9);
    }
}

/* partenersection-css */
#trusted-partners {
    padding: 80px 0;
}

.partner-image img {
    width: 100%;
    filter: grayscale(10);
    transition: 0.5s;
}

.partner-image {
    margin: 0 50px;
}

.trusted-partner {
    /* margin: 60px 0; */

    padding-left: 100px;

}

.trusted-partner .slick-list {
    padding: 60px 0;
}

.partner-uper p {
    font-size: 18px;
    color: white;
    position: relative;
    display: flex;
}

.partner-uper-1 p {
    justify-content: end;
}

.partner-uper p::after {
    position: absolute;
    top: 50%;
    background-color: #FFFFFF33;
    height: 1px;
    width: 85%;
    width: calc(100% - 160px);
    content: "";
    flex-grow: 1;
    right: 0;
}


.partner-uper-1 p::after {
    left: 0;
    width: calc(100% - 210px) !important;
}

.partner-image:hover img {
    transform: translateY(-10px);
    filter: grayscale(0);
}

/* services-css */

div#our-services {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.service-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 10px;
    overflow-x: hidden;
}

.service-marque {
    display: flex;
    flex-wrap: nowrap;
    animation: repeat-scroll 30s linear infinite;
    position: relative;
    justify-content: center;
    align-items: center;
}

.service-row-items {
    font-size: 52px;
    font-weight: 300;
    white-space: nowrap;
    padding: 5px 0;
    color: white;
    font-weight: 600;
}

@keyframes repeat-scroll {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.paw {
    margin: 0 30px;
}

.service-box {
    position: relative;
    margin-right: 20px;
    border-radius: 20px;
    overflow: hidden;

}

.service-box:nth-child(even) {
    transform: translateY(-20px);
}

.services-boxes .slick-list {
    padding: 40px 0;
}

.services-boxes {
    margin-top: 30px;
}

.service-box::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.3;
    content: "";
}

.service-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    text-align: center;
    z-index: 99;
}

.service-content p {
    color: white;
}

.service-content h5 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.service-image img {
    width: 100%;
    transition: 0.5s;

}

.service-box:hover .service-image img {
    transform: scale(1.1);
    filter: blur(3px);
}

.service-box.slick-current {
    transform: translateY(0);
    transition: 0.3s;
}

.service-box.slick-current:nth-child(odd) {
    transform: translateY(-20px);
    transition: 0.3s;
}

/* animal-u-see */
div#animals-find {
    width: 100%;
    padding: 30px 0;
    padding-bottom: 60px;
}

.animals-heading h2 {
    font-size: 54px;
    color: white;
    font-weight: 700;

}

.animals-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.animals-uget {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.animals-name {
    font-size: 36px;
    font-weight: 600;
    color: white;
}

.animals-uget span {
    width: 30px;
    height: 5px;
    background: white;
}

.animalufound {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* our-safari-css */
#our-safari {
    width: 100%;
    display: flex;
    padding: 100px 0;
    background-image: url('../images/bg-img-03.jpg');
    background-size: cover;
    background-position: left top;
}

.upper-safari-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.upper-safari-text h4 {
    font-size: 62px;
    font-weight: 300;
}

.upper-safari-text h4 span {
    font-size: 92px;
    text-transform: uppercase;
    font-weight: 600;
}

.safari-name h5 {
    font-size: 120px;
}

.lower-sfari-text {
    display: flex;
    gap: 10px;
    align-items: center;

}

.safari-name h5 {
    font-size: 76px;
    /* text-transform: uppercase; */
    font-weight: 600;
}

.safri-contact {
    display: flex;
    width: 30%;
    overflow-x: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0 10px;

}

.safri-contact a {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.contact-slide {
    animation: repeat-scroll 30s linear infinite;
}

.safri-contact a i {
    font-size: 16px;
    margin: 0 8px;
}

.btns-group-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.btns-group-1 a:nth-child(1):hover {
    background-color: transparent;
    border: 1px solid white;
    transition: 0.3s;
}

.btns-group-1 a:nth-child(2):hover {
    background-color: #20754b;
    border: none;
    transition: 0.3s;
}

.btns-group-1 .book-now {
    border: 1px solid #fff;
    padding: 12px 30px 12px 30px;
    border-radius: 50px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    color: white;
    display: flex;
}

.btns-group-1 .book-now:nth-child(1) {
    background-color: #20754b;
    color: white;
    border: none;
}

/* form-css-start */
#contact-page {
    display: flex;
    width: 100%;
    padding: 80px 0;
    background-color: black;

}

.contect-text h4 {
    font-size: 42px;
    margin-bottom: 100px;
    font-weight: 300;
    position: relative;
}

.contect-text h4::before {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    content: "";
}

.row.contect-main {
    max-width: 90%;
    margin: auto;
    width: 100%;
}

#contact input::placeholder {
    color: white;
}

#contact textarea::placeholder {
    color: white;
}

.contect-paragraph p {
    font-size: 1.3rem;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    color: white;
    border-radius: 5px;
    padding-top: 0;
}

#contact h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

#contact label {
    display: block;
    font-weight: bold;
}

#contact input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;

    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    box-shadow: none;
    padding-left: 0;
    color: white;
}

#contact textarea {
    height: 150px;
    resize: vertical;
}

#contact button.btn {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}



.form-group-a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
    margin-bottom: 15px;
}

.form-group-a .form-group {
    margin-bottom: 15px;
    width: 48%;
}

#contact select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    outline: none;
    color: white;
    background-color: black;
}

input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* testimonials-css */

#testimonials {

    padding: 80px 0;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background-color: #20754b;


}

.testimonials-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 35px;
}

.testimonials-heading h2 {
    font-size: 48px;
}

.testimonials-heading p {
    margin: auto;
    font-size: 16px;
    max-width: 70%;
}


.client-testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
}


.client-testimonials p {
    font-size: 16px;
    font-style: italic;

}

.client-name p {
    font-size: 18px;
}

p.main-words {
    font-family: "Water Brush", cursive;
    font-size: 42px;
    color: white;
    font-style: normal;
    line-height: 35px;
    /* word-spacing: px; */
}

.client-logo {
    margin-top: 20px;
    width: 90px;
    margin: auto;
}

.client-logo img {
    width: 100%;
}

/* testimonial-slider-css */
.testimonial-slider.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.testimonial-slider .slick-dots {

    z-index: 9;
    bottom: -35px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 30px;
}

.testimonial-slider .slick-dots li {
    margin: 0 2px;
}

.testimonial-slider .slick-dots li::after {
    position: absolute;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    width: 20px;
    height: 20px;
    border: 1px dashed black;
    border-radius: 50%;
    content: "" !important;
    display: none;
    animation: circle 2s linear infinite;
}

/* .bespoke-tri {
    height: 580px;
} */

.bespoke-tri img {
    width: 100%;
}

.testimonial-slider .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slider .slick-dots li.slick-active::after {
    display: block;
}

.testimonial-slider .slick-dots li:hover::after {
    display: block;
}

/* footer-css */
.logo-footer {
    width: 120px;
    display: flex;
}

.logo-footer img {
    width: 100%;
}

footer.main-footer .widgets-section {
    padding-top: 50px;
    padding-bottom: 20px;

}

.widget {
    margin-bottom: 40px;
}

.about-widget_text {
    font-size: 18px;
    line-height: 30px;
    color: white;
    font-weight: 400;
    position: relative;
    margin-bottom: 20px;
    /* text-align: justify; */
    padding-right: 44px;
}

.about-widget_phone {
    font-size: 24px;
    line-height: 22px;

    font-weight: 700;

    margin: 25px 0;

    transition: .5s;
}

.about-widget_phone a {
    color: black;
}

.widget {
    margin-bottom: 40px;
}

h4.widget-title {
    font-size: 22px;
    color: white;
    font-weight: 600;

    position: relative;
    margin-bottom: 20px;
}

.links-widget li {
    margin-bottom: 10px;
}

footer.main-footer {
    background-color: #20754b;
    position: relative;
}

.footer-bg-img {
    position: absolute;
    top: -110px;
    left: 0;
    background-image: url('../images/footer--grass.png');
    height: 130px;
    width: 100%;
    z-index: 9;
    background-repeat: repeat;
}

.widget-content>ul>li>a {
    color: white;

}

.contact-widget_address-title {
    font-size: 20px;
    font-weight: 700;
}

.contact-widget_mail-title {
    font-size: 20px;
    font-weight: 700;
}



.contact-widget_mail.mb-40 a {
    color: white;

}

.footer-bottom {
    padding: 15px 0;
    background-color: black;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: white;
}

.powerd-by {
    color: white;
}

.powerd-by a {
    color: white;
}

.socail-media>ul {
    display: flex;
    gap: 10px;
}

.socail-media>ul>li>a {
    display: flex;
    padding: 8px 0;
    width: 40px;
    font-size: 18px;
    background-color: white;
    color: #20754b;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

/* tourist-place-css */

div#tourist-place {
    display: flex;
    padding: 50px 0;
    background-color: white;
}

div#tourist-place .about-main-heding h5 {
    color: black;
}

div#tourist-place .about-main-heding h2 {
    color: black;
}

div#tourist-place .about-main-heding h5::after {
    background-color: black;
}

div#tourist-place .about-main-heding .underline {
    background-color: #0000008a;

}

.shivpuri-tourist-image img {
    width: 100%;
}

.tourist-place-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;

}

.show-place {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 10px;
}

.tourist-place-box {
    width: 32.50%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 1px solid #d8d8d8;
    padding-bottom: 24px;
}

.about-place h5 {
    text-align: center;
    font-weight: 600;
    margin: 15px 0;
    color: black;
}

.about-place p {
    color: black;
}

.category-places ul {
    display: flex;
    align-items: center;
    gap: 22px;
    background-color: #ededed;
    padding: 10px 10px;
    color: black;
    line-height: normal;
}

.category-places ul li:first-child {
    font-weight: 700;
    color: black;
    position: relative;
}

.category-places ul li:first-child::after {
    content: "\f054";
    font-size: 14px;
    font-family: 'fontawesome';
    color: rgba(0, 0, 0, 0.557);
    position: absolute;
    top: 18%;
    right: -15px;
}

.place-image img {
    width: 100%;
}

.about-place {
    display: flex;
    flex-direction: column;
}

.category-places {
    margin-bottom: 8px;
}

.tourist-place-container .tab {
    display: flex;
    gap: 25px;
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.shivpuri-tourist-image {
    margin-bottom: 40px;

}

div#howtoreach {
    display: flex;
    padding: 50px 0;
}

.destinacane-map {
    margin-bottom: 40px;
    /* width: 100vw;
    margin-left: calc(-50vw + 50%); */
}

.tab .tablinks {
    /* background-color: #20754b99; */
    color: white;
    /* padding: 10px 20px; */
    cursor: pointer;
    /* border-radius: 50px; */
}

.tab .tablinks.active {
    background-color: #20754b;
}


.tabcontent {
    display: none;
}

.tabcontent {
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tabcontent.active {
    display: flex;
}

.destinacane-map img {
    width: 100%;
}

/* how-toreach-css */
.by-air {
    display: flex;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


.by-ar-img {
    width: 60px;
    height: 60px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
}

.byair-icon img {
    width: 40px;
}

.byair-details {
    width: calc(100% - 85px);
}

.desination-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* counter-css */
.count-sum {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.count-sum span {
    font-size: 40px;
}

/* our-packages-css */

div#our-packages {
    display: flex;
    padding: 60px 0;
    background-color: #20754b;
}

.packages-our {
    display: flex;
    row-gap: 25px;
}

.packages-our {
    display: flex;
}

.package-box {
    display: flex;
    background-color: white;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.package-img {
    width: 45%;
}

.package-img img {
    width: 100%;
    height: 100%;
}

.package-details b {
    color: #1b1b1b;
    font-size: 14px;
}

.price-package {

    display: flex;
    align-items: center;
}

.price-package span {
    font-size: 20px;
    border-radius: 30px;
    font-weight: 700;
    color: #20754b;
}

.package-name {
    font-size: 36px;
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: black;
}

.package-para {
    color: black;
    font-size: 16px;
}

.package-details {
    width: 55%;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    gap: 10px;
    justify-content: center;
}

.same-btn a {
    border: 1px solid #fff;
    padding: 12px 30px 12px 30px;
    border-radius: 50px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    background-color: #20754b;
    color: white;
}

.same-btn {
    display: flex;
}

/* our-louge-css */
#our-louge {
    display: flex;
    padding: 50px 0;
    background-color: white;
}

#our-louge .testimonials-heading {
    color: black;
}

.resort-images img {
    width: 100%;
}

#our-louge .center-slider .resort-images.slick-slide {
    margin: 0 12px 0 0;
    transform: scale(.9);
    transition: .4s ease-in-out;
}

#our-louge .center-slider .resort-images.slick-slide.slick-center {
    transform: scale(1);

}

.center-slider .slick-dots li {
    margin: 0 2px;
}

.center-slider li button:before {
    font-size: 30px;

}

.center-slider li button {
    position: relative;
}

.center-slider .slick-dots li {
    position: relative;
}

.center-slider .slick-dots li::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px dashed black;
    border-radius: 50%;
    content: "" !important;
    display: none;
    animation: circle 2s linear infinite;
}

.center-slider .slick-dots li.slick-active::after {
    display: block;
}

.center-slider .slick-dots {
    bottom: -45px;
}


/* hover-css */
.banner-detail-btn .book-now:hover {
    background-color: #20754b;
    border-color: #20754b;
    transition: 0.3s;
}


/* top-to-bottom-css */

.top-to-bottom-btn {
    position: fixed;
    bottom: 85px;
    right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
}

.sticky .top-to-bottom-btn {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.top-to-bottom-btn p {
    writing-mode: vertical-rl;
    color: #c7a16a;
}

.progress-container {
    width: 3px;
    height: 60px;
    background: #ccc;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #20754b;
    transition: width .6s ease;
}

.whatsapp-call {
    position: fixed;
    bottom: 85px;
    left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
}

.sticky .whatsapp-call {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.whatsapp-call a {
    width: 50px;
    height: 50px;
    background-color: #20754b;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.whatsapp-call a svg {
    fill: white;
    width: 40px;
}



.contact-widget_mail a {
    color: white;
}

.socail-media ul li {
    transition: 0.5s;
}

.socail-media ul li:hover {

    transform: translateY(-5px);
}


/* breadcreamb-css */
#breadcrumb-banner {
    display: flex;
    /* height: 350px; */
    width: 100%;
    background-color: black;
    overflow: hidden;

}

.bread-creamb-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bread-creamb-header ul {
    display: flex;
    gap: 30px;
}

.bread-creamb-header ul li {
    font-size: 18px;
    color: white;
    font-weight: 600;
    font-style: italic;
    position: relative;
}

.bread-creamb-header ul li a {
    /* font-size: 18px; */
    color: white;
    /* font-weight: 600;   */
}

.bread-creamb-header ul li::after {
    content: "\f105";
    font-family: fontawesome;
    position: absolute;
    top: 50%;
    right: -25px;
    font-size: 16px;
    color: white;
    transform: translate(-50%, -50%);
}

.bread-creamb-header ul li:last-child::after {
    display: none;
}

.bread-creamb-header ul li:last-child {
    opacity: 0.8;
}

.breadcrumb-image img {
    width: 100%;
}

.breadcrumb-image {
    position: relative;
}

.bread-crumb-links {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}

/* kuno-national-park-css */

#about-national-park {
    padding: 60px 0;
    display: flex;
    width: 100%;
}

.np-image img {
    width: 100%;
    scale: 0.7;
}

.about-park-info {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.np-image {
    margin: 50px 0;
}

.np-history {
    display: inline-block;
}

.np-history h3 {
    margin-bottom: 20px;
}

.history-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#np-info {
    display: flex;
    width: 100%;
    background-color: #20754b;
    overflow: hidden;
}

.info-left ul {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.info-left ul li span {
    font-weight: 600;
}

.info-left ul li {
    position: relative;
    padding-left: 25px;
}

.info-left ul li::after {
    position: absolute;
    top: 2px;
    left: 0;
    content: "\f058";
    font-size: 16px;
    color: white;
    font-family: 'fontawesome';
}

.info-left h3 {
    margin-bottom: 20px;
}

.info-left {
    padding: 60px 40px;
}

.info-right-img img {
    width: 100%;
    height: 100%;
}

.np-info-details .row .col-lg-6 {
    display: flex;

}

/* spechies-css */
#animals-find-1 {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

.animals-find-1 .animals-heading h2 {
    font-size: 46px;
}

.np-info-details {
    width: 100%;
}

/* kuno-faqs */

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion__item {
    background-color: white;
    border-top: none;
    transition: 0.5s;
}

.accordion__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    cursor: pointer;
    background-color: black;
    position: relative;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0px 20px;
    color: white;
    background-color: black;
}

.accordion__title h3 {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
}

.icons-plus-minus span {
    font-size: 24px;
    color: white;
    transition: 0.5s;

}

.tab-open .icons-plus-minus span:nth-child(1) {
    display: none;
}

.tab-open .icons-plus-minus span:nth-child(2) {
    display: block;
}

.accordion__content p {
    padding-bottom: 15px;
    text-align: justify;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 14px;
}

.accordion__item:hover .accordion__title .icons-plus-minus {
    transform: rotate(360deg);
    transition: 0.3s;
}

.icons-plus-minus span:nth-child(2) {
    display: none;
}

/* why-chhose-us-css */
#choose-use {
    background-color: white;
    padding: 60px 0;
}

.choose-us-box {
    display: flex;
    width: 33%;
    flex-direction: column;
    margin: 0 15px 0 0;
    transform: scale(.7);
    transition: .4s ease-in-out;
}

.choose-us-box.slick-center {
    transform: scale(.9);
}

.choose-use-box h3 {
    color: black;
    text-align: center;
    margin-bottom: 40px;
}

.choose-content {
    margin-top: 40px;
}

.icon-box {
    display: flex;
    color: black;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.icon-img {
    width: 50px;
    height: 50px;
    border-radius: 4px;

    padding: 10px;
}

.c-orange {
    background-color: hsl(8.17deg 78.6% 57.84%);
}

.c-blue {
    background-color: hsl(240.5deg 69.14% 34.31%);
}

.c-green {
    background-color: hsl(151.1deg 78.85% 40.78%);
}

.icon-img img {
    width: 100%;
}

.choose-content h4 {
    color: black;
    font-size: 14px;
}

.choose-content p {
    color: #0000008c;
    font-size: 14px;
}

/* season-css */

#best-season {
    padding: 60px 0;
    background-color: white;
    color: black;
}

.seasons h3 {
    margin-bottom: 40px;
    text-align: center;
}

.season-time {
    display: flex;
}

.seoson-box {
    width: 32%;
    background-color: #d1d1e1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seoson-box h4 {
    font-size: 32px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

.seoson-box h4 img {
    width: 35px;
}

.seoson-box .timing {
    font-size: 24px;
}

.seoson-box span {
    width: 100%;
    height: 2px;
    background-color: black;
    display: flex;
    margin-top: 10px;
}

.timing-para {
    margin-top: 10px;
}

.season-time {
    display: flex;
    justify-content: space-between;
}

.summer {
    background-color: #ffe97d;
}

.Monsoon {
    background-color: #c0ebf1;
}

/* np-booking-css */

div#safar-booking-kuno {
    display: flex;
    padding: 60px 0;
    width: 100%;
}

.np-book {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-bottom: 40px;

}

.np-booking {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 50px;
}

.np-tabs {
    display: flex;
    gap: 20px;


}

.np-tab {
    padding: 10px 20px;
    cursor: pointer;
    background: #20754b;
    position: relative;
    color: white;

}

.np-tab::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid #20754b;
    bottom: -16px;
    left: 0px;
    right: 0;
    margin: auto;
    display: none;
}

.np-content-info {
    display: flex;
    gap: 30px;
    width: 100%;
}

.np-contentc-img {
    width: 30%;
}

.np-contentc-img img {
    width: 100%;
}

.np-contect-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 60%;
}

.np-ul p {
    font-size: 18px;
    margin-bottom: 10px;
}

.np-ul ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
}

.np-ul ul li {
    list-style: disc;
}

.np-ul {
    margin-top: 10px;
}

.uio span {
    font-weight: 600;
}

.np-tab.active::after {
    display: block;
}

.np-tab.actives::after {
    display: block;
}

/* np-animal-css */
#np-main-animal {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

#np-main-animal .about-main-heding h2 {
    font-size: 32px;

}

span.intro-head {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 5px;
}

.hunting {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hunting-images img {
    width: 100%;
    height: 100%;
}

.hunting-title {
    padding: 10px;
    background: white;
    color: black;
    display: flex;
    justify-content: center;
}

.hunting-images {
    height: 100%;
}

.intro-head-ul ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding-left: 20px;
}

.intro-head-ul ul li {
    list-style: disc;
}

.loctaion-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.down-desti {
    margin-top: 40px;
}

/* do-dont-css */
#do-dont {
    padding: 60px 0;
    background: white;
    color: black;
}

#do-dont .np-book {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.accordion__content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
}

.accordion__content ul li {
    list-style: decimal;
}

.faqs-acco.active-tabs.sports-a {
    width: 100%;
}

.tabcontents {
    animation: fadeEffect 1s;
}

p.after-do-dont {
    margin-top: 30px;
}

/* gear-product-css */
#gear-products {
    display: flex;
    background-color: black;
    padding: 60px 0;
    padding-bottom: 100px;
}

#gear-products .np-book {
    flex-direction: column;
    gap: 10px;
}

.started-1 {
    margin: 10px 0;
    font-weight: 500;
    font-size: 16px;
}

.started-packing ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

span.w-season {
    font-size: 18px;
    margin: 5px 0;
    margin-top: 10px;
}

.started-packing ul li {
    list-style: disc;
    margin-left: 20px;
}

.avoid {
    color: red;
}

.ready-star {
    color: #20754b;
}

.started-packing {
    margin-bottom: 20px;
}

.mobile-instuction {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.instruction p {
    font-size: 18px;
}

.status {
    color: #20754b;
}

.choose-us-1 .choose-us-box {
    transform: scale(1);
}

.choose-us-1 .choose-use-design {
    display: flex;
    justify-content: space-around;
}

/* team-css */

#our-team-deatils {
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.member-details img {
    width: 100%;

}


.member-details-3 {
    border-radius: 45% 0% 40% 40%;
    overflow: hidden;
}

.member-details-1 {
    border-radius: 45% 0% 40% 40%;
    overflow: hidden;
}

.member-details-1 {
    border-radius: 0% 45% 40% 40%;
    overflow: hidden;
}

.member-details-4 {
    border-radius: 43% 43% 0% 0%;
    overflow: hidden;
}

.member-details-2 {
    border-radius: 0% 0% 43% 43%;
    overflow: hidden;
}

.about-member {
    margin-top: 15px;
}

.about-member p {
    font-style: italic;
    color: #c7a16a;
}

.team-bb {
    padding: 10px;
}

.member-details {
    position: relative;
    overflow: hidden;
}

.team-socail-icons {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-50%, -50%);
}

.team-socail-icons ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-socail-icons ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(200%);
    color: white;

}

.team-socail-icons ul li:nth-child(1) a {
    background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);

}

.team-socail-icons ul li:nth-child(2) a {
    background-color: #316FF6;


}

.team-socail-icons ul li:nth-child(3) a {
    background-color: #0077b5;


}

.team-socail-icons ul li:nth-child(4) a {
    background-color: #1DA1F2;

}

.team-bb:hover .team-socail-icons ul li a {
    transform: translateX(0);
    transition: 0.5s;
}

.team-bb:hover ul li:nth-child(2) a {

    transition-delay: 0.2s;

}

.team-bb:hover ul li:nth-child(3) a {

    transition-delay: 0.4s;
}

.team-bb:hover ul li:nth-child(4) a {

    transition-delay: 0.6s;
}

section#additional-team-details {
    background-color: #1f261e;
}

section#our-team-deatils-main {
    display: flex;
    width: 100%;
    padding: 60px 0;
}

.our-team-headings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
    margin-bottom: 40px;
}

/* package-details-css */

#package-details-page {
    padding: 60px 0;
    display: flex;
    width: 100%;
    background-color: white;
    color: black;
}

.package-inti {
    margin: 20px 0;
}

.icon-heading {
    font-size: 24px;
}

.package-inti p span {
    font-weight: 500;
}

.section-block {
    margin-bottom: 30px;
}

.charges-table,
.location-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.charges-table th,
.location-table th {
    background-color: #20754b;
    color: #ffffff;
}

.charges-table th,
.charges-table td,
.location-table th,
.location-table td {
    border: 1px solid #ccc;
    padding: 12px 16px;
    text-align: left;
}

.note {
    font-style: italic;
    color: #333;
    margin-top: 15px;
    padding: 10px;
    background: #20754b;
    color: white;
}

.note span {
    color: white;
    text-decoration: underline !important;
}

.highlight {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #20754b;
    color: white;
    padding: 20px;
    border-left: 3px solid black;
}

.package-page-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 20px;
}

.package-page-heading p {
    max-width: 75%;
    margin: auto;
}

.package-inti ul {
    display: flex;
    gap: 5px;
    /* flex-direction: column; */
    padding-left: 30px;
    margin-top: 20px;
    justify-content: space-between;
    width: 60%;
}

.package-inti ul li {
    list-style: disc;
}

.package-inti ul li span {
    font-weight: 600;
}

/* .table th {
    background-color: #20754b;
    color: #fff;
    padding: 12px 16px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 16px;
} */

.btn-gr-same {
    display: flex;
    gap: 10px;

}

.btn-gr-same a {
    border: 1px solid #fff;
    padding: 10px 20px 10px 20px;
    border-radius: 50px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    display: flex;
    color: white;
    font-size: 18px;

}

.btn-gr-same a i {
    transform: rotate(-45deg);
}

.btn-gr-same a:hover>i {
    animation: lefttoright 0.55s forwards;
}

.btn-gr-same a:hover {
    background-color: #20754b;
    border-color: #20754b;
}

.banner-data-details .btn-gr-same a{
    background-color: #20754b;
    border-color: #20754b;
    font-weight: 600;
}

.package-box .btn-gr-same a {
    color: #20754b;
    border-color: #20754b;
}

.package-box .btn-gr-same a:hover {
    color: white;
}

.btns-group-1 .btn-gr-same:nth-child(1) a {
    background-color: #20754b;
    border-color: #20754b;
}

.btns-group-1 .btn-gr-same:nth-child(1) a:hover {
    background-color: transparent;
    border-color: white;
}

.btns-group-1 .btn-gr-same:nth-child(2) a:hover {
    background-color: #20754b;
    border-color: #20754b;
}

.accesbility .access-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 25px;
}

.accesbility ul li {
    list-style: disc;
}

.accesbility .our-louge {
    padding: 40px 0;
    padding-bottom: 20px;
}

.accesbility .center-slider .resort-images.slick-slide.slick-center {
    transform: scale(1);
}

.accesbility .center-slider .resort-images.slick-slide {
    margin: 0 15px 0 0;
    transform: scale(.9);
    transition: .4s ease-in-out;
}

table.table {
    background-color: #20754b;
}

table.table th {
    border-right: 1px solid white;
    color: white;
    padding: 12px 16px;
}

table.table td {

    line-height: 28px;
    color: white;
}

.package-safari-name {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: black;
    color: white;
    margin-top: 30px;
    margin-bottom: 10px;
}

#package-details-page .tab {
    gap: 25px;
    display: flex;
}

.madhav-park-package {
    flex-direction: column;
}

.kuno-park-package {
    flex-direction: column;
}

#safari-zones {
    display: none;
}

.intiry-routine {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-direction: column;
}

.intiry-tetx p {
    font-weight: 600;
}

.icon-intiry i {
    color: #20754b;
}

.icon-intiry p {
    font-weight: 600;
}

.intiery-day {
    width: 48%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    padding: 20px;
}

.icon-intiry {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 20px;
    align-items: center;

}

.intiry-tetx ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    margin-top: 10px;
}

.intiry-tetx ul li {
    list-style: disc;
}

.intiery-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.initiery {
    margin: 20px;
}

.intiery-heding {
    margin-bottom: 20px;
}

.table-uli {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table-uli li {
    list-style: disc;
}

.doble-note ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    padding-left: 30px;
    color: white;
}

.doble-note ul li {
    list-style: disc;
    font-size: 16px;

}

.doble-note {
    background: #20754b;
}

.policy-section {
    padding: 60px 0;
    background-color: white;
    color: black;
}

.policy-section h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.policy-section h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

ul.privcyul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
    padding-left: 20px;
}


.policy-section ul li {
    list-style: disc;
}

.policy-section ul ul {
    margin-top: 10px;
}

.policy-section p {
    margin-top: 15px;
}

.policy-section hr {
    margin: 50px 0;
    border: none;
    border-top: 1px solid #ccc;
}

div#menu-btn-1 {
    display: none;
}

.body-overlay {
    display: none;
}

.slick-active .banner-data-details .btn-gr-same a {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.2s;
}

.banner-data-details .btn-gr-same a {
    transform: translateY(60px);
    opacity: 0;
    transition: 1s;
}

.about-right .btn-gr-same {
    display: flex;
    margin-top: 20px;
}

div#howtoreach {
    padding-top: 20px;
}

.desti-type {
    display: none;
}

.byair-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

section#portfolio-section-main {
    display: flex;
    width: 100%;
    padding-top: 60px;
}

.service-section-heading p {
    font-size: 18px;
}

.service-section-heading h3 {
    font-size: 38px;
}

.service-section-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contect-map {
    width: 100%;
}

.contect-map iframe {
    width: 100%;
}

.contect-details-text {
    width: 50%;
    padding: 50px;
}

.contect-details-text ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.context-address {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.location-add {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 18px;
}

.contect-details-text ul li a {
    display: flex;
    gap: 15px;
    align-items: center;
    color: white;
    font-size: 18px;
}

section#contact-address {
    width: 100%;
    display: flex;
}

.mn-safri-box {
    width: 49%;
    display: flex;
    flex-direction: column;
}

.mn-safari-box-heading {
    padding: 10px;
    background: white;
    color: black;
}

.mn-safri-box img {
    width: 100%;
    height: 500px;
}


.custom-safari {
    display: flex;
    justify-content: space-between;
}

.safri-details-desti {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.costomize-bespoke {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
}

.destination-coverd {
    padding-top: 40px;
}

.destination-coverd ul {
    display: flex;
}

.destination-coverd ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 30px;
}

.destination-coverd ul li {
    list-style: disc;
}

.destination-coverd-1 ul li {
    list-style: none;
}

.destination-coverd-1 ul li span {
    font-size: 18px;
    font-weight: 800;
    color: #20754b;
}

.destination-coverd-1 ul {
    margin: 15px 0px;
}

.destination-coverd-2 ul {
    flex-direction: row;
    justify-content: space-between;
}

.costomize-bespoke .intiery-day {
    background: white;
    color: black;
    width: 49%;

}

.costomize-bespoke .intiery-days {
    padding-top: 40px;
}

.estimated-prize {
    background: #20754b;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.estimated-prize h4 {
    font-size: 28px;
}

.pr-start {
    font-size: 30px;
}

.pr-start span {
    font-weight: 600;
}

.costomize-bespoke .intiery-days h4 {
    width: 100%;
}

.add-on {
    display: flex;
    background: white;
    color: black;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin: 20px 0;
}

.add-on h4 {
    color: #20754b;
}

.add-bothh {
    display: flex;
    justify-content: space-between;
}

.add-ul ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    margin-top: 15px;
}

.add-ul ul li {
    list-style: disc;
}

.add-ul h5 i {
    color: #20754b;
}

.destination-coverd-3 ul {
    flex-wrap: wrap;

}

.destination-coverd-3 ul li {
    white-space: nowrap;
}

.section-booking {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.section-booking-1 {
    margin-top: 0;
}

.section-booking-1 .btn-gr-same a {
    border-color: black;
    color: black;
}

.section-booking-1 .btn-gr-same:hover a {
    border-color: #20754b;
    color: white;
}

.destination-coverd-5 ul li {
    list-style: decimal;
}

.destination-coverd-5 ul {
    padding-left: 20px;
}

.resort-details {
    background: black;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.resort-description h5 {
    font-size: 16px;
}

.resort-description ul li {
    font-size: 14px;
    list-style: disc;
}

.resort-name {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resort-name h4 {
    font-size: 20px;
    font-weight: 600;
}

.resort-description ul {
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding-left: 16px;
    padding-top: 5px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
}

.sticky #header-main {
    position: fixed;
    top: 0;
    left: 0;
    padding: 5px 0;
    animation: stickey-header 1s;
    z-index: 99999;
    background-color: white;
    box-shadow: 0 0 40px #000;
}

@keyframes stickey-header {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.sticky #header-main .logo {
    width: 70px;
}

.sticky #header-main .nav-bar>ul>li>a {
    color: black;
}

.sticky #header-main .nav-bar>ul>li>a>i {
    color: black;
}

.sticky .header-left-info>ul>li>a {
    color: black;
}

.sticky #header-main  .header-left-info>ul>li>a.book-now {
    border-color: black;
}

.sticky #header-main .header-left-info>ul>li::after {
    background-color: black;
}

.sticky #header-main #menu-btn-1 .span-menu {
    color: black;
}

.sticky #header-main #menu-btn-1 rect {
    fill: black;
}
.sticky #header-main #menu-btn-1 circle {
    stroke: black;
}

@media screen and (max-width:1084px) {
    .logo {
        width: 90px;
    }

    .header-left-info>ul {
        gap: 40px;
    }

    .header-left-info>ul>li>a.book-now {
        padding: 10px 26px 10px 26px;
    }

    .nav-bar>ul {
        gap: 12px;
    }

    .header-left-info>ul>li>a {
        font-size: 18px;
    }

}

@media screen and (max-width:992px) {
    div#howtoreach {
        padding-top: 10px;
    }

    div#menu-btn-1 {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    rect {
        fill: white;
    }

    .header-left-info {
        display: flex;
        gap: 20px;
    }

    .nav-bar {
        width: 70%;
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        height: 100%;
        z-index: 999;
        transform: translateX(-108%);
        transition: 0.5s;
    }

    .header-contact .nav-bar {
        transform: translate(0);
    }

    .header-contact div#menu-btn-1 {
        display: none;
    }

    div#menu-btn-2 {
        position: absolute;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        top: 30px;
    }

    .nav-bar>ul {
        width: 100%;
        flex-direction: column;
        gap: 0;

    }

    .nav-bar>ul>li>a {
        color: black;
    }

    .nav-bar>ul>li {
        border-bottom: 1px solid #e9e9e9;
        position: relative;
    }

    .nav-bar>ul>li.drop-down-menu::after {
        position: absolute;
        top: 27px;
        transform: translate(-50%, -50%);
        right: 10px;
        content: "\2b";
        color: black;
        font-size: 26px;

    }

    .nav-bar>ul>li>a {
        color: black;
        padding: 20px;
    }

    .nav-bar>ul>li>a>i {
        display: none;
    }

    .drop-down-nav {
        position: inherit;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        top: 0px;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 9;
        box-shadow: none;
        display: none;
    }

    .drop-down-menu:hover .drop-down-nav {
        visibility: visible;
        overflow: visible;
        opacity: 1;
        top: 0px;
        transition: 0.5s;
    }

    .header-left-info>ul>li:first-child {
        display: none;
    }

    .body-overlay {
        width: 100%;
        height: 100%;
        background-color: #00000096;
        opacity: 1;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        transform: translateX(-100%);
        transition: 0.3s;
        display: flex;
    }

    .header-contact .body-overlay {
        transform: translateX(0);
    }

    div#header-main {
        border-bottom: 1px solid #ffffff85;
    }

    .open-navs .drop-down-nav {
        display: block;
    }

    .banner-data-details h2 {
        font-size: 26px;
    }

    .banner-data-details p {
        max-width: 90%;
        font-size: 14px;
    }

    .main-character {
        width: 250px;
    }

    .banner-data-details .btn-gr-same a {
        font-size: 16px;
    }

    .details-heading h2 {
        font-size: 20px;
        line-height: normal;
    }

    .element-counter .counter-number {
        font-size: 32px;
        font-weight: 600;
        line-height: normal;
    }

    .mn-safri-box img
{
    height: 400px;
}

    .count-sum span {
        font-size: 30px;
    }

    .element-counter .counter-title {
        line-height: normal;
        font-size: 16px;
    }

    .element-counter {
        padding: 25px 15px 25px 15px;
    }

    .about-right {
        margin-top: 60px;
    }

    .trusted-partner .slick-list {
        padding: 40px 0;
    }

    .partner-image {
        margin: 0px 35px;
    }

    #about-us {
        padding: 60px 0 20px 0;
    }

    #trusted-partners {
        padding: 50px 0;
    }

    .tourist-place-container .tab {
        gap: 20px 10PX;
        justify-content: start;
        flex-wrap: nowrap;
    }

    .tab .tablinks {
        white-space: nowrap;
    }

    .np-tab {
        padding: 10px 10px;
        font-size: 13px;
    }

    .tourist-place-box {
        width: 48.50%;
    }

    .about-main-heding h2 {
        font-size: 36px;
    }

    .about-main-heding h2 {
        color: white;
        font-size: 36px;
        font-weight: 600;
        padding-left: 15px;
    }

    .service-row-items {
        font-size: 42px;
    }

    .service-content h5 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 16px;
    }


    .service-content {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .animals-heading h2 {
        font-size: 36px;
    }

    .animals-name {
        font-size: 30px;
    }

    .testimonials-heading h2 {
        font-size: 36px;
    }

    #our-louge .center-slider .resort-images.slick-slide {
        transform: scale(1);
    }

    .safari-name h5 {
        font-size: 52px;
    }

    .upper-safari-text h4 span {
        font-size: 62px;
    }

    .upper-safari-text h4 {
        font-size: 44px;
    }

    #contact {
        max-width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    p.main-words {
        font-size: 36px;
    }

    .testimonials-heading p {
        max-width: 90%;
    }

    .testimonials-heading {
        margin-bottom: 25px;
    }

    .client-logo {
        width: 70px;
    }

    div#tourist-place {
        overflow-x: hidden;
    }

    .tourist-place-container .tab {

        margin-bottom: 0px;
        padding-bottom: 20px;
        overflow-x: scroll;
    }

    .shivpuri-tourist-image {
        margin-bottom: 25px;
    }

    .choose-us-box {
        transform: scale(1);
    }

    .info-right-img {
        width: 100%;
    }

    .seoson-box {
        padding: 30px 10px;
    }

    .seoson-box h4 {
        font-size: 30px;
    }

    .seoson-box .timing {
        font-size: 22px;
    }

    .seoson-box h4 img {
        width: 30px;
    }

    .seoson-box span {
        width: 90%;
        height: 1px;
        margin-top: 5px;
    }

    .hunting-title {
        text-align: center;
    }

    #np-main-animal .about-main-heding h2 {
        font-size: 30px;
    }

    .np-booking {
        gap: 30px;
    }

    .np-content-info {
        flex-direction: column-reverse;
    }

    .np-contect-data {
        width: 100%;
    }

    .np-contentc-img {
        width: 100%;
    }

    .animals-uget {
        gap: 12px;
    }

    .animals-uget span {
        width: 25px;
        height: 3px;
    }

    .package-page-heading p {
        max-width: 90%;
    }

    .package-inti ul {
        width: 80%;
    }

    .package-safari-name h4 {
        font-size: 22px;
    }

    .icon-heading {
        font-size: 22px;
    }

}

@media screen and (max-width:768px) {
    #our-louge .center-slider .resort-images.slick-slide{
        margin: 0;
    }
    .service-section-heading h3 {
        font-size: 28px;
    }

    .service-section-heading p {
        font-size: 16px;
    }

    .custom-safari {
        flex-direction: column;
        gap: 30px;
    }

    .mn-safri-box {
        width: 100%;
    }

    .intiery-days {
        flex-direction: column;
        gap: 20px;
    }

    .pr-start {
        font-size: 24px;
    }

    .costomize-bespoke .intiery-day {
        width: 100%;
    }

    .estimated-prize h4 {
        font-size: 24px;
    }

    .add-bothh {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;
    }

    .intiery-day {
        width: 100%;

    }

    .package-safari-name h4 {
        font-size: 20px;
        text-align: center;
    }

    .icon-heading {
        font-size: 18px;
    }

    .icon-heading {
        font-size: 20px;
    }

    .package-page-heading p {
        max-width: 100%;
    }

    .package-inti ul {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .by-air {

        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .byair-details {
        width: 100%;
    }

    .desti-type {
        display: block;
    }

    .byair-details h5 {
        display: none;
    }

    div#howtoreach {
        padding-top: 0px;
    }

    .hunting {

        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #np-main-animal .about-main-heding h2 {
        font-size: 28px;
    }

    .season-time {
        flex-direction: column;
        gap: 15px;
    }

    .seoson-box {
        width: 100%;
    }

    .seoson-box {
        padding: 30px 30px;
    }

    .tourist-place-box {
        width: 100%;
    }

    img.banner-img-banner {
        height: 550px;
    }

    .our-details {
        border-top: none;
    }

    .element-counter {
        border: none;
        width: 50%;
        flex-grow: 1;
    }

    .details-heading {
        border-right: none;
        width: 100%;
        padding: 30px 10px 0px 10px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .data {
        flex-wrap: wrap;
    }

    .trusted-partner {
        padding-left: 0;
    }

    .about-main-heding h2 {
        font-size: 30px;
    }

    .about-main-heding h5 {
        font-size: 16px;
    }

    .animals-heading h2 {
        font-size: 30px;
    }

    .animals-uget {
        gap: 10px;
    }

    .animals-name {
        font-size: 18px;
    }

    .animals-uget span {
        width: 20px;
        height: 2px;
    }

    .safri-contact {
        width: 95%;
    }

    .lower-sfari-text {
        flex-direction: column;
    }

    .safari-name h5 {
        font-size: 42px;
    }

    .upper-safari-text h4 span {
        font-size: 52px;
    }

    .safari-name h5 {
        font-size: 38px;
    }

    .btn-gr-same a {
        font-size: 16px;
        padding: 10px 20px 10px 20px;
    }

    .upper-safari-text h4 {
        font-size: 38px;
    }

    .upper-safari-text {
        margin-bottom: 10px;
    }

    #our-safari {
        padding: 90px 0;
    }

    .testimonials-heading h2 {
        font-size: 30px;
    }



    .testimonials-heading p {
        max-width: 100%;
        font-size: 14px;
    }

    .client-testimonials p {
        font-size: 14px;
    }

    p.main-words {
        font-size: 32px;
    }

      .mn-safri-box img
{
    height: auto;
}


    .copyright {
        font-size: 14px;
    }

    .contect-text h4 {
        font-size: 36px;
        margin-bottom: 70px;
    }

    .contect-text h4::before {
        bottom: -35px;
    }

    .contect-paragraph p {
        font-size: 18px;
        gap: 30px;
    }

    .widget {
        margin-bottom: 30px;
    }

    .call-tr {
        gap: 30px;
    }

    h4.widget-title {
        margin-bottom: 15px;
    }

    .contact-widget_mail-title {
        margin-bottom: 15px;
    }

    .bird-container {
        animation-duration: 15s;
    }

    .banner-bird {
        top: -10px;
    }

    .about-main-heding {
        padding-bottom: 20px;
        margin-bottom: 34px;
    }

    .price-package span {
        font-size: 18px;
    }

    .package-name {
        font-size: 18px;
    }

    .package-para {
        font-size: 14px;
    }

    .package-details {
        width: 65%;
        gap: 8px;
    }

    @keyframes fly-right-one {
        0% {
            transform: scale(0.3) translateX(-100px);
        }

        10% {
            transform: translateY(-20px) translateX(100px) scale(0.4);
        }

        20% {
            transform: translateY(-10px) translateX(300px) scale(0.4);
        }

        30% {
            transform: translateY(5px) translateX(500px) scale(0.5);
        }

        40% {
            transform: translateY(5px) translateX(700px) scale(0.6);
        }

        50% {
            transform: translateY(10px) translateX(850px) scale(0.6);
        }

        60% {
            transform: translateY(10px) translateX(1000px) scale(0.7);
        }

        80% {
            transform: translateY(0px) translateX(1050px) scale(0.7);
        }

        100% {
            transform: translateY(-20px) translateX(1000px) scale(0.8);
        }
    }

    .service-row-items {
        font-size: 36px;
    }

    div#our-services {
        padding-top: 40px;
    }

    #about-us {
        padding: 40px 0 20px 0;
    }

    .bread-creamb-header ul li {
        font-size: 16px;
    }

    .bread-creamb-header ul li::after {
        font-size: 14px;
    }

    .breadcrumb-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .np-image img {
        width: 100%;
        scale: 0.7;
        height: 350px;
        object-fit: cover;
    }



}

@media screen and (max-width:576px) {
    section#portfolio-section-main {
        padding: 40px 0;
    }

    .destination-coverd-3 ul li {
        white-space: pre-wrap;
    }

    .pr-start {
        font-size: 20px;
    }

    .estimated-prize h4 {
        font-size: 22px;
    }

    .service-section-heading h3 {
        font-size: 24px;
    }

    .service-section-heading p {
        font-size: 15px;
    }

    .estimated-prize {
        padding: 30px 10px;
    }

    .costomize-bespoke {
        padding-bottom: 50px;
    }

    #package-details-page {
        padding: 40px 0;

    }

    .accesbility .our-louge {
        padding: 20px 0;
        padding-bottom: 20px;
    }

    .package-safari-name h4 {
        font-size: 18px;

    }

    .destinacane-map img {
        width: 100%;
        height: 200px;
        object-fit: fill;
    }

    .np-tab {
        font-size: 12px;
        text-align: center;
    }

    #animals-find-1 {
        padding: 40px 0;
    }

    .info-left {
        padding: 40px 25px;
    }

    #np-main-animal .about-main-heding h2 {
        font-size: 24px;
    }

    .np-image img {
        height: 310px;
    }

    .about-member {
        margin-top: 15px;
        text-align: center;
    }

    .breadcrumb-image img {
        height: 230px;
    }

    .choose-us-1 .choose-use-design {
        flex-direction: column;
        gap: 20px;
    }

    .choose-us-1 .choose-us-box {
        width: 100%;
    }

    section#our-team-deatils-main {

        padding: 40px 0;
    }

    #about-national-park {
        padding: 40px 0;
    }

    #choose-use {
        padding: 40px 0;
    }

    span.intro-head {
        margin-top: 0;
    }

    .bottom-footer {
        flex-direction: column;
        gap: 5px;
    }

    .services-boxes {
        margin-top: 0px;
    }

    div#our-services {
        padding-top: 30px;
    }

    .service-box:nth-child(even) {
        transform: translateY(0px);
    }

    .service-box.slick-current:nth-child(odd) {
        transform: translateY(0px);
    }

    .testimonials-heading {
        margin-bottom: 15px;
    }

    .testimonials-heading p {
        display: none;
    }

    .bird-container {
        width: 30px;
    }

    #menu-btn-1 svg {
        width: 26px;
    }

    .span-menu {
        font-size: 14px;
    }

    div#menu-btn-1 {
        gap: 5px;
    }

    #menu-btn-2 svg {
        width: 26px;
    }

    div#menu-btn-2 {
        gap: 5px;
    }

    .header-left-info>ul>li>a {
        font-size: 16px;
    }

    .header-left-info>ul>li>a.book-now {
        padding: 8px 26px 8px 26px;
    }

    .logo {
        width: 75px;
    }

    .btn-gr-same a {
        padding: 10px 20px 10px 20px;
    }

    #about-us {
        padding: 20px 0 20px 0;
    }

    .banner-data-details h2 {
        font-size: 26px;
    }

    .banner-data-details p {
        max-width: 100%;
    }

    .about-main-heding h2 {
        font-size: 24px;
    }

    .container-1 {
        max-width: 98%;
        padding: 0 10px;
    }

    #our-louge .testimonials-heading p {
        display: block;
    }

    .package-details {
        width: 65%;
        gap: 5px;
    }

    .form-group-a .form-group {
        margin-bottom: 15px;
        width: 100%;
    }

    .row.contect-main {
        max-width: 98%;
        margin: auto;
        width: 100%;
    }

    .animals-uget span {
        width: 10px;
        height: 2px;
    }

    .partner-uper p {
        font-size: 16px;

    }

    .partner-uper p::after {
        width: calc(100% - 140px);

    }

    .partner-uper-1 p::after {
        left: 0;
        width: calc(100% - 185px) !important;
    }

    .about-left-2::after {
        bottom: -20px;
        height: 1px;

    }

    .service-row-items {
        font-size: 32px;
    }

    .paw img {
        width: 40px;
    }

    .partner-image {
        margin: 0px 12px;
    }

    .about-right .btn-gr-same {
        margin-top: 10px;
    }

    .testimonials-heading h2 {
        font-size: 22px;
    }

    #contact-page {
        padding: 40px 0;
    }

    .contect-text h4 {
        font-size: 34px;
        margin-bottom: 70px;
    }

    .btns-group-1 {
        gap: 20px;
    }

    #testimonials {
        padding: 70px 0;
        padding-top: 40px;

    }

    .animals-uget {
        gap: 5px;
    }

    div#our-packages .btn-gr-same a {
        font-size: 14px;
        padding: 9px 16px 9px 16px;
    }

    #our-louge {
        padding: 40px 0;
    }

    img.banner-img-banner {
        height: 500px;
    }

    .byair-icon {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .byair-details p {
        font-size: 14px;
    }

    .np-book {
        margin-bottom: 20px;
    }

    .np-tabs {
        display: flex;
        gap: 10px;
    }

    .animals-heading h2 {
        font-size: 28px;
    }

    .policy-section {
        padding: 40px 0;
    }

    p.font-lk {
        font-size: 18px;
    }




}

@media screen and (max-width:440px) {
    .header-left-info>ul>li>a {
        font-size: 14px;
    }

    .animals-name {
        text-align: center;
    }

    p.main-words {
        font-size: 26px;
    }

    .package-details {
        width: 70%;
        gap: 5px;
    }

    .animals-name {
        font-size: 16px;
    }

    .paw {
        margin: 0 20px;
    }

    .package-name {
        font-size: 16px;
    }

    .paw img {
        width: 35px;
    }

    .btn-gr-same a {
        font-size: 16px;
        padding: 10px 20px 10px 20px;
    }

    .price-package span {
        font-size: 16px;
    }

    .header-left-info {
        gap: 12px;
    }

    .main-character {
        width: 240px;
    }

    #trusted-partners {
        padding: 40px 0;
        padding-top: 20px;
    }

    .about-main-heding {
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

    div#tourist-place {
        padding: 30px 0;
    }

    .about-main-heding h2 {
        font-size: 22px;
    }

    .package-details {
        padding: 10px 10px;
        padding-right: 2px;
    }

    div#our-packages {
        display: flex;
        padding: 40px 0;
        background-color: #20754b;
    }

    div#animals-find {
        padding: 0px 0;
        padding-bottom: 30px;
    }

    .upper-safari-text h4 {
        font-size: 34px;
    }

    .upper-safari-text h4 span {
        font-size: 46px;
    }

    .safri-contact a {
        color: white;
        font-size: 18px;
        font-weight: 500;
    }

    .safari-name h5 {
        font-size: 36px;
    }


}

@media screen and (max-width:390px) {
    .animals-name {
        font-size: 14px;
    }

    .header-left-info>ul>li>a {
        font-size: 14px;
    }

    .header-left-info>ul>li>a.book-now {
        padding: 7px 18px 7px 18px;
    }

    .header-left-info {
        gap: 10px;
    }

    .logo {
        width: 65px;
    }

    .banner-data-details h2 {
        font-size: 26px;
    }

    .banner-data-details {
        gap: 12px;
    }

    .main-character {
        width: 230px;
    }

    #trusted-partners {
        padding: 40px 0;
        padding-top: 20px;
    }

}