@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: "Abril Fatface", serif;
    font-family: "Montserrat", sans-serif;
}

.post p {
    color: #212529 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-family: "Abril Fatface", serif;
}

p {
    color: #808396;
    font-family: "Montserrat", sans-serif;
}

.fade-in {
    opacity: 0;
    transform: translateY(40%);
    transition: all 2s ease-out;
}

@media (max-width: 768px) {
    .fade-in {
        transform: translateY(0%);
    }
}

.active {
    opacity: 1;
    transform: translateY(0);
}

.navbar-brand {
    padding: 0px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px 10px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #ffc167;
}

.navbar-brand img {
    width: 256px;
}

.bg-light {
    background-color: white !important;
}

p.text-uppercase {
    color: white;
}

.dropdown-menu {
    display: none;
    /* Prevent Bootstrap from overriding */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px !important;
}

.nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeInSlideUp 0.5s ease-in-out;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    position: absolute;
    top: 0;
    /* left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-text {
    text-align: start;
    position: absolute;
    /* top: 46%;
    left: 26%; */
    top: 27%;
    left: 5%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    animation: myAnim 2s ease 0s 1 normal forwards;
}

/* Transparent navbar over hero */
nav.navbar {
    position: absolute;
    top: 20px;

    left: 0;
    right: 0;
    width: 100%;
    background: transparent !important;
    z-index: 100;

    border-radius: 0;
    box-shadow: none;
}

nav.navbar .nav-link {
    color: #fff;
}

.offcanvas-body .nav-link {
    color: #000 !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C 255%2C 255%2C 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@keyframes myAnim {
    0% {
        opacity: 0;
        transform: translateY(250px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text p {
    color: white;

}


/* Show submenu when the parent is hovered */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

/* Ensure submenu items are aligned correctly */
.dropdown-submenu {
    position: relative;
}

/* Show sub-submenus on hover */
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Optional: Add styles for smooth transitions */
.dropdown-menu {
    transition: opacity 0.3s ease;
}

.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
}


.hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
}

.hero-text button:hover {
    background-color: #555;
    color: white;
}

/* dropdown icons */

/* General styles */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.nav-item .dropdown-menu {
    display: none;
    width: max-content;
}

/* .nav-item.dropdown.open .dropdown-menu {
    display: block;
} */

.dropdown-toggle-icon {
    /* cursor: pointer; */
    /* display: inline-block; */
    /* padding-left: 0.5rem; */
    /* vertical-align: middle; */
    font-size: 12px;
    position: absolute;
    right: 17px;
}

@media (min-width: 768px) {
    .nav-item:hover>.dropdown-menu {
        display: block;
    }


}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .dropdown-toggle::after {
        content: '';
        display: inline-block;
        margin-left: 0.5rem;
        border: 0.3em solid transparent;
        border-top-color: currentColor;
        vertical-align: middle;
    }

    .nav-item>.dropdown-menu {
        display: none;
        position: static;
    }

}

.hero-text h1 {
    font-size: 7rem;
}

.hero-text p {
    font-size: 22px;
}

.navbar {
    z-index: 10000;
    position: absolute;
    width: 85%;
    border-radius: 7px;
    animation: slide-in-top 2s ease 0s 1 normal forwards;
    padding: 0px 50px;
}

.quick-featured-links .no-owl-carousel h6 {

    text-align: justify;
}

