:root {
    --primary-color: #f4b118;
    --secondary-color: #62021c;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --bg-light: #f8f9fa;
    --low-dark-text: #6c757d;
    --gradient-color: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
}

/* Common Heading */
.commom-heading-title {
    margin-bottom: 2rem;
}

.common-section-title {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.common-heading-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.common-heading-title span {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* common Heading End */
/* Global link reset */
a {
    text-decoration: none;
    /* color: inherit !important; */
}

/* Card Buttons */

.common-card-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 5px 0;
}

.common-card-buttons .btn {
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.common-btn-query {
    background: #eb9b18;
    color: #fff;
}

.common-btn-details {
    background: var(--primary-color);
    color: white;
}

.common-btn-query:hover {
    background: var(--secondary-color);
    color: #fff;
}

.common-btn-details:hover {
    background: var(--secondary-color);
    color: #fff;
}

ul.whatsapp-enq-btn {
    position: fixed;
    bottom: 0;
    background: #26d367;
    width: 100%;
    left: 0;
    display: none;
    border-radius: 0;
    z-index: 999;
    display: flex;
    margin-bottom: 0;
}
ul.whatsapp-enq-btn li {
    width: 50%;
    text-align: center;
    color: #fff;
    padding: 9px 0;
    font-size: 18px;
}
ul.whatsapp-enq-btn li a {
    color: #fff;
}
ul.whatsapp-enq-btn li:last-child {
    background: #12a87b;
}

/* Media Quary */
@media (max-width: 767.98px) {
    .commom-heading-title {
        margin-bottom: 1.25rem;
        text-align: center;
    }

    .common-section-title {
        letter-spacing: 4px;
        font-size: 0.8rem;
    }

    .common-heading-title h2 {
        font-size: 1.8rem;
    }
}

/* For Mobile Devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .commom-heading-title {
        margin-bottom: 1rem;
    }

    .common-section-title {
        letter-spacing: 3px;
        font-size: 0.75rem;
    }

    .common-heading-title h2 {
        font-size: 1.5rem;
    }
}

/* Container Media Quary */
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1300px;
    }
}

/* Popup Overlay */

