.footer span {
    color: #ffffff;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 10%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.topic-description {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--bs-neutral-700);
}

p.tegline {
    display: block;
    text-align: center;
    color:#247928;
    font-size: 18px;
    font-weight: 400;
    padding: 18px 0;
    margin-left: -30px;
}

span.timelimit {
    font-size: 13px;
    color:#247928;
    font-weight: 400;
}

span.timelimit,
h3.ph-txt {
    float: center;
}

.trustpilot-img {
    display: inline-block;
    margin: 0 10px;
}

#top-n {
    background-color: #fff;
    color: #eee;
    padding: 5px 0;
    background-size: cover;
    background-position: 0 -15px;
}

.row1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: -2px;
    margin-bottom: -2px;
    margin-left: -50px;
    margin-right: 1px;
    padding: 0;
    width: auto;
}

.header-logo {
    display: none;
}

.first-logo {
    width: 100%;
    margin-right: 20px;
}

.tegline,
.phone-support,
.timelimit,
.trustpilot-img {
    text-align: center;
}

.icon-cart {
    color: var(--bs-neutral-0);
  }


.covid19divlink span {
    color: #ffffff;
}


.covid19divlink :hover {
    color: #000000;
}

.covid19divlink {
    cursor: pointer;
    display: flex; /* Use flex layout */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    margin: 0 auto; /* Center the element itself */
    padding: 4px 10px; /* Add internal spacing */
    border-radius: 5px; /* Rounded corners */
    background: #247928; /* Button background */
    font-weight: bold; /* Bold text */
    width: auto; /* Automatically adjust width */
    max-width: 200px; /* Prevent it from being too wide */
    text-align: center; /* Center-align text */
}

/* Media query for mid-sized screens */
@media (min-width: 800px) and (max-width: 1610px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
        margin: 0;
        padding: 0;
        width: 100%; /* Ensure the body takes up the full width */
    }

    .covid19divlink {
        width: auto; /* Allow the element to resize dynamically */
        max-width: 200px; /* Set a maximum width */
        margin: 0 auto; /* Center horizontally */
        padding: 6px 12px; /* Adjust padding for mid-sized screens */
    }
    .row1 {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: space-between; /* Distribute items evenly */
        align-items: center; /* Vertically align items */
        margin: 1px -40px; /* Adjust margins dynamically */
        padding: 0 20px; /* Reduce horizontal padding */
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: auto; /* Allow content to size dynamically */
    }

    .d-inline-block {
        display: flex; /* Use flex layout */
        align-items: center; /* Center align items inside */
        margin: 0; /* Reset margins */
    }

    .truestpliotinfo {
        margin-left: 10px; /* Adjust spacing */
    }

    .tegline,
    .timelimit,
    .trustpilot-img {
        text-align: center;
        margin: 0 5px; /* Add consistent spacing */
    }

    /* .first-logo img {
        max-width: 130px; 
    } */
}

/* Media query for mobile screens */
@media (max-width: 799px) {
    .covid19divlink {
        float: none; /* Remove floating */
        margin: 1px auto; /* Center the element horizontally */
        display: block; /* Ensure block-level layout */
        width: 40%; /* Set a responsive width */
        text-align: center; /* Center text inside */
    }
}


/* Hide elements with the hide-on-mobile class on mobile devices */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}




/* Hide on Mobile */
@media (max-width: 768px) {

    p.tegline,
    span.timelimit,
    .first-logo,
    .truestpliotinfo {
        display: none;
        /* Hide these elements on mobile screens */
    }

    .header-logo {
        display: block;
    }
  
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 24%;
    }
}

  