@keyframes slide-in-top {
    0% {
        opacity: 0;
        transform: translateY(-250px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text .btn-primary {
    width: 290px;
    padding: 1rem 0;
    margin-top: 2rem;
}

.btn-primary {
    background-color: #ffc167;
    color: black;
    border-radius: 7px;
    font-weight: 600;
    border: none;
}

.navbar .btn-primary {
    width: 100%;
    padding: 10px 0;
    width: 200px;
}

.btn-primary.btn:hover {
    color: #000000;
    background-color: #e3ba7d;
    border-color: #ffffff;
}

.nav-link {
    font-weight: 600;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #ffc167 !important;
    color: #000000 !important;
}

.set-width {
    width: 235px;
}

.dropdown-item {
    padding: 10px 18px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item i {
    font-size: 10px;
}



.set-box {
    position: relative;
    top: 25%;
    left: 24%;
    width: fit-content;
    display: flex;
    gap: 2rem;
    z-index: 3;
    animation: slide-in-right 2s ease 0s 1 normal forwards;
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(250px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.boxes h6 {
    position: relative;
    top: 8.5rem;
    font-size: 16px;
    left: 26px;
    text-decoration: none;
    width: 88px;
    font-weight: 600;
    z-index: 1;
}

.boxes {
    width: 200px;
    height: 200px;
    background: #555;
    border-radius: 48px;
    color: white;
    text-decoration: none;
    border: 3px solid #ffc1675e;
}

.boxes img {
    width: 200px;
    height: 200px;
    border-radius: 48px;
    color: white;
    text-decoration: none;
    border: 3px solid #ffc1675e;
    z-index: 0;
    object-fit: cover;
}



.boxes:hover {
    transform: scale(1.1);
    transition: 500ms linear;
}

.what-is {
    padding: 5rem 0;
    text-align: center;
}

.three-choice {
    display: flex;
    margin: 4rem 0 0;
}

.three-choice img {
    width: 90px;
    margin: 0 0 2rem
}

.three-choice h5 {
    font-weight: 600;
}

.choice-1,
.choice-2,
.choice-3 {
    padding: 0 3rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 52%);
    transition: background-color 0.3s ease;
    height: 100%;
    border-radius: 12px;
}

.card-text {
    font-size: 12px;
}

.popular-place {
    padding: 5rem 0;
}

.new-featured-place {
    padding-top: 2rem;
}

.new-featured-place .card-img-top {
    border-radius: 13px;
    height: 300px;
    object-fit: cover;
}

.new-featured-place .card {
    border: 0;
}

.card:hover h5 {
    color: #f1a333;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 22px;
    margin: 3rem auto;
}

.grid-container div {
    position: relative;
    border-radius: 25px;

}

.grid-container img {
    width: 100%;
    display: block;
    border-radius: 25px;
    height: 312px;

}

.item1 {
    grid-column: 1 / span 1;
    height: 312px;

}

.item2 {
    grid-column: span 1;
    /* Default single column width */
    height: 312px;

}

.item3 {
    grid-column: 3 / span 4;
    height: 312px;
}

.item4 {
    height: 312px;
    grid-column: 1 / span 2;
}

.item5 {
    grid-column: 3 / span 4;
    height: 312px;
}

/* CSS for Zoom In Animation */
.plan .dropdown-toggle::after {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* Two columns on smaller screens */
    }

    .item1,
    .item5 {
        grid-column: span 2;
        /* Adjust full-width items for smaller screens */
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
        /* Single column for very small screens */
    }

    .item1,
    .item5 {
        grid-column: span 1;
    }
}

.gallery {
    padding: 10rem 0;
}

.grid-container .overlay .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 22px;
    color: #fff;
    z-index: 2;
}

/* Linear overlay styles */
.grid-container .overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 22px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(253, 253, 253, 0) 57%, rgba(0, 0, 0, 0.75) 86%);
}

.overlay-text h5 {
    font-size: 39px;
    color: #ffffffb3;
    margin: 0;
}

.blog .card-body a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
}

.blog .card-body {
    padding: 1rem 1rem;
}

.blog .card {
    border-radius: 15px;
    height: 335px;
    border: 1px solid #d2d2d2 !important;
}

