:target {
    scroll-margin-top: 95px; 
}

body {
    font-family: Poppins, sans-serif
}

.float-container {
    border: 3px solid #fff
}

.float-child {
    width: 50%;
    float: left;
    border: 2px solid red
}

.float-child-100 {
    width: 100%;
    float: left;
    border: 2px solid red
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--bs-primary)
}

h3 {
    line-height: 2.2rem
}

.carousel {
    position: relative;
    box-sizing: border-box
}

.carousel *,
.carousel :after,
.carousel :before {
    box-sizing: inherit
}

.carousel.is-draggable {
    cursor: move;
    cursor: grab
}

.carousel.is-dragging {
    cursor: move;
    cursor: grabbing
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: .25;
    transition: opacity .15s ease-in-out
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity .15s
}

.carousel__button.is-next,
.carousel__button.is-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel__button.is-prev {
    left: 10px
}

.carousel__button.is-next {
    right: 10px
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    z-index: 1050;
    outline: 0;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

.fancybox__container *,
.fancybox__container ::after,
.fancybox__container ::before {
    box-sizing: inherit
}

.fancybox__container :focus {
    outline: 0
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, .94))
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, .92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

.fancybox__slide::after,
.fancybox__slide::before {
    content: "";
    flex: 0 0 0;
    margin: auto
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: dotted thin;
    box-shadow: none
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container>.carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff)
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff)
}

.fancybox__no-click,
.fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: 2s linear infinite fancybox-rotate;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: 1.5s ease-in-out infinite fancybox-dash;
    stroke-linecap: round;
    stroke: currentColor
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

.carousel__button.is-close,
.carousel__dots,
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav {
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
    animation: .15s backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav {
    animation: .15s both fancybox-fadeOut
}

.fancybox-fadeIn {
    animation: .15s both fancybox-fadeIn
}

.fancybox-fadeOut {
    animation: .1s both fancybox-fadeOut
}

.fancybox-zoomInUp {
    animation: .2s both fancybox-zoomInUp
}

.fancybox-zoomOutDown {
    animation: .15s both fancybox-zoomOutDown
}

.fancybox-throwOutUp {
    animation: .15s both fancybox-throwOutUp
}

.fancybox-throwOutDown {
    animation: .15s both fancybox-throwOutDown
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(.97) translate3d(0, 16px, 0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(.97) translate3d(0, 16px, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0, -30%, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0, 30%, 0);
        opacity: 0
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, .1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .2)
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content,
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content,
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none
}

.has-image .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain],
.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto
}

.has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, .9);
    color: #fff
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0)
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0 3px;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
    opacity: 0;
    transition: opacity .15s;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: .92
}

.fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    user-select: none
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, .1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0, hsla(0deg, 0%, 0%, .006) 8.1%, hsla(0deg, 0%, 0%, .021) 15.5%, hsla(0deg, 0%, 0%, .046) 22.5%, hsla(0deg, 0%, 0%, .077) 29%, hsla(0deg, 0%, 0%, .114) 35.3%, hsla(0deg, 0%, 0%, .155) 41.2%, hsla(0deg, 0%, 0%, .198) 47.1%, hsla(0deg, 0%, 0%, .242) 52.9%, hsla(0deg, 0%, 0%, .285) 58.8%, hsla(0deg, 0%, 0%, .326) 64.7%, hsla(0deg, 0%, 0%, .363) 71%, hsla(0deg, 0%, 0%, .394) 77.5%, hsla(0deg, 0%, 0%, .419) 84.5%, hsla(0deg, 0%, 0%, .434) 91.9%, hsla(0deg, 0%, 0%, .44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .4))
}

@media all and (min-width:1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }

    .fancybox__slide {
        padding: 64px 100px
    }

    .carousel__button.is-close,
    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }

    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }

    .fancybox__toolbar {
        padding: 8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-right: auto
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
    margin-left: auto
}

