﻿/* Brand Colors */
*, *, *:after, *:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-moz-selection {
    background-color: #59A945;
    color: #fff;
}

::selection {
    background-color: #59A945;
    color: #fff;
}

.fc-today-button {
    text-transform: capitalize;
}

html, body {
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

div, header, nav, footer, section, aside, article {
    display: block;
}

a {
    color: #2E2E2E !important;
    text-decoration: none !important;
    transition: all 0.05s ease-in !important;
}

    a:hover {
        text-decoration: none !important;
        color: #59A945 !important;
    }

p {
    font-size: 16px;
    color: #2E2E2E;
    font-weight: 400;
}

@media (max-width: 576px) {
    p {
        font-size: 14px;
    }
}

ul {
    margin: 0;
    padding: 0;
}

    ul li {
        list-style-type: none;
        font-size: 16px;
        position: relative;
    }

img {
    width: 100%;
}

hr {
    border-color: #f1f3f6;
    opacity: 1;
}

.btn {
    border-radius: 24px !important;
}

.btn-primary {
    background-color: #59A945 !important;
    border-color: #59A945 !important;
    color: #fff !important;
}

    .btn-primary:hover {
        background-color: transparent !important;
        border-color: #fff !important;
        color: #fff !important;
    }

.btn-primaryy {
    background-color: #59A945 !important;
    border-color: #59A945 !important;
    color: #fff !important;
}

    .btn-primaryy:hover {
        background-color: transparent !important;
        border-color: black !important;
        color: black !important;
    }

.title {
    font-size: 32px;
    font-weight: 400;
    color: #59A945;
    margin-bottom: 20px;
    position: relative;
}

@media (max-width: 786px) {
    .title {
        font-size: 22px;
        font-weight: bold;
    }
}

.title.line {
    padding-left: 130px;
    margin-bottom: 30px !important;
}

.dropdown-black option {
    color: black;
}


.title.line::before {
    position: absolute;
    left: 0;
    width: 120px;
    height: 2px;
    content: "";
    background-color: #59A945;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in;
}

@media (max-width: 786px) {
    .title.line {
        padding-left: 0;
    }

        .title.line::before {
            display: none;
        }
}

@media (max-width: 786px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}
/* Custome CSS */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 30px;
}

    header .logo img {
        transition: all 0.4s ease-in;
    }

    header .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        header .nav .nav-items {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.3);
            border: 1px solid #fff;
            border-radius: 30px;
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
        }

            header .nav .nav-items button {
                background: transparent;
                border: none;
                padding: 8px 15px;
                color: #fff;
                font-size: 18px;
                display: flex;
                align-items: center;
                gap: 10px;
                cursor: pointer;
                border-radius: 30px;
                border: 1px solid transparent;
            }

                header .nav .nav-items button:hover {
                    background-color: #59A945;
                    border: 1px solid #fff;
                }

                header .nav .nav-items button i {
                    font-size: 24px;
                }

@media (max-width: 786px) {
    header {
        padding: 10px;
        position: relative;
        background-color: #59A945;
    }

        header .logo img {
            max-width: 90px;
        }
}

.scrolled {
    background-color: #59A945;
    padding: 10px !important;
}

    .scrolled .logo img {
        width: 100px;
    }

