html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

img {
    max-width: none !important;
}

.bg-footer {
    background-image: url("./images/bgSection.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Basic styling for the Swiper container */
.landingSwiper {
    width: 100%;
    height: calc(100vh - 0px);
}

.landingSwiper .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.landingSwiper .swiper-pagination-bullet {
    background: #999999 !important;
    opacity: 0.7 !important;
}

/* Styling for the active bullet */
.landingSwiper.swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1 !important;
}

.custom-select {
    /* Remove default browser arrow */
    -webkit-appearance: none; /* For WebKit browsers (Chrome, Safari) */
    -moz-appearance: none; /* For Firefox */
    appearance: none; /* Standard property */

    /* Basic styling for the select box */
    width: 45px;
    height: 16px;
    cursor: pointer;

    /* Add custom arrow using SVG background image */
    background-image: url("./images/arrowDownSmallRed.svg");
    background-repeat: no-repeat;
    background-position: right 3px bottom 2px; /* Adjust position as needed */
    background-size: 15px; /* Adjust size as needed */
}

.custom-select:focus {
    outline: none; /* Remove default outline */
}

/* Optional: Style the wrapper if needed for layout */
.custom-select-wrapper {
    position: relative;
    display: inline-block; /* Or block, depending on layout */
}

/* For Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* For IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