.modal-backdrop.show {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content.popup-form-container {
    background: linear-gradient(135deg, #683415 0%, #c06b14 100%);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(-30px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal.show .modal-content.popup-form-container {
    transform: scale(1) translateY(0);
}

.popup-form-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px !important;
    max-width: 550px;
    width: 90%;
    position: relative;
    transform: scale(0.8) translateY(-50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-form-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.popup-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.popup-header p {
    font-size: 16px;
    opacity: 0.95;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-popup {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group-popup i {
    position: absolute;
    left: 15px;
    color: #dd7b21;
    font-size: 18px;
}

.form-group-popup input,
.form-group-popup textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-group-popup input:focus,
.form-group-popup textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-row-popup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.popup-submit-btn {
    background: linear-gradient(135deg, #620721 0%, #cf3306 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
}

.popup-submit-btn i {
    transition: transform 0.3s ease;
}

.popup-submit-btn:hover i {
    transform: translateX(5px);
}

/* Floating Buttons Left */
.floating-buttons-left {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.float-btn-whats_aap {
    height: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    animation: fadeInLeft 0.6s ease forwards;
    opacity: 0;
}

.float-btn-whats_aap i {
    margin-right: 10px;
    animation: rotate360 4s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.float-btn-whats_aap span {
    font-size: 15px;
    font-weight: 500;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    animation: fadeInLeft 0.6s ease forwards;
    opacity: 0;
}

.float-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.float-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.float-btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 20px 15px;
    border-radius: 5px;
}

.call-btn {
    background: linear-gradient(135deg, #28a745 0%, #34d058 100%);
    bottom: 20px;
}

.query-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.customize-trip-btn {
    position: fixed;
    right: -73px;
    top: 50%;
    height: 34px;
    background: #26d367;
    width: 180px;
    z-index: 1;
    transform: rotate(-90deg);
    text-align: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
    border: 1px solid #26d367;
    z-index: 111;
}
.customize-trip-btn a {
    color: #fff;
    line-height: 28px;
    display: inline;
}
.customize-trip-btn a i {
    transform: rotate(96deg);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-form-container {
        padding: 15px !important;
    }

    .popup-header h2 {
        font-size: 24px;
    }

    .form-row-popup {
        grid-template-columns: 1fr;
    }

    .floating-buttons-left {
        left: 15px;
        bottom: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .scroll-to-top {
        right: 15px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .float-btn::before {
        display: none;
    }
}

/* HERO SECTION SCOPED STYLES */
.hero-section {
    height: 70vh;
    position: relative;
    color: white;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-top: 0rem;
}

.hero-section .heroSwiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-section .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section .content-overlay {
    padding: 20px 50px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-section .brand-name {
    font-family: "Michroma", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-section .hero-title {
    font-family: "Averia Serif Libre", serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.change-text {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 7px;
    font-family: "Kaushan Script", cursive !important;
    display: inline-block;
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
}

.change-text span {
    display: block;
    animation: slideText 3s ease-in-out forwards;
    font-family:
        "Kaushan Script",
        cursive !;
}

@keyframes slideText {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.hero-section .service-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-section .service-item {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 30px;
}

.service-item span {
    color: #00e0b8;
}

.hero-section .search-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-section .search-input {
    width: 100%;
    padding: 10px 50px 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
}

.hero-section .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section .search-btn:hover {
    background-color: #d81b60;
    transform: translateY(-50%) scale(1.1);
}

.hero-section .category-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-section .category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-section .category-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.hero-section .category-icon i {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #00e0b8;
}

.hero-section .category-icon span {
    font-size: 0.7rem;
    font-weight: 600;
}

.hero-section .swiper-pagination {
    bottom: 20px !important;
}

.hero-section .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-section .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    border-radius: 2px;
    width: 16px;
}

.hero-section .home-swiper-button-next,
.home-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-section .home-swiper-button-next::after,
.home-swiper-button-prev::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
}

.hero-section .home-swiper-button-next::after {
    transform: rotate(45deg);
}

.home-swiper-button-prev::after {
    transform: rotate(-135deg);
}

.hero-section .home-swiper-button-next {
    right: 20px;
}

.home-swiper-button-prev {
    left: 20px;
}

.hero-section .home-swiper-button-next:hover,
.home-swiper-button-prev:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* New Form Section */
.hero-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
}

.hero-form-box {
    padding: 15px 30px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, rgb(218 107 35 / 40%), rgb(255 140 66 / 47%)); */
    background: linear-gradient(135deg, rgb(218 107 35 / 76%), rgb(255 140 66 / 0%));
    /* background: linear-gradient(
        135deg,
        rgb(236 228 222 / 58%),
        rgb(227 218 212 / 59%)
    ); */
    border: 1px solid rgb(255 255 255 / 35%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-form-title {
    text-align: center;
    font-weight: 800;
    color: #62021c;
}

.hero-form-input {
    border-radius: 8px !important;
    padding: 12px 15px;
    border: 1px solid #b8450954;
}

.hero-form-input:focus {
    border-color: #ff6600;
    box-shadow: none;
}

.hero-form-btn {
    background: #630722;
    border: none;
    border-radius: 8px;
    padding: 15px 75px;
    font-weight: 600;
    transition: 0.3s;
    color: #fff;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 120px;
}

.hero-form-btn:hover {
    background: #440216;
}

@media (max-width: 991px) {
    .hero-form-box {
        width: 100%;
        padding: 15px;
        border-radius: 0px;
        background: #fff;

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .hero-form-wrapper {
        margin-top: 0px;
    }

    .hero-form-input {
        padding: 10px;
    }

    .hero-form-btn {
        padding: 5px 40px;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        height: 60vh !important;
    }

    .hero-section {
        height: auto;
        margin-top: 2rem;
    }

    .hero-section .service-highlights {
        gap: 15px;
    }

    .hero-section .category-icons {
        gap: 10px;
    }

    .hero-section .category-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 995px) {
    .hero-section {
        margin-top: 4rem;
    }
}

.home_pac_dest {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background: #fff;
    margin-bottom: 30px;
}

.home_pac_dest:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home_pac_dest img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.home_pac_dest .duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.home_pac_dest .duration-badge i {
    margin-right: 5px;
}

.home_pac_dest .card-content {
    padding: 15px;
}

.home_pac_dest .package-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    min-height: 50px;
}

.home_pac_dest .destination-info {
    font-size: 14px;
    margin-bottom: 15px;
}

.home_pac_dest .destination-info .label {
    color: #28a745;
    font-weight: 600;
}

.home_pac_dest .destination-info .places {
    color: #666;
    font-size: 13px;
    line-height: 18px;
}

.home_pac_dest .features {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.home_pac_dest .feature-item {
    text-align: center;
    flex: 1;
}

.home_pac_dest .feature-item i {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.home_pac_dest .feature-item .feature-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.home_pac_dest_quey_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}

.home_pac_dest_quey_btn a {
    text-decoration: none;
    color: white;
}

.dest_quey_btn,
.dest_details_btn {
    padding: 4px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    width: 100%;
    margin: 0 3px;
}

.dest_quey_btn {
    background-color: #eb9b18;
    border: none;
}

.dest_details_btn {
    background-color: var(--primary-color);
    border: none;
}

.dest_quey_btn:hover {
    background-color: #eb9b18;
}

@media (max-width: 768px) {
    .home_pac_dest {
        margin-bottom: 20px;
    }
}

/* New Hero Section For Index Page */

.home_tour_hero_section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.home_tour_hero_swiper {
    width: 100%;
    height: 100%;
}

.home_tour_hero_slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_tour_hero_slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home_tour_hero_video_slide {
    background-image: none !important;
}

.home_tour_hero_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home_tour_hero_navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.home_tour_hero_nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.home_tour_hero_button_prev,
.home_tour_hero_button_next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    border: none;
    backdrop-filter: blur(5px);
}

.home_tour_hero_button_prev:hover,
.home_tour_hero_button_next:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.home_tour_hero_button_prev::after,
.home_tour_hero_button_next::after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 3px solid white;
    border-right: 3px solid white;
}

.home_tour_hero_button_prev::after {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.home_tour_hero_button_next::after {
    transform: rotate(45deg);
    margin-right: 5px;
}

.home_tour_hero_pagination {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.home_tour_hero_pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.home_tour_hero_pagination .swiper-pagination-bullet-active {
    background: #e91e63;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .home_tour_hero_pagination {
        bottom: 70px;
    }

    .home_tour_hero_section {
        margin-top: 5rem;
    }
}