.hero-wrapepr {
    position: relative;
}

    .hero-wrapepr img {
        max-height: 750px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .hero-wrapepr .slider-caption {
        position: absolute;
        z-index: 2;
        left: 150px;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
    }

        .hero-wrapepr .slider-caption .caption-text {
            background-color: rgba(255, 255, 255, 0.3);
            border: 1px solid #fff;
            border-radius: 12px;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            padding: 30px;
        }

            .hero-wrapepr .slider-caption .caption-text h1, .hero-wrapepr .slider-caption .caption-text h2, .hero-wrapepr .slider-caption .caption-text h3, .hero-wrapepr .slider-caption .caption-text h4, .hero-wrapepr .slider-caption .caption-text h5, .hero-wrapepr .slider-caption .caption-text h6 {
                font-size: 32px;
                color: #fff;
            }

            .hero-wrapepr .slider-caption .caption-text p {
                font-size: 18px;
                color: #fff;
                font-weight: 500;
            }

    .hero-wrapepr .slider-action {
        position: absolute;
        left: 150px;
        bottom: 60px;
        width: 160px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .hero-wrapepr .slider-action .carousel-indicators {
            pointer-events: none;
            margin: 0;
            position: relative;
        }

            .hero-wrapepr .slider-action .carousel-indicators button {
                width: 10px;
                height: 3px;
                border: 24px;
                background-color: #fff;
                opacity: 0.5 !important;
            }

            .hero-wrapepr .slider-action .carousel-indicators .active {
                width: 40px;
                opacity: 1 !important;
            }

        .hero-wrapepr .slider-action button.arrows {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.3);
            border: none;
            border-radius: 50%;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            color: #fff;
        }

            .hero-wrapepr .slider-action button.arrows:hover {
                background-color: #59A945;
            }

@media (max-width: 786px) {
    .hero-wrapepr .slider-caption {
        left: 0;
        top: auto !important;
        bottom: 30px !important;
        transform: none !important;
    }

        .hero-wrapepr .slider-caption h1, .hero-wrapepr .slider-caption h2, .hero-wrapepr .slider-caption h3, .hero-wrapepr .slider-caption h4, .hero-wrapepr .slider-caption h5, .hero-wrapepr .slider-caption h6 {
            font-size: 22px !important;
        }

    .hero-wrapepr .slider-action {
        bottom: -15px;
        width: -moz-max-content;
        width: max-content;
        gap: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

        .hero-wrapepr .slider-action button.arrows {
            background-color: #59A945;
        }

    .hero-wrapepr img {
        min-height: 500px;
    }

    .hero-wrapepr .carousel-indicators {
        display: none;
    }
}

.booking-wrapper {
    padding: 100px 0;
}

    .booking-wrapper .form {
        padding: 60px 30px;
        border-radius: 12px;
        background: url(../images/slider.png) no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 420px;
        margin: auto;
    }

    .booking-wrapper form {
        background-color: rgba(255, 255, 255, 0.3);
        border: 1px solid #fff;
        border-radius: 12px;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        padding: 30px;
        width: 300px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .booking-wrapper form .input {
            width: 100%;
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
            display: flex;
            align-items: center;
            border-radius: 24px;
        }

            .booking-wrapper form .input input, .booking-wrapper form .input select {
                width: 100%;
                background-color: transparent;
                color: #fff;
                border: none;
                min-height: 40px;
                padding: 0 10px;
            }

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .popup .close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    .popup img {
        max-width: 80%;
        max-height: 80%;
        border-radius: 24px !important;
        -o-object-fit: contain;
        object-fit: contain;
    }

.gallary-wrapper .title {
    margin-bottom: 30px;
}

.item {
    border-radius: 12px !important;
    overflow: hidden;
    position: relative;
}

    .item img {
        transition: all 0.2s ease-in;
    }

    .item:hover {
        cursor: pointer;
    }

        .item:hover button {
            background-color: #59A945;
        }

        .item:hover img {
            transform: scale(1.1);
        }

    .item button {
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 2;
        background-color: rgba(255, 255, 255, 0.3);
        border: none;
        border-radius: 50%;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        color: #fff;
        width: 30px;
        height: 30px;
    }

        .item button:hover {
            background-color: #59A945;
        }

@media (max-width: 786px) {
    .gallary-wrapper img {
        max-height: 200px;
    }

    .gallary-wrapper .col-sm-3 {
        width: 50% !important;
        flex: 0 50%;
        margin-bottom: 20px;
    }
}

.pricing-wrapper {
    padding: 100px 0;
}

    .pricing-wrapper .private-tour .card {
        border: 1px solid #59A945;
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }

        .pricing-wrapper .private-tour .card .btn:hover {
            border-color: #2E2E2E;
            color: #2E2E2E;
        }

        .pricing-wrapper .private-tour .card .card-body h1, .pricing-wrapper .private-tour .card .card-body h2, .pricing-wrapper .private-tour .card .card-body h3, .pricing-wrapper .private-tour .card .card-body h4, .pricing-wrapper .private-tour .card .card-body h5, .pricing-wrapper .private-tour .card .card-body h6 {
            font-size: 18px;
            font-weight: bold;
        }

        .pricing-wrapper .private-tour .card .card-body .details i {
            font-size: 18px;
            color: #59A945;
        }

        .pricing-wrapper .private-tour .card .card-body table td {
            border-color: #f1f3f6;
        }

            .pricing-wrapper .private-tour .card .card-body table td:last-child {
                text-align: right;
            }

        .pricing-wrapper .private-tour .card .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #fff;
            border-bottom: 1px solid #f1f3f6;
            padding: 20px;
        }

            .pricing-wrapper .private-tour .card .card-header .price {
                font-size: 22px;
                color: #59A945;
                text-transform: uppercase;
                font-weight: bold;
            }

            .pricing-wrapper .private-tour .card .card-header h1, .pricing-wrapper .private-tour .card .card-header h2, .pricing-wrapper .private-tour .card .card-header h3, .pricing-wrapper .private-tour .card .card-header h4, .pricing-wrapper .private-tour .card .card-header h5, .pricing-wrapper .private-tour .card .card-header h6 {
                margin-bottom: 0;
                font-size: 22px;
            }

    .pricing-wrapper .daily-tour {
        overflow: hidden;
        border-radius: 12px;
        position: relative;
    }

        .pricing-wrapper .daily-tour .pack {
            position: absolute;
            right: 20px;
            bottom: 20px;
            z-index: 2;
            background-color: rgba(255, 255, 255, 0.3);
            border: 1px solid #fff;
            border-radius: 12px;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            padding: 12px;
        }

            .pricing-wrapper .daily-tour .pack ul {
                display: flex;
                flex-direction: column;
                gap: 5px;
                margin: 15px 0;
            }

                .pricing-wrapper .daily-tour .pack ul li {
                    padding-left: 28px;
                    position: relative;
                    color: #fff;
                }

                    .pricing-wrapper .daily-tour .pack ul li::before {
                        content: "\eb80";
                        position: absolute;
                        left: 10px;
                        width: 0px;
                        height: 18px;
                        font-family: remixicon !important;
                        color: #fff;
                        margin: -8px;
                    }

            .pricing-wrapper .daily-tour .pack h1, .pricing-wrapper .daily-tour .pack h2, .pricing-wrapper .daily-tour .pack h3, .pricing-wrapper .daily-tour .pack h4, .pricing-wrapper .daily-tour .pack h5, .pricing-wrapper .daily-tour .pack h6 {
                font-size: 32px;
                color: #fff;
                font-weight: 400;
            }

        .pricing-wrapper .daily-tour img {
            width: 100%;
            min-height: 500px;
            max-height: 500px;
            -o-object-fit: cover;
            object-fit: cover;
        }

@media (max-width: 786px) {
    .pricing-wrapper .daily-tour {
        margin-bottom: 20px;
    }

        .pricing-wrapper .daily-tour .pack {
            right: 0;
            width: 100%;
            bottom: 0;
        }

            .pricing-wrapper .daily-tour .pack h1, .pricing-wrapper .daily-tour .pack h2, .pricing-wrapper .daily-tour .pack h3, .pricing-wrapper .daily-tour .pack h4, .pricing-wrapper .daily-tour .pack h5, .pricing-wrapper .daily-tour .pack h6 {
                font-size: 22px;
            }
}

.cta-wrapper {
    margin-top: 50px;
}

    .cta-wrapper .cta-item {
        background: url(../images/cta.png);
        border-radius: 12px;
        overflow: hidden;
        text-align: center;
        position: relative;
        min-height: 400px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: 2;
    }

        .cta-wrapper .cta-item p {
            color: #2E2E2E;
        }

        .cta-wrapper .cta-item * {
            z-index: 2 !important;
        }

        .cta-wrapper .cta-item::after {
            z-index: -1;
            top: -60px;
            left: 0;
            width: 100%;
            height: 300px;
            content: "";
            position: absolute;
            background: linear-gradient(180deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
        }

.payment-wrapper {
    padding: 100px 0;
}

    .payment-wrapper .payment-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background-color: #f1f3f6;
        border-radius: 12px;
        height: 80px;
    }

        .payment-wrapper .payment-icon h1, .payment-wrapper .payment-icon h2, .payment-wrapper .payment-icon h3, .payment-wrapper .payment-icon h4, .payment-wrapper .payment-icon h5, .payment-wrapper .payment-icon h6 {
            font-size: 22px;
            color: #2E2E2E;
            margin: 0;
            padding-right: 60px;
            margin-right: 60px;
            border-right: 1px solid #868686;
        }

        .payment-wrapper .payment-icon img {
            max-width: 600px;
        }

@media (max-width: 786px) {
    .payment-wrapper .payment-icon {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

        .payment-wrapper .payment-icon h1, .payment-wrapper .payment-icon h2, .payment-wrapper .payment-icon h3, .payment-wrapper .payment-icon h4, .payment-wrapper .payment-icon h5, .payment-wrapper .payment-icon h6 {
            margin: 0;
            padding: 0;
            border: none;
        }
}

.contact-wrapper .map {
    position: relative;
}

.contact-wrapper .contact-info {
    position: absolute;
    right: 30px;
    top: 10px;
    min-height: 230px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-wrapper .contact-info ul {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .contact-wrapper .contact-info * {
        color: #fff;
    }

.contact-wrapper iframe {
    width: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 786px) {
    .contact-wrapper iframe {
        min-height: 600px;
    }

    .contact-wrapper .contact-info {
        right: auto !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100%;
    }
}

footer {
    margin-top: 50px;
    background-color: #59A945;
}

    footer .footer-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

        footer .footer-items .credit img {
            max-width: 90px;
        }

        footer .footer-items .copyright p {
            margin: 0;
            color: #fff;
        }

        footer .footer-items .social ul {
            display: flex;
            gap: 10px;
        }

        footer .footer-items .social a {
            color: #fff !important;
            font-size: 24px;
        }

@media (max-width: 786px) {
    footer .footer-items {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    header .nav {
        max-width: unset !important;
    }

    .gallery-wrapper .row .col-sm-3 {
        margin-bottom: 30px;
        max-width: 50%;
        flex: 0 0 50%;
    }

    .pricing-wrapper .row .col-sm-7,
    .pricing-wrapper .row .col-sm-5 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 992px) {
    .slider.carousel.slide {
        height: auto !important;
        overflow: unset !important;
    }

    .booking-wrapper .form {
        max-width: unset !important;
        padding-bottom:;
    }

    .pricing-wrapper {
        padding-bottom: 0 !important;
    }

        .pricing-wrapper .daily-tour .pack {
            width: 90% !important;
            right: 5% !important;
            bottom: 5% !important;
        }

            .pricing-wrapper .daily-tour .pack ul li {
                margin: 0 !important;
            }

                .pricing-wrapper .daily-tour .pack ul li::before {
                    margin: 0 !important;
                }
}

footer .credit {
    margin: 0 !important;
}

@media (max-width: 768px) {
    footer .footer-items .social {
        width: 100%;
        display: flex;
    }

        footer .footer-items .social ul {
            flex-direction: row;
            justify-content: center;
        }

            footer .footer-items .social ul li {
                margin: 0 !important;
            }
}

.nav-open {
    height: 100% !important;
}
/*# sourceMappingURL=style.css.map */