.blog .card img {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

.blog {
    padding: 10rem 0;
}

.quick-links h6 {
    padding: 10px 0 0;
}

.quick-featured-links .card-img-top {
    border-radius: 20px;
    height: 281px;
    object-fit: cover;
}

.travel-carousel .card {
    border-radius: 20px;
    height: auto;
    object-fit: cover;
}

.quick-links {
    padding: 0 0 10rem;
}

.quick-featured-links {
    padding: 2rem 0 0;
}

.card h6 {
    text-decoration: none;
}

.card {
    border: 0px !important;
}

.about-hero .hero-text {
    position: absolute;
    top: 50%;
    left: 22%;
    transform: none;
    color: white;
    z-index: 2;
    width: 56%;
}

.about-hero .hero-text h1 {
    font-size: 3rem;
    line-height: 77px;
    letter-spacing: 2px;

}

.about-hero span {
    background-color: rgb(255, 255, 255);
    color: rgb(33 37 41);
    padding: 5px 15px;
    border-radius: 54px;
    font-family: "Abril Fatface", serif;
}

.about-us {
    padding: 10rem 0 0;
}

.section-title {
    margin-bottom: 4rem;
}

.why-about .card-custom {
    border: 0;
}

.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card .card-body {
    flex-grow: 1;
}

.hero-image.about-hero {
    position: relative;
    height: 75vh;
}

.why-about .card-custom img {
    margin-bottom: 1rem;
    width: 80px;

}

.why-about .card-text {
    font-size: 14px;
    padding: 0 2rem;
}

.news-card img {
    height: 258px
}

.why-about {
    padding: 8rem 0;
    text-align: center;
}

.about-gallery {
    padding: 10rem 0;
}

.about-gallery .gallery-abt {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 250px 150px;
    grid-auto-flow: dense;
}

.about-gallery .item {
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* for larger screens... */
    @media (min-width: 480px) {

        /* first item will have size 2x2 */
        &:first-child {
            grid-area: 1 / 1 / span 2 / span 2;
        }

        /* and every third item will have size 2x1 */
        &:nth-child(3n) {
            grid-column: span 2;
        }

    }
}

.banner-set {
    border-radius: 15px;
    background-color: #000000;
    color: white;
    padding: 4rem;
}

.cta {
    background: url("../images/bg.jpg") fixed 50% 50%;
    background-size: cover;
    padding: 120px 0px;
    position: relative;
}

.cta::before,
.latest-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cta-item {
    position: relative;
    z-index: 10000;
}

.latest-blog {
    position: relative;
    padding: 6rem 0;
}

.bg-2 {
    background-attachment: fixed;
    background: url("../images/gallery/gallery-4.jpg");
    background-size: cover;
}

.news-info {
    position: relative;
    z-index: 10000;
}

.border-1 {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bg-gray {
    background: #fff1dd;
}

.mt-70 {
    margin-top: -70px;
    z-index: 1000;
    padding: 0 0 5rem;
}

.text-color {
    color: #e5a649;
}

.bg-about {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 45%;
    min-height: 279px;
    background: url("../images/side-about.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.about-what {
    margin: 10rem 0;
}

.news-info .img-fluid {
    max-width: 100%;
    height: 228px;
    object-fit: cover;
}

a {
    text-decoration: none !important;
}

.text-white-50 {
    color: rgb(255 255 255 / 77%) !important;
}

.filter-city .card img {
    height: 330px;
    border-radius: 20px;
    object-fit: cover;
}

.filter-city .card {
    border: 0;
}

.filter-city .card-body {
    padding: 010px 0 0;
}

.filter-city .card h5 {
    font-weight: 600;
    margin: 0;
}

.filter-city {
    padding: 4rem 0;
}


.contact-form {
    padding: 6rem 0;
}

.contact-form h2 {
    font-weight: 600;
}


.contact-form .form-control {
    background: #f5f8f9;
    height: 48px;
    border: 1px solid #cecece;
    box-shadow: none;
    width: 100%;
}

.contact-form .form-group {
    padding-bottom: 15px;
    margin: 0px;
}

.contact-content {
    padding-left: 4rem;
}

.address-block li {
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.address-block i {
    font-size: 24px;
}


.top-head-blog .owl-carousel .card {
    width: 380px;
    max-width: 100%;
    height: 680px;
    display: flex;
    flex-direction: column;
}

.top-head-blog .owl-carousel .card img {
    object-fit: cover;
    height: 100%;
}

.top-head-blog .owl-carousel {
    position: relative;
    display: flex;
    flex-direction: row;

}

.top-head-blog .owl-carousel .card-content {
    position: absolute;
    padding: 0 0 1rem;
    bottom: 30px;
    color: white;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

.top-head-blog .owl-item {
    margin: 0px !important;
}

.owl-carousel.owl-drag .owl-item,
.top-head-blog .owl-carousel .card img,
.top-head-blog .owl-item .card-img-overlay,
.top-head-blog .owl-carousel .card {
    border-radius: 0px !important;
}


.blogs-item p.text-uppercase {
    color: #676767;
    margin-bottom: 4px;
}

.blogs-item .text-muted {
    font-size: 12px;
}

.blogs-item .btn-outline-dark {
    padding: 0;
    margin: 0;
    color: #bf7100;
}

.fade-in-css {
    animation: fadeIn 6s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Image with 400px width */
.img-400 {
    height: 400px;
    object-fit: cover;
}

/* Image with 200px width */
.img-250 {
    height: 250px;
    object-fit: cover
}

.blogs-item {
    padding: 5rem 0;
}

hr {
    margin: 1rem 5rem;
}


.btn-outline-dark {
    border: 0px !important;
}

.widget {
    margin-bottom: 30px;
    /* padding-bottom: 35px; */
}

.post .content img {
    width: 100% !important;
}

.footer a,
.footer p {
    color: #5a5a5a;
    text-decoration: none;
    font-weight: 500;
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) #cdd7e1 !important;
}

.media img {
    height: 100px;
    width: 160px !important;
    object-fit: cover;
    max-width: initial;
}

.media {
    display: flex;
    gap: 15px;
}

.post {
    padding: 1rem 0 5rem;
}

.footer {
    padding-top: 5rem;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.footer .navbar-brand img {
    width: 260px;
}

.top-content .title-border-lg::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 300px;
    left: -30px;
    bottom: -50px;
    background: #ffc167;
}

.top-content {
    padding: 5rem 0;
}

.title-border-lg {
    position: relative;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.top-content .btn-primary {
    padding: 10px 20px;
}


.cta-block {
    /* background: url(./images/bg.jpg) no-repeat bottom; */
    /* background-size: auto; */
    background: #212529;
}

.cta-block {
    position: relative;
    z-index: 1;
    margin: 5rem 0;
}

.cta-block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 46%);
    z-index: -1;
}

.p-9 {
    padding-right: 11rem;
}

.text-based {
    padding: 5rem 0;
}

.travel-carousel .owl-carousel .item {
    display: flex;
    width: 302px;
    flex-direction: column;
    margin: 0 9.7px;
    align-items: flex-start;
}

.travel-carousel .owl-carousel .item img,
.options .owl-carousel .item img {
    height: 435px;
    object-fit: cover;
}

.travel-carousel .item img {
    height: 435px;
    object-fit: cover;
}

.travel-carousel .owl-theme {
    display: flex;
    gap: 25px;
    overflow: hidden;
}

.travel-carousel .owl-carousel .item h6 {
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.travel-carousel .card {
    width: 100%;
}

.travel-carousel {
    padding: 10rem 0rem 5rem;
}

.hidden-content {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.card-link {
    display: block;
}

.travel-options .card h6 {
    text-decoration: none;
    position: absolute;
    bottom: 17px;
}

.top-content h1 {
    font-size: 60px;
}

.top-content h2 {
    font-size: 26px;
    margin-top: 6px;
}

.top-content {
    background-image: linear-gradient(#fff 24%, #fff1dd 0);
}

.to-do-box {
    padding: 5rem 0
}

.to-do-box .boxes {

    border: none;
}

.to-do-box img {
    width: 100%;
    height: 291px;
    border-radius: 20px;
    object-fit: cover;

    border: 3px solid #ffc167;
}

.to-do-box .boxes h6 {
    position: initial;
    margin: 15px 0px 0 8px;
    color: black;
    width: 100%;
}

.to-do-box p {
    position: initial;
    margin: 0 0px 0 8px;
    color: #808396;
    width: 100%;
}

/* Style for flip card container */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    perspective: 1000px;
    cursor: pointer;
}

/* Flip card inner container */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    height: 420px;
    border-radius: 20px;

}

/* Front side of the flip card */
.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;

}

/* Back side of the flip card */
.flip-card-back {
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
    color: black;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* This will align the content to the bottom */
    border: 1px solid #d8d8d8;
    align-items: center;

}

.flip-card-back .btn-primary {

    width: 137px;

}

/* Flip effect on hover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Style for h6 outside flip */
.quick-featured-links h6 {
    text-align: center;
    margin-top: 0px;
    font-size: 14px;
    font-weight: 600;
    color: black;
    text-align: center;
}

.quick-featured-links .card {
    border-radius: 20px !important;
}

.gallery p {
    margin: 1rem 15rem;
}

.rail-item i {
    font-size: 55px;
    color: #e5a649;

}

.rail-item h4 {
    font-weight: 600;
}

.benefits {
    padding: 10rem 0;
}


.choose-content {
    padding: 5rem 0;
    background: #fff1dd;
}

.choose-content .section-title {
    margin-bottom: 40px;
}

.choose-content .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.choose-content .section-title .subtitle {
    font-size: 18px;
    color: #777;
}

.choose-content .benefit-item {
    margin-bottom: 30px;
}

.choose-content .card {
    border: 0;
    padding: 30px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
    transition: all 0.3s ease-in-out;
    background: #fff1dd;
}

.choose-content .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.choose-content .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.choose-content .card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e5a649;

}

.choose-content .card p {
    font-size: 16px;
    color: #777;
}

@media (max-width: 767px) {
    .choose-content .card {
        padding: 10px;
        border: 1px solid #d2d2d2 !important;
    }
}


.options .owl-carousel .item img {
    height: 320px;
}

.travel-carousel .owl-carousel .item img,
.options .owl-carousel .item img {
    height: 420px;
    object-fit: cover;
}

.FAQ {

    padding: 8rem 0;
}

.accordion-button:not(.collapsed) {
    color: #ffc167;
    box-shadow: none;
}


.service-item {
    position: relative;
    padding-left: 60px;
}

.service-item i {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 50px;
    color: #ffc167;
}

.double-section {
    padding: 10rem 0;
}


.double-section h2 {
    font-family: "Abril Fatface", serif;

}


.style-2 {
    padding: 10rem 0;
}



.media-body .list-inline-item {
    display: inline-block;
    font-size: 13px;
}

.ticket-section {
    padding: 5rem 0;
}

.ticket-section h1 {
    margin-bottom: 1.5rem;
}

.ticket-section .cards {
    display: flex;
    /*flex-wrap: wrap;*/
    flex-wrap: nowrap;
    gap: 1rem;
}

.ticket-section .card {
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    /* height: 22rem; */
    width: 15rem;
    border-radius: 1rem;
    box-shadow: 0 0 2px #ffffff80;
    align-items: flex-end;
    justify-content: flex-end;
    border: 1px solid #cecece !important;
}

.ticket-section .card img {
    width: 100%;
    border-radius: 1rem 1rem 0rem 0;
    height: 180px;
    object-fit: cover;
    /* background-image: url("https://images.unsplash.com/photo-1633538475696-a93e30810e09"); */
}



.ticket-section .details {
    width: 100%;
    display: flex;
    justify-content: center;

    transition: ease 0.5s;
}



.ticket-section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 1rem;
    justify-content: space-between;
    height: 150px;
}

.ticket-section .content h2 {
    color: #0c0d19;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ticket-section .content p {
    color: #0c0d19;
    margin-bottom: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
}

.dest.to-do-box img {
    height: 380px;
}

/* .ticket-section .content a:hover {
    background-position: right;
} */

.text-based ul {
    margin-left: 2rem;
    color: #808396;

}

.policy-container .section-title {
    margin-bottom: 3rem;
    font-size: 45px;
}

.policy-container {
    margin: 3rem 0;
}

.policy-section,
.terms-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-weight: 700;
    font-size: 38px;

}

li {
    color: #5a5a5a;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
}

.policy-section.contact-info {
    font-size: 16px;
    font-weight: bold;
    margin-top: 40px;
}

.faq-page .accordion-button {
    font-size: 16px;
    font-weight: 600;
    background-color: #ffd494ba !important;
    color: #303030;
    padding: 18px 20px;
}

.faq-page .accordion-item {
    border-radius: 10px
        /* border: 1px solid #e2e2e2 !important; */
}


.faq-page .accordion-button:not(.collapsed) {
    color: #000000;
    box-shadow: none;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
    border-radius: 10px;
}

.terms-content {
    line-height: 1.8;
    color: #333;
}

.terms-content h2 {
    font-weight: 700;
    font-size: 32px;
}

.terms-content h4 {
    font-weight: 700;
}

.terms-content {
    padding: 5rem 0;
}

.owl-carousel {
    display: flex;
    flex-direction: column;
}

.blogs-item .btn-outline-dark:hover {
    background-color: white;
    color: #000000;

}

.blogs-item .card-body {
    padding: 20px 0;
}

.flipping.quick-featured-links h6 {
    margin-top: 10px;
}

/* .top-head-blog .owl-carousel {
    width: 100%;
    overflow: hidden;
}

.top-head-blog .owl-carousel,
.blogs-item {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
} */

.set-side,
.set-side.show {
    position: absolute;
    left: 100%;
    top: 15px;
}

.step-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 17px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.step-card h4 {
    color: #ffc167;
    margin-bottom: 15px;
}

.step-card p {
    color: #434343;
    font-weight: 500;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
    margin-bottom: 5rem;
}

.step-card i {
    font-size: 30px;
    margin-right: 10px;
}

.text-based .btn-primary {
    padding: 10px 20px;
    width: auto;
}

.ticket-info {
    padding: 8rem 0 0;
}

.ticket-list {
    padding: 1rem 0 1rem;
    list-style: none;
}

.dropdown-menu.plan {
    width: 240px;
}

.convenient-way-travel {
    padding: 5rem 0;
}

.traveling-title h2 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 60px;
}

