:root {
    --parkinsans: "Parkinsans", sans-serif;
    --oswald: "Oswald", sans-serif;
    --playfair: "Playfair Display", serif;
    --primary-color: #18B645;
    --youtube: #7e0000;
    --instagram: #795dd9;
    --whatsapp: #5e8e66;
    --facebook: #0044b4;
    --google: #dc5600;
    --tripadvisor: #007955;
    --tiktok: #26282c;
}

body {
    position: relative;
    top: 0 !important;
}

a {
    text-decoration: none;
}

ul {
    padding-left: 0;
}

p {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    font-family: var(--parkinsans);
}

.navbar {
    position: fixed;
    width: 100%;
    background: linear-gradient(to bottom, #00000050, transparent);
    z-index: 5;
    padding: 10px 0;
    transition: .5s;
}

.scroll-navbar {
    background: #fff;
    /* Change to your desired color */
    box-shadow: 0 2px 5px #00000010;
    /* Optional shadow for effect */
    transition: all .5s ease;
    /* Smooth transition */
}

.navbar .nav-link {
    font-family: var(--oswald);
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    transition: .5s;
}

.navbar.scroll-navbar .nav-link {
    color: #000;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .navbar-brand img {
    width: 200px;
    filter: brightness(0) invert(1);
    transition: .5s;
}

.navbar.scroll-navbar .navbar-brand img {
    filter: none;
}

footer img {
    width: 200px;
    float: right;
    filter: brightness(0) invert(1);
}

.ml-auto {
    margin-left: auto;
}

.btn-green-fill,
.btn-green-fill:hover {
    font-family: var(--oswald);
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border-radius: 0;
    border: 1.5px solid var(--primary-color);
    padding: 5px 10px;
    transition: .5s;
}

.btn-submit,
.btn-submit:hover {
    font-family: var(--oswald);
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 0;
    border: 1.5px solid #000;
    padding: 12px 10px;
    transition: .5s;
    width: 100%;
}

.btn-green-fill:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-submit:hover {
    background: #fff;
    color: #000;
}

.btn-green-border,
.btn-green-border:hover {
    font-family: var(--oswald);
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 0;
    border: 1.5px solid var(--primary-color);
    padding: 5px 10px;
    position: relative;
    transition: .5s;
    overflow: hidden;
}

.btn-green-border::before {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 100%;
    left: 0;
    bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: -1;
    transition: .5s;
}

.btn-green-border:hover {
    color: #fff;
}

.btn-green-border:hover::before {
    width: 120%;
}

.btn-white-border,
.btn-white-border:hover {
    font-family: var(--oswald);
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 0;
    border: 1.5px solid #fff;
    padding: 5px 10px;

    transition: .5s;

}

.btn-white-border:hover {
    color: var(--primary-color);
    background-color: #fff;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    left: 10%;
    top: 40%;
    text-align: left;
    transform: translateY(-50%, -50%);
    width: 60%;
}

.hero-content h1 {
    font-size: 52px;
    font-family: var(--playfair);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.destination {
    padding: 40px 0;
}

.section-title {
    margin-bottom: 20px;
}

.whatsapp-icon {

    animation: fadeInOut 5s infinite;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999;
}

@keyframes fadeInOut {
    0% {

        transform: scale(.9);
    }

    30% {

        transform: scale(1);
    }

    50% {

        transform: scale(.8);
    }

    70% {

        transform: scale(1);
    }

    100% {

        transform: scale(.9);
    }
}

.section-title h5 {
    font-size: 32px;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--playfair);
    padding: 0;
    margin: 0 0 10px 0;
}

.destination-card {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.destination-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}



.container-xl {
    max-width: 85% !important;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(#00000030 10%, transparent);
    content: "";
    left: 0;
    top: 0;
}

.overlay:before {
    position: absolute;
    width: 100%;
    height: 0;
    background: #18B64550;
    content: "";
    left: 0;
    bottom: 0;
    transition: .5s;
}

.destination-card:hover .overlay:before {
    height: 100%;
}

.destination-card:hover h5.destination-title {
    margin-bottom: 50px;
}


h5.destination-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-family: var(--playfair);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    transition: .5s;
}

.about {
    background: linear-gradient(to right, #00000080 40%, transparent 70%), url(../img/about-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.about .section-title {
    color: #fff;
}

.about-page-content h5 {
    font-size: 42px;
    font-family: var(--oswald);
    font-weight: 400;
}

.about-page-content h6 {
    font-size: 35px;
    font-family: 'Julietta Messie', sans-serif;
    font-style: italic;

}

.about-page-content span {
    font-weight: 500;

}

.about-page-content p {}

.about-page-content img {
    width: 100%;
    object-fit: cover;

}

.about-img {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-img h3 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    padding: 8px 20px;
    background: var(--primary-color);
    position: absolute;
    width: 100%;
    bottom: 0;
    font-family: var(--oswald);
    margin: 0px 0px 10px 0px;
    left: 0;
}

.vision-card h5 {
    font-weight: 400;
    font-size: 32px;
    font-family: var(--oswald);
    border-bottom: 2px solid var(--primary-color);
}

.vision-card p {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
}


.package {
    padding: 40px 0;
}

.package-card,
.news-card {
    background-color: #fff;
    box-shadow: 1px 2px 2px #00000020;
    position: relative;
}

.package-img,
.news-img {
    position: relative;
    overflow: hidden;
}




.package-img img,
.news-img img {
    width: 100%;
    height: 200px;
    transform: scale(1.1);
    object-fit: cover;
    transition: 1s;
}

.package-card:hover .package-img img,
.news-card:hover .news-img img {
    transform: scale(1);

}

.package-details,
.news-details {
    padding: 20px;
}

.package-details h5,
.news-details h5 {
    font-size: 20px !important;
    font-weight: 500;
    color: #000;
    font-family: var(--playfair) !important;
    transition: .5s;
    text-transform: none !important;
}

.package-details h5:hover,
.news-details h5:hover {
    color: var(--primary-color);
}

.package-details p,
.news-details p {
    margin: 0;
}

.duration {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    margin-right: 20px;
    display: flex;
}

.package-list {
    margin-top: -60px;
    margin-bottom: 30px;
    display: flex;
}

.time {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 20px;
    display: flex;
    background-color: #00000050;
    margin: 0;
}

.package-card .time {
    background-color: #ffe100;
}

.relative {
    position: relative !important;
}

.duration li {
    height: 45px;
    width: 45px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    text-align: center;
    text-align: center;
    list-style: none;
}

.package-list li {
    border: 1px solid var(--primary-color);
    padding: 10px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    text-align: center;
    text-align: center;
    list-style: none;
    margin: 0;
    margin-right: 10px;

}

.package-list li.package-price {
    background-color: #fff;

}

.package-list li.package-price h5,
.package-list li.package-price h6 {
    color: var(--primary-color) !important;
}

.duration li:first-child {
    margin-right: 5px;
}

.duration h5 {
    font-size: 25px !important;
    color: #fff !important;
    font-family: var(--oswald) !important;
    font-weight: 400;
    margin: 0 !important;
    padding: 0 !important;
}

.leftside .package-list h5 {
    font-size: 25px;
    color: #fff;
    font-family: var(--oswald);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.package-list h6 {
    font-size: 10px;
    color: #fff;
    font-family: var(--oswald);
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.duration h6 {
    font-size: 10px !important;
    color: #fff !important;
    font-family: var(--oswald) !important;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.time h5 {
    font-size: 12px !important;
    color: #fff !important;
    font-family: var(--oswald) !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
}

.package-card .time h5 {
    color: #000 !important;
}

.time li {
    list-style: none;
}

.time li:first-child {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1.5px solid #fff;
}

.instagram-card {
    width: 100%;
    height: 250px;
    position: relative;

}

.gallery-card {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;

}

.gallery-card::before {
    background: transparent;
    position: absolute;
    content: ' \F220';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: #fff;
    left: 0;
    top: 0;
    transform: translateY(50%) rotate(90deg);
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.gallery-card::after {
    background: #18B64580;
    position: absolute;
    content: '';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    transition: .5s;
}

.gallery-card:hover::after {
    height: 100%;
}

.gallery-card:hover::before {
    transform: none;
    opacity: 1;
}

.instagram-card img,
.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.instagram-card:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000080;
    content: "Instagram";
    left: 0;
    top: 0;
    transition: .5s;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: 'Julietta Messie', sans-serif;
    font-style: italic;
    color: #fff;
    font-size: 40px;
    opacity: 0;
}

.instagram-card:hover:before {
    opacity: 1;
}

.news {
    padding: 40px 0;
}

.splide__arrow {
    width: 45px;
    height: 45px;
    background: #ffffff50;
    opacity: 1;
}

.splide__arrow svg {
    fill: #fff
}

.splide__arrow:over {
    width: 45px;
    height: 45px;
    background: #fff;
    opacity: 1;
}

.splide__arrow:hover:not(:disabled) {
    opacity: 1 !important;
}

footer {
    background: linear-gradient(to top, #00000080, #00000080), url(../img/footer-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 0 0;
}

.footer-about h5 {
    color: #fff;
    font-size: 28px;
    font-family: var(--playfair);
    font-weight: 500;
    text-transform: uppercase;
}

.footer-about p {
    color: #fff;
    padding: 0;
    margin: 0;
}

h5.footer-title {
    color: #fff;
    font-size: 22px;
    font-family: var(--playfair);
    font-weight: 500;
    text-transform: uppercase;
}

footer .footer-links,
footer .contact-links {
    margin-top: 20px;
}

footer .footer-links li {
    list-style: none;
    padding-left: 10px;
    position: relative;
    margin-bottom: 7px;
    line-height: 18px;
}

footer .footer-links li:before {
    position: absolute;
    content: '';
    background: var(--primary-color);
    height: 100%;
    width: 3px;
    left: 0;
    top: 0;
}

footer .footer-links li a {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--oswald);
    color: #fff;
    text-transform: uppercase;

    padding: 0;
    margin: 0;
}

footer .contact-links li a {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--oswald);
    color: #fff;
    line-height: 18px;
    padding: 0;
    margin: 0;

}

footer .contact-links li {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--oswald);
    color: #fff;
    line-height: 22px;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

footer .contact-links li:last-child {
    border-bottom: none;
}

footer .contact-links li {
    list-style: none;
}

footer .social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

footer .social-links a {
    color: #fff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    margin-right: 8px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    position: relative;
    transition: .5s;
    margin-bottom: 10px;
}

footer .social-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

.copyright {
    padding: 20px 0;
    background: #000;
    margin-top: 20px;
}

.copyright p,
.copyright a {
    font-size: 16px;
    font-family: var(--oswald);
    font-weight: 400;
    color: #fff;
    padding: 0;
    margin: 0;
    transition: .5s;
}

.copyright a:hover {
    color: var(--primary-color);
}


.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
    z-index: 10;
    position: absolute;
    top: 27px;
    right: 20px;
}

.page-hero {
    padding: 40px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-hero:before {
    background: linear-gradient(to bottom, #00000060, transparent);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.page-hero h5 {
    font-size: 42px;
    color: #fff;
    font-family: var(--playfair);
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

.page-nav {
    position: absolute;
    bottom: 0;
    background: #ffffff80;
    padding: 5px 20px;
}

.page-nav ul {
    display: flex;
    justify-content: start;
    margin-bottom: 0;
    text-align: left;
    flex-wrap: wrap;
}


.page-nav ul li {
    list-style: none;
    color: #000;
    font-family: var(--oswald);
    text-transform: uppercase;
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
}

.page-nav ul li a {
    color: #000;
}

.page-nav ul li::before {
    height: 60%;
    width: 2px;
    background-color: #000;
    transform: rotate(20deg);
    right: 0;

    position: absolute;
    content: '';
}

.page-nav ul li:last-child::before {
    display: none;
}

.page-nav ul li:last-child {
    margin: 0;
    padding: 0;

}

.package-page {
    padding: 40px 0;
}


.package-page .nav-tabs {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--primary-color);
}

.package-page .nav-tabs .nav-link {
    background-color: #fff;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    font-family: var(--oswald);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
}

.package-page .nav-tabs .nav-link.active {
    background-color: var(--primary-color);

    color: #fff;
    border-radius: 0;
    font-family: var(--oswald);
    font-weight: 400;

}

.package-page-details {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #ccc;
}

.package-page-details h5 {
    font-size: 28px;
    color: #000;
    font-weight: 500;
    font-family: var(--playfair);
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.package-page-details p {
    margin: 0;
    padding: 0;
}

.locations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.locations li {
    list-style: none;
    margin: 0;
    line-height: 15px;
    margin-left: 5px;
    font-family: var(--oswald);
    font-weight: 400;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid #000;
    margin-bottom: 5px;
}

.locations li.category {
    color: var(--primary-color);
    border-color: var(--primary-color);

}

.locations li a {
    transition: .5s;
    color: #000;
}

.locations li a:hover {
    color: var(--primary-color);
}

.sidebar,
.leftside {
    position: relative;

}

.booking-form {
    background-color: #fff;
    padding: 30px 20px;
    margin-top: -150px;
}

.booking-form input,
.contact-form input,
.booking-form textarea,
.contact-form textarea {
    width: 100%;
    border: 1.5px solid #000;
    padding: 10px;
    font-family: var(--parkinsans);
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-form label {
    font-size: 15px;
    font-family: var(--parkinsans);
    font-weight: 500;
    margin-bottom: 5px;
}

.booking-form h5 {
    font-size: 28px;
    color: #000;
    font-weight: 500;
    font-family: var(--playfair);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;

}

.contact-form h5,
.location-map h5 {
    font-size: 32px;
    color: #000;
    font-weight: 400;
    font-family: var(--oswald);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;

}

.location-map {
    margin-top: 30px;
}

.location-map iframe {
    width: 100%;
}

.contact-form {
    background-color: #f7f7f7;
    padding: 30px 20px;
}

.contact-details h5 {
    font-size: 32px;
    color: #000;
    font-weight: 400;
    font-family: var(--oswald);
    text-transform: uppercase;

    margin-bottom: 20px;
    padding: 0;

}

.contact-details {
    text-align: left;
}

.contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.contact-phone i {
    color: #000;
    font-size: 30px;
    margin-right: 10px;
}

.contact-phone a {
    color: #000;
    font-family: var(--parkinsans);
    font-weight: 500;
    font-size: 24px;
}

.tour-map h5,
.featured-package h5 {
    font-size: 28px;
    color: #000;
    font-weight: 500;
    font-family: var(--playfair);
    text-transform: uppercase;
    margin-bottom: 20px;

}

.tour-map,
.featured-package {
    margin-top: 30px;
}

.booking-form .btn-green-fill {
    width: 100%;
}

.itinerary-title {
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
    justify-content: space-between;
}

.itinerary-title h5 {
    background-color: var(--primary-color);
    padding: 10px;
    color: #fff;
    font-family: var(--oswald);
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.itinerary-title h6 {
    text-align: center;
    padding: 10px;
    color: #000;
    font-family: var(--oswald);
    font-size: 20px;
    margin: 0;
    font-weight: 400;
}

.itinerary-list {
    padding: 10px;
}

.itinerary-list ul {
    margin: 10px 0;
    padding: 0;

}

.itinerary-list>ul>li,
.includes ul li,
.excludes ul li {
    list-style: none;
    margin-left: 0;
    padding-left: 22px;
    position: relative;
    font-family: var(--parkinsans);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.itinerary-list>ul ul li {
    list-style: none;
    margin-left: 15px;
    padding-left: 25px;
    position: relative;
    font-family: var(--parkinsans);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.includes ul li,
.excludes ul li {
    margin-left: 0;
}

.itinerary-list>ul>li:before,
.itinerary-list>ul ul li:before,
.includes ul li:before {
    position: absolute;
    content: '\F26E';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: var(--primary-color);
    left: 0;
    font-size: 26px;
    font-weight: 400;
}

.itinerary-list>ul ul li:before {
    position: absolute;
    content: '\F309';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: var(--primary-color);
    left: 0;
    font-size: 26px;
    font-weight: 400;
}

.excludes ul li:before {
    position: absolute;
    content: '\F62A';
    position: absolute;
    font-family: 'bootstrap-icons';
    color: var(--primary-color);
    left: 0;
    font-size: 26px;
    font-weight: 500;
}





.tour-map iframe {
    width: 100%;
    height: 400px;
}

.splide__pagination {

    display: block !important;
    left: auto !important;
    right: 10%;
}

.splide__pagination__page {
    width: 20px !important;
    height: 5px !important;
    border-radius: 0;
    transform: none;
    transition: .5s;
}

.splide__pagination__page.is-active {
    transform: none;
    width: 30px !important;
}

.contact-social {
    margin-top: 20px;
}

.contact-social a i {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    background-color: #000;
    display: block;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}

.home-chat {
    position: fixed;
    left: 0px;
    bottom: 30px;
    z-index: 9999;
}

.home-chat a i {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    background-color: #000;
    display: block;
    text-align: center;
    line-height: 40px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    padding-right: 5px;
    margin-bottom: 5px;

}

.home-chat a i.bi.bi-youtube,
.contact-social a i.bi.bi-youtube {
    background-color: var(--youtube);
}

.home-chat a i.fa.fa-facebook-f,
.contact-social a i.fa.fa-facebook-f {
    background-color: var(--facebook);
}

.contact-social a i.bi.bi-whatsapp {
    background-color: var(--whatsapp);
}

.home-chat a i.fa.fa-tripadvisor,
.contact-social a i.fa.fa-tripadvisor {
    background-color: var(--tripadvisor);
}

.home-chat a i.bi.bi-instagram,
.contact-social a i.bi.bi-instagram {
    background-color: var(--instagram);
}

.home-chat a i {
    transition: .5s;
}

.home-chat a:hover i {

    width: 50px;
}

.home-chat a i.bi.bi-google,
.contact-social a i.bi.bi-google {
    background-color: var(--google);
}

.home-chat a i.bi.bi-tiktok,
.home-chat a i.bi.bi-threads,
.home-chat a i.bi.bi-twitter-x,
.contact-social a i.bi.bi-tiktok,
.contact-social a i.bi.bi-threads,
.contact-social a i.bi.bi-twitter-x {
    background-color: var(--tiktok);
}

.Language select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 400;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 0;
    padding: 5px 10px;
    border: none;
    font-size: 14px;
    border: 1px solid var(--black);
    border-right: none;
    font-family: var(--oswald);
    text-transform: uppercase;
}

.Language {
    cursor: pointer;
    position: fixed;
    bottom: 65%;
    left: -10px;
    z-index: 100;
    transition: .5s;
    transform: rotate(90deg);
}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {

    display: none !important;
}

.news-short {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin: 20px 0;
}

.news-short i {
    font-size: 35px;
    margin-top: -20px;
}

.share-buttons a {
    font-family: var(--oswald);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-right: 10px;
}

.share-buttons a i.bi.bi-twitter-x {
    color: var(--tiktok);
}

.share-buttons a i.fa.fa-facebook-f {
    color: var(--facebook);
}

.share-buttons a i.bi.bi-whatsapp {
    color: var(--whatsapp);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #18B64540;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #18B64560;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #18B645;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media(min-width:990px) {
    .mw-lg-50 {
        max-width: 50%;
    }

    .border-lg-0 {
        border: none;
    }
}

@media(max-width:990px) {
    .tour-map {
        margin-top: 0;
    }

    .about-img {
        margin-bottom: 20px;
    }

    h5.footer-title,
    .footer-about p {
        margin-top: 20px;
    }

    footer {
        text-align: center;
    }

    footer img {
        float: none;
    }

    footer .social-links {
        justify-content: center;
    }

    footer .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    footer .footer-links li {
        margin-left: 10px;
    }

    footer .footer-links li:first-child {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content {
        position: absolute;
        left: 50%;
        top: 50%;
        text-align: center;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    .booking-form {
        margin-top: 30px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:active,
    .navbar-toggler:focus {
        box-shadow: none;
    }


    .navbar-nav {
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 80vw;
        height: 70vh;

        position: fixed !important;
        top: 50%;
        left: 50%;
        background-color: #ffffff;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease-in-out;
        z-index: 5;
    }



    .navbar-toggler .navbar-toggler-icon {
        background-image: url('../img/menu-burger.svg') !important;

    }

    .navbar-toggler .navbar-toggler-icon.close {


        background-image: url('../img/cross.svg') !important;

    }

    .navbar .nav-link,
    .navbar.scroll-navbar .nav-link {
        color: #000;
    }

    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand img {
        filter: none;
    }
}

@media(max-width:768px) {

    .package-page .nav-tabs {

        border-bottom: none;
    }

    .package-page .nav-tabs .nav-link {

        border: 1px solid var(--primary-color);
        margin: 5px;
    }

    .page-hero h5 {
        font-size: 32px;
    }

    .page-hero {
        align-items: end;
        text-align: left;
    }

    .whatsapp-icon {
        width: 120px;
        right: 20px;
        bottom: 20px;
    }

    .page-nav ul {
        text-align: left;
        flex-wrap: wrap;
    }

    .package-page-details p,
    .about-page-content p {
        text-align: justify;
    }

    .home-chat a i {
        width: 35px;
        height: 35px;
        font-size: 18px;
        color: #fff;
        background-color: #000;
        display: block;
        text-align: center;
        line-height: 35px;
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
        padding-right: 5px;
        margin-bottom: 5px;

    }

    .container-xl {
        max-width: 95% !important;
    }

    .page-nav ul li {
        font-size: 12px;
    }
}