@media (max-width:640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:first-child {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2),
.fancybox__container.has-slideshow .fancybox__button--slideshow g:first-child {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

.border-4px {
    --bs-border-width: 4px;
}
#carouselExample {
    z-index: 10;
}
.product-card {
    transition: 0.5s ease-in-out all;
    padding:0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%; 
}

.product-card:hover {
    
    box-shadow: 0 2px 7px #dfdfdf;
}
.product-card:hover .product-links a {
    transform:translate3d(0,0,0);
    opacity: 1;
    margin-top:0;
}

.badge.popular {
    position: absolute;
    left: 20px;
    top: 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: #003349;
    color: #fff;
    padding: 3px 10px;
}

.product-tumb {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-tumb img {
    max-height: 100%; /* Ensure the image respects the container's height */
    max-width: 100%; /* Prevent the image from overflowing the width */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Scale image without distortion */
    transition: 0.3s ease-in-out all; /* Smooth hover transitions */
}
.product-details {
    flex-grow: 1;
    padding: 1.5vw;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-catagory {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 5px;
}

.product-details h4 a {
    font-weight: 600;
    display: block;
    font-family: 'Poppins';
    color: #003349;
    text-decoration: none;
    font-size: 1.5rem;
    transition: 0.3s;
}

.product-details h4 a:hover {
    color: #003349;
}

.product-details p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 15px;
    color: #999;
}

.product-bottom-details {
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    margin-top: auto;
}

.product-bottom-details div {
    width: auto;
}
.product-bottom-details .product-price {
    margin-bottom: 20px;

}

.product-price {
    font-size: 18px;
    color: #ff8200;
    font-weight: 600;
}

.product-price small {
    font-size: 80%;
    font-weight: 400;
    display: inline-block;
    margin-right: 5px;
}

.product-links a {
    display: flex;
    text-align: center;
    margin-top: 0;
    border: 1px solid #ccc;
    padding: 10px 20px;
    color: #ccc;
    font-size: 17px;
    transition: 0.5s ease-in-out all;
    line-height: 1;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.product-links a i {
    margin-right: 10px;
    line-height: 1;
}

.product-card:hover .product-links a {
    color: #ff8200;
    border: 1px solid #ff8200;
}
.product-card:hover .product-links a:hover {
    border: 1px solid #003349;

}
.product-card:hover .product-tumb img {
    max-width: 100%;
}
.product-links a:hover {
    background: #003349;
    color: #fff !important;
    text-decoration: none;
}

.floating-button {
    position: fixed;
    right: 0;
    top: calc(50% - 140px);
    width: 280px;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 2;
    background-color: #00334a;
    color: #fff;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border:0;
    text-align: center;
    font-weight: 600;
    font-size: 17px;
    transform-origin: right bottom;
    letter-spacing: 1px;
}
.floating-button:hover {
    background-color: #ff8200; 
}

.swiper {
    width: 100%;
    height: 35.73vw;
    z-index: 2 !important;
    background: #01354a;
  }

.swiper .title {
    color: #fff;
    font-size: 3vw;
    line-height: 1.1;
    font-weight: 700;
    position: relative;
}
.swiper .slideSpacer {
    padding-top: 5vw;
}

.swiper .titleCol {
    padding-left: 3vw;
    padding-right: 3vw;
}

.persistent-box.mobile {
    display:none;
}
.persistent-box {
    position: absolute;
    bottom: 7vw;
    right: 16vw;
    background: #f58220;
    color: #fff;
    padding: 1vw;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
    transition: 0.3s ease-in-out all;
    width: 14vw;
}
.persistent-box:hover {
    transform: scale(1.2);
}
  
  .persistent-box p {
    font-size: 1.5vw;
    line-height: 1.18;
    font-family: "Open Sans", serif;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin: 0 0 10px;
}
  
  .persistent-box .get-started {
    background: #003550; 
    color: #fff;
    display: inline-block;
    font-family: "Open Sans", serif;
    letter-spacing: -0.02em;
    line-height: 1;
    font-weight: 700;
    border: none;
    border-radius: 0;
    text-decoration: none;
    padding: 0.6vw 1.125vw;
    font-size: 1.02vw;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .persistent-box .get-started:hover {
    background: #004d70; 
    text-decoration: none;
  }

  .swiper-button-next, .swiper-button-prev {
    color: #ff8200 !important;
    background-size: contain; /* Ensure the background scales properly */
}

.slide-001 {
    background: url('../img/slider/BXD_Header Images_1-new.jpg') no-repeat top left;
    background-size: cover;
}
.slide-002 {
    background: url('../img/slider/BXD_Header Replacement_2.jpg') no-repeat top left;
    background-size: cover;
}
.slide-003 {
    background: url('../img/slider/BXD_Header Replacement_3.jpg') no-repeat top left;
    background-size: cover;
}
.slide-004 {
    background: url('../img/slider/BXD_Header Images_4.jpg') no-repeat top left;
    background-size: cover;
}

.hiwText {
    width: 260px;
    margin-right: auto;
    margin-left: auto;
}
.wuIMG {
    width: 350px
}

@media (min-width:768px) {
    
    .oneThree {
        font-size: 1.3rem
    }
    .oneFive {
        font-size: 1.5rem
    }
    
}
@media (max-width:1100px) {
    .persistent-box p {
        margin:0;
    }
}

@media (max-width: 1600px) and (min-width:1200px) {
    .product-links a {
        padding: 10px 10px;
        font-size: 1vw;
    }
}
@media (max-width: 990px) {
    
    .navbar-nav.ms-4 { 
        margin-left: 0 !important;
    }
    .navbar-nav .nav-link {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .oneFive br,
    .section_whyus h3 br {
        display: none;
    }
    h1.LH_Mobile {
        line-height: 1.1;
    }
    .wuIMG {
        width: 100%;
    }
    .hiwText {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size:20px !important;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 20px;
        height:20px;
    }
    .swiper { 
       height: 54.73vw;
    }
    .swiper .titleCol {
        padding-left: 15vw;
        padding-right: 15vw;
    }
    .swiper .title {
        font-size: 22px;
    }
    .slideSpacer {
        display: flex;
        align-items: center; /* Center vertically */
        height: 100%; /* Ensure it takes full height */
    }

    .slide-001 {
        background: linear-gradient(rgba(0, 51, 74, 0.5), rgba(0, 51, 74, 0.5)), url('../img/slider/BXD_Header Images_1-new.jpg') no-repeat top left;
        background-size: cover;
    }
    .slide-002 {
        background: linear-gradient(rgba(0, 51, 74, 0.5), rgba(0, 51, 74, 0.5)), url('../img/slider/BXD_Header Replacement_2.jpg') no-repeat top left;
        background-size: cover;
    }
    .slide-003 {
        background: linear-gradient(rgba(0, 51, 74, 0.5), rgba(0, 51, 74, 0.5)), url('../img/slider/BXD_Header Replacement_3.jpg') no-repeat top left;
        background-size: cover;
    }
    .slide-004 {
        background: linear-gradient(rgba(0, 51, 74, 0.5), rgba(0, 51, 74, 0.5)), url('../img/slider/BXD_Header Images_4.jpg') no-repeat top left;
        background-size: cover;
    }
    
    .persistent-box:hover {
        transform:unset;
    }
    .persistent-box p {
        font-size: 20px;
        margin: 0 0 10px;
    }
    .product-links a {
        color: #ff8200;
        border: 1px solid #ff8200;
    }
    .persistent-box {
        position: relative;
        bottom: unset; 
        right: unset;
        background: #f58220; 
        color: #fff; 
        padding: 15px 0 20px;
        border-radius: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        text-align: center;
        z-index: 10;
        width: 100%;
      }
      .persistent-box .get-started {
        padding: 5px 15px;
        font-size: 16px;
    }
    .img-resp { width:100%; height: auto;}
    .mobileFooter { padding:25px; 
        width: 100% !important;}
        .persistent-box.mobile {
            display:block;
        }
        .persistent-box.desktop {
            display:none;
        }
        .navbar-nav .nav-link {
            text-align: center;
        }
        .mobile100 { width: 100% !important;}
        .gallery .mb-4 {
            margin-bottom:12px !important;
        }
        .gallery div:last-child img.mb-4:last-child{
            margin-bottom: 0 !important;
        }
        .container.py-4  {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

}
@media (max-width: 480px) {
    .floating-button {
        position: fixed;
        right: unset;
        top: unset;
        bottom: 0;
        left: 0;
        transform: unset;
        width: 100%;
    }
    footer {
        margin-bottom: 40px;
    }
}