.traveling-title strong {
    font-weight: bolder;
}

.traveling-title span {
    font-weight: 600;
    font-size: 30px;
}

.swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.swiper-slide {
    width: auto !important;
}

/* Style for both arrows */
.swiper-button-next,
.swiper-button-prev {
    background-color: rgb(255, 255, 255) !important;
    /* Semi-transparent black */
    color: #bf960f !important;

    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    /* Circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 20px) !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 20px) !important;
}

/* Arrow hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.8);
    /* Lighter background on hover */
    color: #000;
    /* Black arrow on hover */
}

.swiper-button-prev {
    left: -30px;
    /* Move left */
}

.swiper-button-next {
    right: -30px;
    /* Move right */
}

.swiper-pagination {
    position: relative !important;
}

/* Hide arrows on small screens */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 14px;
        left: 5px;
        right: 5px;
    }
}

/* Optional: Custom Swiper icons */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
    /* Adjust arrow size */
    font-weight: bold;
}

.swiper-slide.nav-item .nav-link.active {
    border: 2px solid #f1a333;
    padding: 0px;
    border-color: #f1a333;
    border-radius: 15px;
}

.travel-box-wrap {
    padding: 10px;
    position: relative;
    width: 100%;
}

.travel-box {
    width: 303px;
    height: 208px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0px 2px 10px 0px #0000001F;
}