/* SMS Button */
.sms-popup-button {
    position: fixed;
    right: 1px;
    /* Distance from the right edge */
    top: 85%;
    /* Middle of the screen */
    transform: translateY(-50%);
    z-index: 1000;
    background-color:#247928;
    border-radius: 34px 8px 34px 34px;
    border: none;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sms-popup-button img {
    height: 30px;
    width: 30px;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Popup Chat */
.sms-popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1100;
    overflow: hidden;
}

/* Popup Header */
.sms-popup-header {
    background:#247928;
    /* Your preferred color */
    color: #000;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sms-popup-header h4 {
    margin: 0;
    font-size: 16px;
}

.sms-popup-header .sms-popup-close {
    background: transparent;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

/* Popup Body */
.sms-popup-body {
    padding: 15px;
}

.sms-chat-box {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.sms-message {
    margin: 5px 0;
    padding: 8px 10px;
    border-radius: 5px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    background:#247928;
    /* User's message color */
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
}

.bot-message {
    background: #ddd;
    /* Bot's message color */
    margin-right: auto;
    align-self: flex-start;
}

.sms-popup-body textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    resize: none;
}

.sms-send-button {
    margin-top: 10px;
    width: 100%;
    background:#247928;
    /* Your preferred color */
    color: #ffffff;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.sms-send-button:hover {
    background: #000000;
    color: #fff;
}

/* Main Form Container */
.form-container1 {
    font-family: Arial, sans-serif;
    max-width: 90%;
    /* Default max width for larger screens */
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
}

/* General (Desktop First) */
.form-row1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Default spacing for desktop */
    margin-bottom: 20px;
}

.form-group1 {
    flex: 1 1 20%; /* Default width for desktop */
    min-width: auto;
}

.form-group1 input,
.form-group1 select {
    width: 100%;
    padding: 10px;
}

/* Tablet Mode (600px to 1024px) */
@media screen and (min-width: 600px) and (max-width: 1024px) {
    .form-row1 {
        gap: 15px; /* Adjust spacing for tablets */
        justify-content: space-between;
    }

    .form-group1 {
        flex: 1 1 30%; /* Adjusted width for tablets */
    }
    .header .main-menu{
        display: block;
    }

    .burger-icon{
display: none;
    }
   
}

/* Mobile Phones (max-width: 600px) */
@media screen and (max-width: 600px) {
    .form-row1 {
        flex-direction: column; /* Stack items vertically */
        gap: 10px; /* Compact spacing for mobile */
        padding-right: 70px;
    }

    .form-group1 {
        flex: 1 1 100%; /* Full width for mobile */
    }

    .form-group1 input[type="date"] {
        padding: 12px; /* Larger padding for better usability */
    }

    .form-group1 input,
    .form-group1 select {
        padding: 12px; /* Larger padding for better usability */
    }
    .header .main-menu{
        display: none;
    }

    .burger-icon{
display: block;
    }
   
    
}


.trip-options {
    display: flex;
    align-items: center;
    gap: 2em;
}

.trip-options input[type="radio"] {
    display: none;
    /* Hide default radio button */
}

.trip-options label {
    position: relative;
    padding-left: 30px;
    /* Space for the custom radio */
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.trip-options label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    /* Outer circle size */
    height: 20px;
    border: 2px solid #ababab;
    /* Default border color */
    border-radius: 50%;
    /* Make it a circle */
    background-color: #fff;
    /* Default background */
    transition: all 0.3s ease;
}

.trip-options label:after {
    content: '';
    position: absolute;
    left: 10px;
    /* Center inside the outer circle */
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    /* Inner circle size */
    height: 10px;
    background-color: transparent;
    /* Hidden by default */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.trip-options input[type="radio"]:checked+label:before {
    border-color: #247928;
    /* Outer circle border color when selected */
}

.trip-options input[type="radio"]:checked+label:after {
    background-color: #247928;
    /* Inner circle fill color when selected */
}


/* Default Styles (Desktop) */
.form-navbar1 {
    position: relative;
    background-color: rgba(46, 125, 50, 0.9); /* Semi-transparent background */
    padding: 0px;
    margin-top: -50px; /* Default for desktop */
    z-index: 10;
}

/* Tablet Styles (600px to 1024px) */
@media screen and (min-width: 600px) and (max-width: 1024px) {
    .form-navbar1 {
        margin-top: -7px; /* Adjust for tablets */
    }
}

/* Mobile Styles (max-width: 600px) */
@media screen and (max-width: 600px) {
    .form-navbar1 {
        margin-top: -7px; /* Adjust for mobile */
    }
    .form-group2 input,
.form-group2 select {
    width: 100%;
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}
}

/* Tab styles */
.form-navbar1 .tab {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.form-navbar1 .tab.active {
    background: white;
    color: #247928;
}


.booking-form1 {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 70px;
    padding-right: 20px;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    margin-bottom: 60px;
}

.hidden {
    display: none;
}



.form-row2 {
    display: inline-flex;
    row-gap: 0px;
    /* Adjust gap for better alignment */
    column-gap: 0px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.form-group1 label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}


.form-group2 {
    flex: 0;
    min-width: 180px;
}

.form-group2 label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group2 input,
.form-group2 select {
    /* width: 100%; */
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}


.form-action1 {
    text-align: right;
}

.form-btn {
    background-color: #F7A01B;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;
}

.form-btn:hover {
    background-color: #000000;
    color: #ffffff;
}


/* *************end ****************/

.accordion-button h3 {
    color: var(--bs-neutral-1000);
    padding: 0px 23px;
    min-width: 111px;
}

h3,
.heading-3 {
    font-size: 30px;
    line-height: 35px;
}

.collapsible {
    cursor: pointer;
}

.content {
    display: none;
}

.box-search-advance-3 {
    padding: 30px;
    top: auto;
    margin-bottom: 0px;
    /* box-shadow: box-shadow-3; */
    margin-top: 50px;
    border: 1px solid #d1cfcf;
    background-color: #d9dee2;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);

    .box-bottom-search {
        border: 0px;
        margin-top: 0px;
        background-color: #d9dee2;
    }
}

/* Container holding the iframe to maintain aspect ratio */
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 16.25%;
    /* Default aspect ratio */
    height: 0;
}

/* Responsive iframe */
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* style for list items */
p.margin {
    margin-bottom: 0px;
    color: #000000;
}

p.margin-bottom {
    margin-bottom: 8px;
}

.search-container {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.search-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.search-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

.label-bold {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.input-field {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.calendar-icon {
    position: relative;
    top: -28px;
    left: 90%;
    color: #777;
}

.submit-section {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-confirm {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-confirm:hover {
    background-color: #333;
}



.box-tag {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.btn {
    background-color: #F7A01B;
    /* Original button color */
    color: rgb(255, 254, 254);
    /* Text color */
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    /* Smooth transition effect */
}

.btn:hover {
    background-color: black;
    /* Black hover effect */
    color: white;
    /* Change text color to white on hover */
}

.full-width-section .container {
    width: 100vw;
    /* Full width of the viewport */
    margin-left: calc(-50vw + 50%);
    /* Center the section */
    position: relative;
    /* Make sure it doesn't affect other elements */
    margin-left: 25px;
}

.button-container {
    display: flex;
    justify-content: center;
    /* Horizontally centers the button */
    align-items: center;
    /* Vertically centers if necessary */
    height: 100%;
    /* Optional: adjust based on your layout */
}


.box-search-advances {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.box-bottom-searches {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.item-searches {
    flex: 1 1 calc(50% - 20px);
    /* Each input takes 50% of the width with a margin */
    display: flex;
    flex-direction: column;
}

.forms-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media (max-width: 575.98px) {
    .sticky-bar.stick .burger-icon {
        top: 3px;
        margin-right: 10px;
    }
}

.js-gdpr-consent-banner {
    position: fixed;
    bottom: 0px;
    left: 38%;
    transform: translateX(-50%);
    width: 75%;
    height: 60px;
    background-color: #247928;
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}



.js-gdpr-consent-banner a {
    color: #F7A01B;
    text-decoration: none;
    margin: 0 5px;
}

.js-gdpr-consent-banner a:hover {
    text-decoration: underline;
    /* Enhance hover interaction */
}

.js-gdpr-consent-banner .js-notice-close {
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 20px;
    color: white;
    margin-top: 10px;
    /* Add spacing from the content */
    align-self: flex-end;
    /* Push close button to the right within the banner */
}

.js-gdpr-consent-banner .js-notice-close:hover {
    color: #F7A01B;
}

@media (max-width: 767px) {
    .js-gdpr-consent-banner {
        display: none;
        /* Hide the banner on screens smaller than 768px */
    }
}

/* Style the ul element with a distinct background color */
.list {
    background-color: #f0f0f0;
    /* Background color for ul section */
    padding: 15px;
    border-radius: 8px;
    list-style-type: none;
    /* Remove default bullets */
    margin: 15px 0;
    width: 80%;
    /* Adjust width as needed */
}

/* Style the li elements to have an arrow head */
.list-line {
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    color: #333;
    /* Text color for list items */
}

/* Create an arrowhead using pseudo-elements */
.list line::before {
    content: '→';
    /* Arrow symbol */
    position: absolute;
    left: 0;
    color: #000000;
    /* Change this to your preferred color */
    font-size: 18px;
}

.form-control.text {
    background: var(--bs-neutral-100);
    border: 1px solid var(--bs-neutral-200);
    height: 100px;
    box-shadow: none;
    padding: 15px 15px 15px 15px;
    font-size: 16px;
    width: 100%;
}

/* Additional styling for hover or focus states (optional) */
.form-control.text:focus {
    border-color: #cacac3;
    background-color: rgb(212, 207, 207);
    /* Example focus border color */
    outline: none;
}

.feedback-btn {
    position: fixed;
    right: 5px;
    /* Distance from the right edge */
    bottom: 5px;
    /* Distance from the bottom edge */
    background-color: rgb(213, 213, 209);
    /* Light background */
    color: #000000;
    /* Text color */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    /* Align icon and text */
    align-items: center;
    gap: 8px;
    /* Spacing between icon and text */
    z-index: 1000;
    /* Ensures the button stays on top */
    transform: rotate(0deg);
    /* No rotation */
}

.feedback-btn:hover {
    background-color: rgb(0, 0, 0);
    color: #fff;
    /* Change background on hover */
}

.feedback-btn i {
    font-size: 18px;
    /* Icon size */
}

/* Mobile Call Button */
.mobile-call-button {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    /* Always at the very top */
    width: 100%;
    background-color: #ffffff;
    color: #247928;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1000;
    /* Ensure it's above all other elements */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    text-align: center;
    flex-direction: row;
    /* Items side by side */
    align-items: center;
    justify-content: center;
}

.mobile-call-button img {
    width: 25px;
    height: 25px;
    margin-right: 3px;
    /* Space between icon and text */
}

.mobile-call-button h5 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.mobile-call-button .call-availability {
    font-size: 12px;
    color: #247928;
    margin-top: -5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mobile-call-button {
        display: flex;
        /* Show call button on mobile */
    }

    .header {
        margin-top: 70px;
        /* Add space for the sticky call button */
    }

    .header.sticky-bar {
        margin-top: 0;
        /* Prevent additional offset for sticky behavior */
    }
}

/* Sticky Header for Desktop */
@media (min-width: 769px) {
    .header.sticky-bar {
        /* position: sticky; */
        top: 0;
        z-index: 999;
    }

    .text-message-button {
        top: 70%;
    }

}


.text-medium {
    font-size: 16px;
    /* Adjust the size as needed */
    line-height: 1.5;
    /* Adjust line height for better readability */
}

.member-login {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    margin: 0px 10px 0px 0px;
    vertical-align: middle;
}

.no-break {
    white-space: nowrap;
}

.box-dropdown-cart .dropdown-cart {
    padding: 70px 25px 25px 25px;
    width: 120px;
    display: block;
    visibility: none;
}

.icon-cart span {
    display: inline-block;
    padding: 0px 35px 0px -1px;
    background: url(https://www.cheapflightsstore.com/assets/imgs/template/icons/arrow-down-sm.svg) no-repeat right center;
}

@media (max-width: 767.98px) {
    .card-flight {
        max-width: 100%;
        width: 90%;
        min-width: 74%;
        flex-wrap: wrap;
    }

    .card-flight .card-info {
        padding: 38px 56px;
        width: calc(100% + 36px);
        margin-left: -1px;
        margin-top: -37px;
    }
}

.card-flight .card-info .card-meta {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-description {
    color: #8E8E8E;
    justify-content: center;
    font-size: 17px;
}

.headline {
    width: 100%;
}

.text-link {
    color: #000000;
}

/* Flexbox-based centering */
.full-center {
    height: 100%;
    /* Ensure full viewport height */
    display: flex;
    /* Use flexbox layout */
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
}

/* Heading styles */
.centered-heading {
    color: #000000;
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 44px;
    text-align: center;
    /* Ensure the text is centered */
}

/* Custom Slider Styles */
.new-slider-section .custom-swiper {

    /* Set max width of the slider */
    /* Set the height to 500px */
    margin: 0 auto;
    /* Center the slider */
    position: relative;
    overflow: hidden;
}

/* Ensure images are responsive within the slide container */
.new-slider-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure the image fills the slide */
}

/* Style for Previous and Next Buttons (Arrow Headed) */
.new-slider-section .swiper-button-prev,
.new-slider-section .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: transparent;
    /* Transparent background initially */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Hide by default */
    transition: opacity 0.3s ease;
}

/* Display arrows on hover */
.new-slider-section .custom-swiper:hover .swiper-button-prev,
.new-slider-section .custom-swiper:hover .swiper-button-next {
    opacity: 1;
    /* Show arrows on hover */
}

/* Arrow Styles for Previous and Next Buttons */
.new-slider-section .swiper-button-prev::after,
.new-slider-section .swiper-button-next::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.new-slider-section .swiper-button-prev::after {
    border-width: 10px 12px 10px 0;
    /* Left arrow */
    border-color: transparent rgb(0, 0, 0) transparent transparent;
}

.new-slider-section .swiper-button-next::after {
    border-width: 10px 0 10px 12px;
    /* Right arrow */
    border-color: transparent transparent transparent rgb(0, 0, 0);
}

/* Positioning the Buttons */
.new-slider-section .swiper-button-prev {
    left: 10px;
}

.new-slider-section .swiper-button-next {
    right: 10px;
}

/* Hover Effect for Arrows */
.new-slider-section .swiper-button-prev:hover::after,
.new-slider-section .swiper-button-next:hover::after {
    border-color: transparent transparent transparent rgb(0, 0, 0);
    /* Ensure arrow is visible */
}

.new-slider-section .swiper-button-prev:hover::after {
    border-color: transparent rgb(0, 0, 0) transparent transparent;
}

.new-slider-section .swiper-button-next:hover::after {
    border-color: transparent transparent transparent rgb(0, 0, 0);
}

.form-container {
    margin-top: 0;
    /* Default margin */
}

@media (max-width: 767px) {
    .form-container {
        margin-top: 0px;

        form-container1 {
            margin-top: 0px;
        }

    }
}

/* Base styles for sitemap-menu links */
.sitemap-menu li a {
    color: var(--bs-neutral-500);
    font-size: 16px;
    text-decoration: none;
    transition-duration: 0.2s;
    line-height: 45px;

}

/* Hover effect to change color to dark black */
.sitemap-menu li a:hover {
    color: #000000;
    /* Dark black on hover */
}