.travel-box:hover {
    transform: scale(1.05);
}

.travel-img-wrap {
    width: 100%;
    height: 215px;
    overflow: hidden;
}

.travel-img-wrap img {
    width: 100%;
    height: 207px;
    object-fit: cover;
    border-radius: 10px;
}

.travel-img-info {
    padding: 0 5px;
    text-align: center;
    position: absolute;
    bottom: 0;
    color: white;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0px 62px 0px;
    transition: .6s ease-in-out;
}

.travel-img-info h2 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.travel-box::before {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 63.91%, #000000 98.99%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s ease-in-out;
}

.nav-link.active .travel-box::before {
    background: linear-gradient(180deg, rgba(197, 153, 10, 0.2) 50%, #f1a333 95.16%);
}

.tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.tab-info {
    max-width: 900px;
    padding: 20px;
    text-align: center;
}

.tab-info h3 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 24px;
}

.tab-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tab-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.tab-info a:hover {
    text-decoration: underline;
}

.swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #007bff;
    border-radius: 50%;
    padding: 10px;
    color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #c69a0f;
}

.swiper-button-disabled {
    display: none;
}


.service-item .bxs-check-circle {
    font-size: 35px;
}

.ticket-item strong {
    font-size: 18px;
}

/* .ticket-item::marker {} */

.social-icons a {
    color: rgb(90 90 90);
    font-size: 18px;
}

.offcanvas-body {
    padding-top: 0;
}


@media (min-width:1200px) and (max-width:1399px) {
    .travel-carousel .owl-carousel .item {
        width: 260px;
    }

    .travel-carousel .owl-carousel .item img {
        height: 370px;
    }

    .top-head-blog .owl-carousel .card {
        width: 100%;
    }

    .travel-box {
        width: 350px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-image.about-hero {
        height: 51vh;
    }

    .travel-box {
        width: 291px;
    }

    .navbar .btn-primary {
        width: 95px;
    }

    .navbar {
        padding: 0px 30px;
    }

    .top-head-blog .owl-carousel .card {
        width: 100%;
    }

    .travel-carousel .owl-carousel .item {
        width: 215px;
    }

    .about-hero .hero-text h1 {
        font-size: 34px;
        line-height: 62px;
    }

    .service-item {
        padding-left: 40px;

    }

    .service-item i {
        font-size: 38px;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .flip-card-inner {
        height: 275px;
    }

    .flip-card-back p {
        margin-bottom: 5px;
        padding: 9px;
        font-size: 12px;
    }

    .flip-card-back span {
        font-size: 12px !important;
    }

    .flip-card-back {
        font-size: 12px;
        padding: 9px
    }

    .travel-carousel .owl-carousel .item img {
        height: 275px;
    }

    .flipping.quick-featured-links h6 {
        margin-top: 0px;
    }

    .top-head-blog .owl-carousel .card-content {
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

    .hero-text .btn-primary {
        margin-top: 0rem;
    }

    .top-head-blog .owl-carousel .card-content {
        padding: 0 10px 1rem;
    }

    .set-box {
        top: 32%;
        left: 12%;
    }

    .about-hero .hero-text {
        left: 16%;
        width: 65%;
    }

    .filter-city .card img {
        height: 285px;
        border-radius: 20px;
    }

    .ticket-section .card {
        width: 222px;
    }

    .new-featured-place .card-img-top {
        border-radius: 13px;
        height: 200px;
    }

    .hero-text {
        top: 23%;
    }

    .choice-1,
    .choice-2,
    .choice-3 {
        padding: 0 1rem;
    }

    .gallery {
        padding: 4rem 0;
    }

    .quick-featured-links .card-img-top {
        height: 175px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .top-head-blog .owl-carousel .card-content {
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

    .traveling-title h2 {
        margin-bottom: 25px;
    }

    .swiper {
        width: 100%;
        overflow: auto;
    }

    .about-hero .hero-text h1 {
        font-size: 2rem;
    }

    .travel-box {
        width: 326px;
        height: 195px;
    }

    .swiper-wrapper {
        display: flex;
        justify-content: flex-start;
    }

    .swiper-wrapper .nav-link {
        height: auto;
    }

    .flipping.quick-featured-links h6 {
        margin-top: 0px;
    }

    .navbar {
        width: 95%;
    }

    .filter-city p {
        font-size: 12px;
    }

    .top-head-blog .owl-carousel .card {
        width: 100%;
    }

    .latest-blog .card-body {
        padding: 6px !important;
    }

    .latest-blog h3 {
        font-size: 18px;
        line-height: 23px;
        margin-top: 3px !important;
    }

    .news-info .img-fluid {
        height: 150px;
    }

    .travel-carousel .owl-carousel .owl-item,
    .travel-carousel .owl-carousel .item {
        width: 330px;

    }

    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .navbar-collapse {
        text-align: center;
    }

    .p-9 {
        padding-right: 0rem !important;
    }

    .dropdown-menu.set-width {
        position: absolute;
        left: 288px;
    }

    .hero-text h1 {
        font-size: 5rem;
    }

    .hero-text .btn-primary {
        width: 223px;
        padding: 10px 0;
        margin-top: 0rem;
    }

    .choice-1,
    .choice-2,
    .choice-3 {
        padding: 0 10px;
    }

    .set-box {
        top: 31%;
        left: 0%;
    }


    .gallery p {
        margin: 1rem 5rem;
    }

    .blog-card {
        margin-bottom: 2rem;
    }

    .quick-featured-links .card-img-top {
        height: 255px;
    }

    .quick-featured-links h6 {
        margin-bottom: 23px;
    }

    .new-featured-place .card-img-top {
        height: 360px;
    }

    .new-featured-place .card {
        border: 0;
        margin-bottom: 2rem;
    }

    .news-info .row.justify-content-center,
    .new-featured-place .row.justify-content-center {
        justify-content: flex-start !important;
    }

    .popular-place {
        padding: 0rem 0 3rem;
    }

    .gallery {
        padding: 4rem 0;
    }

    .about-hero .hero-text h1 {
        line-height: 68px;
    }

    .about-hero .hero-text {
        top: 42%;
        left: 9%;
        width: 79%;
    }

    .filter-city .card img {
        height: 219px;
    }

    .filter-city .card h5 {
        font-size: 16px;
    }


    .cta-block {
        margin: 3rem 0;
    }

    .ticket-section .card {

        width: 221px;
    }

    .ticket-section {
        padding: 5rem 0 1rem;
    }

    .travel-carousel {
        padding: 5rem 0rem 5rem;
    }

    .dest.to-do-box img {
        height: 295px;
    }

    .FAQ {
        padding: 4rem 0;
    }

    .choose-content .card {
        border: 0;
        padding: 9px;
    }

    .img-400 {
        height: 260px;
    }

    .img-250 {
        height: 169px;
    }

    .blogs-item h4 {
        font-size: 16px;
    }

    .contact-content {
        margin-top: 5rem;
        padding-left: 0rem;
    }

    .hero-image.about-hero {
        position: relative;
        height: 55vh;
    }

    .filter-city .p-3 {
        padding: 0.5rem !important;
    }

    .about-content p.mb-5 {
        margin-bottom: 1rem !important;
    }

    .top-head-blog .owl-item .card-title a {
        font-size: 18px;

    }

    .top-content {
        background-image: linear-gradient(#fff 17%, #fff1dd 0);
    }
}

@media (min-width:320px) and (max-width:767px) {
    .travel-carousel .owl-carousel .item {
        width: 96% !important;
    }

    nav.navbar {
        top: 9px;
    }

    .benefits {
        padding: 4rem 0;
    }

    .flipping.quick-featured-links h6 {
        margin-top: 0px;
    }

    .blog {
        padding: 5rem 0;
    }

    .our-core-slider .swiper-slide {
        width: 100% !important;
    }

    .navbar {
        width: 90%;
    }

    .benefits {
        padding: 5rem 0;
    }

    .double-section {
        padding: 4rem 0;
    }

    .filter-city .card img {
        height: 385px;
        border-radius: 20px;
        object-fit: cover;
    }

    .quick-featured-links {
        padding: 0rem 0 0;
    }

    .choose-content .icon,
    .choose-content .card h3 {
        margin-bottom: 0;
    }

    .rail-item.mb-5 {
        margin-bottom: 2rem !important;

    }

    .benefits {
        padding: 3rem 0;
    }

    .choose-content {
        padding: 2rem 0;
    }

    .bg-about {

        min-height: 100%;
    }

    .about-what {
        margin: 4rem 0;
    }

    .cta {
        padding: 4rem 0px;
    }

    /* 
    .dst.dropdown .drop::after,
    .pln.dropdown-toggle::after {
        display: inline-block;
        margin-left: 10.255em;
    } */

    .top-head-blog .owl-carousel .card {
        width: 100%;
    }

    .latest-blog .card-body {
        padding: 6px !important;
    }

    .latest-blog h3 {
        font-size: 22px;
        line-height: 27px;
        margin-top: 3px !important;
    }

    .latest-blog .mb-5 {
        margin-bottom: 1rem !important;
    }

    .quick-links h6 {
        padding: 10px 0px 0px 10px;
    }

    .quick-links {
        padding: 0 0 5rem;
    }

    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 0;
    }

    .travel-carousel .owl-theme {
        gap: 0;
    }

    .travel-carousel .owl-carousel .item h6 {
        text-align: left;
    }

    .swiper {
        width: 100%;
        overflow: auto;
    }

    .travel-box {
        width: 100%;
        height: 100%;
    }

    .swiper-wrapper {
        display: flex;
        justify-content: flex-start;
    }

    .swiper-wrapper .nav-link {
        height: auto;
        width: 100%;
    }

    .traveling-title h2 {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .tab-content {
        padding: 0;
    }

    .tab-info h3 {
        font-size: 26px;
    }

    /* .travel-carousel .owl-carousel .owl-item {
        width: auto !important;
    } */
    .travel-box-wrap {
        padding: 12px;
    }

    .tab-info {
        padding: 0;
    }

    .ticket-info {
        padding: 5rem 0 0;
    }

    .about-item {
        padding-left: 50%;
    }

    .ticket-list {
        padding: 0;
        margin: 0 !important;
    }

    .top-head-blog .owl-carousel .card-content {
        display: block;
        overflow: hidden;
        white-space: nowrap;
    }

    .dropdown-submenu .dropdown-menu,
    .dropdown-menu .dropdown-menu {
        left: 0;
        top: 0;
        position: relative;
        background: #f4f4f4;
    }

    .mb-75 {
        margin-bottom: 0 !important;
    }

    .policy-section h2,
    .terms-content h2 {
        font-size: 23px;
    }

    .quick-featured-links .card-img-top {
        height: 376px;
    }

    .address-block li {
        font-size: 15px;
    }

    .img-400,
    .img-250 {
        height: 360px;
    }

    .navbar-collapse {
        text-align: center;
    }

    .text-based ul {
        margin-left: 0;
        width: 84%;
    }

    .top-head-blog .owl-carousel .card {
        height: 100vh;
    }

    .about-hero .hero-text {
        top: 40%;
        left: 0%;
        width: 100%;
        padding: 0px 1rem;
    }

    .contact-content {
        margin-top: 5rem;
        padding-left: 0rem;
    }

    .cta-block {
        margin: 3rem 0;
    }

    .navbar-brand img {
        width: 200px;
    }

    .blog {
        padding: 4rem 0;
    }

    .hero-image.about-hero {
        height: 80vh;
    }

    .about-hero .hero-text h1 {
        font-size: 26px;
        line-height: 48px;
    }



    .navbar-collapse .d-flex {
        justify-content: center;
    }

    .FAQ {
        padding: 4rem 0;
    }

    .top-content h1 {
        font-size: 42px;
    }

    .travel-carousel {
        padding: 5rem 0rem 5rem;
    }

    .text-based {
        padding: 3rem 20px;
    }

    .p-9 {
        padding-right: 0 !important;
    }

    .latest-blog {

        padding: 4rem 0;
    }

    .double-section {
        padding: 4rem 0 0;
    }

    .steps-container {
        padding: 1rem 0;
    }

    footer .navbar-brand img {
        width: 210px;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-text .btn-primary

     {
            width: 198px;
            padding: 9px;
            margin-top: 0rem;
        }
        .hero-text {
        
            top: 20%;}
    .navbar-nav {
        align-items: flex-start;
        padding: 0px !important;
    }

    .three-choice {
        gap: 3rem;
        display: flex;

        flex-direction: column;
    }

    .blog {
        padding: 3rem 0;
    }

    .choice-1,
    .choice-2,
    .choice-3 {
        padding: 0 0 1rem 0;
    }

    .what-is {
        padding: 4rem 0 0;
    }

    .gallery p {
        margin: 2rem 0rem;
    }

    .hero-text p {
        font-size: 16px;
    }

    .new-featured-place .card-img-top {
        height: 356px;
    }

    .new-featured-place .card {
        margin-bottom: 2rem;
    }

    .gallery {
        padding: 3rem 0;
    }

    .set-box {
        gap: 1rem;
        left: 0%;
    }

    .boxes,
    .boxes img {
        width: 111px;
        height: 120px;
        border-radius: 10px;
    }
    .boxes h6 {
        top: 8rem;
        left: 6px;}
    .blog .card {
        margin-bottom: 1rem;
    }

    .quick-featured-links h6 {
        margin-bottom: 3rem;
        font-size: 20px;
    }

    .travel-carousel .card {
        height: 394px;
    }

    .card h6 {
        font-size: 20px;
    }

    .blog .card-body a {
        font-size: 15px;
    }

    .to-do-box p {
        margin: 0 0px 25px 9px;
    }

    h1 {
        font-size: 32px;
    }

    .ticket-section .card {
        width: 100%;
    }

    .ticket-section .cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ticket-section .card img {
        height: 300px;
    }

    .top-head-blog .owl-item .card-title a {
        font-size: 16px;
    }

    p.text-uppercase {
        font-size: 12px;

    }

    .top-content {
        background-image: linear-gradient(#fff 13%, #fff1dd 0);
    }
}

@media (min-width:425px) and (max-width:767px) {
    .ticket-section .card {
        width: 80%;
    }

}

@media (min-width:320px) and (max-width:980px) {

    .dst.nav-item.dropdown {
        position: relative;
        display: flex !important;
        justify-content: center !important;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 100%;

    }

    .nav-item.dropdown.pln {
        width: 100%;
    }

    .dst.dropdown .dropdown-toggle::after {
        display: none !important;
    }

    .dst .drop {
        display: flex;
        align-items: center;
        gap: 17px;
        /* justify-content: space-between; */
        width: 100%;
    }

    .dst.dropdown .drop::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }

}

@media only screen and (max-width: 1600px) {
    .top-head-blog .owl-carousel .card {
        width: 100%;
    }
}

@media only screen and (min-width: 1800px) {
    .top-head-blog .owl-carousel .card {
        width: 100%;
    }
}

@media only screen and (max-width: 2400px) {
    .top-head-blog .owl-carousel .card {
        width: 100%;
    }
}

@media (min-width:320px) and (max-width:992px) {
    .drp span {
        width: 60%;
        text-align: end;
    }

    .float-end {
        width: max-content;
        text-align: end;
    }

    .dropdown-menu {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-submenu a.dropdown-item,
    .menu-two a.two-m {
        width: 100%;
    }

    .navbar {
        left: 17px;
        animation: none;
        padding: 12px 23px;
    }

    .navbar-nav .dropdown-menu {
        position: relative;
        left: 0px;
        /* background: #f4f4f4; */
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #e0e0e0 !important;
        color: #000000 !important;
        font-weight: 700;

    }

    .set-side.dropdown-menu {
        left: 0;
        top: 0;
        width: 100%;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        width: 100%;
    }

    .dropdown-menu.plan {
        width: 100%;
    }

    .set-width {
        width: 100%;
    }

    .dropdown-menu.plan {
        width: 100%;
    }

    .set-width .dropdown-menu {
        border: 0;
    }

    .dropdown-toggle-icon {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 8px 0;
        text-align: left;
        font-weight: 700;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-submenu a.dropdown-item,
    .menu-two a.two-m {
        width: 100%;
    }

    .dropdown-menu.shadow-sm {
        box-shadow: none !important;
        width: 100%;
    }

    .dropdown-menu.shadow-sm.p-2 {
        padding: 0px !important;
    }
}

@media all and (min-width: 992px) {

    /* .dropdown-menu {
      width: 13rem;
    } */
    .dropdown-submenu a.dropdown-item,
    .menu-two a.two-m {
        width: 231px;
    }

    .mega-submenu {
        left: 100%;
        top: 0;
        min-width: 25rem;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        top: 62px;
    }

    .mega-menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .dropdown-menu li {
        position: relative;
    }

    .dropdown-menu .submenu {
        display: none;
        left: 100%;
        top: 0;
    }

    .dropdown-menu>li:hover>.submenu,
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 100%;
        width: 100%;
        padding: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: #ffffff;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    }

    .offcanvas-collapse.open {
        visibility: visible;
        transform: translateX(-100%);
    }
}