/* Benefits Block Styles */
/* Swiper Container */
.swiper-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Swiper Wrapper */
.swiper-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-sizing: border-box !important;
}

/* Swiper Slide */
.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 350px;
    margin-right: 30px;
    transition: all 0.3s ease; /* Smooth transition for responsiveness */
}

/* Icons Styling */
.swiper-slide img {
    margin-bottom: 20px;
}

/* Title Styling */
.swiper-slide h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background-color: #000;
    opacity: 0.5;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background-color: #000;
    opacity: 1;
    --swiper-theme-color: #cc5308;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
}

/* Adjust positioning */
.swiper-button-prev {
    left: 10px;
}
.swiper-button-next {
    right: 10px;
}


/* Responsive Adjustments */
@media (max-width: 1200px) {
    .swiper-slide {
        padding: 15px;
        width: 300px; /* Adjust slide width for larger tablets */
    }
}

@media (max-width: 992px) {
    .swiper-slide {
        padding: 10px;
        width: 250px; /* Adjust slide width for tablets */
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        padding: 5px;
        width: 100%;
        margin-right: 0;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none; /* Hide navigation on mobile */
    }
}

@media (max-width: 576px) {
    .swiper-slide {
        padding: 5px;
        width: 100%;
        margin-right: 0;
    }
}

.margin-25px-tb {
    margin-top: 25px;
    margin-bottom: 25px;
}
.margin-10px-bottom {
    margin-bottom: 10px;
}
.font-weight-700 {
    font-weight: 700 !important;
}
.text-extra-medium {
    font-size: 16px;
    line-height: 28px;
}
.main-font {
    font-family: 'deichmann', sans-serif !important;
}
.feature-box .feature-box-content {
    max-width: 100%;
}
.swiper-slide, .swiper-wrapper {
    cursor: url("../images/icons/icon-move-black.png"), move;
}
.benefits-slider .feature-box .svg-image img {
    width: 45%;
    max-width: 100%;
    height: auto;
    backface-visibility: hidden;
    transition: filter 0.3s ease;
    image-rendering: crisp-edges;
}


/* Header Image Banner Styles */
.pickgradient {
    display: inline-block;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.65)), color-stop(100%, rgba(0, 0, 0, 0)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* IE10+ */
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 20%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
}

.pickgradient img {
    position: relative;
    z-index: -1;
    display: inline-block;
    height: 480px;
    width: auto;
}

.header-banner-bg {
    height: 620px;
    width: 100%;
    background-size: cover;
    margin-top: 20px;
}

.cover-background {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

h1 {
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

h6 {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4f4f4f;
    margin-bottom: 20px;
}

.btn-deichmann-green {
    display: inline-block;
    padding: 15px 50px;
    background-color: #cc5308;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-deichmann-green:hover {
    background-color: #f0fdf4;
    color: #cc5308;
    border: 2px solid #cc5308;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h6 {
        font-size: 16px;
    }

    .btn-deichmann-green {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h6 {
        font-size: 14px;
    }

    .btn-deichmann-green {
        font-size: 12px;
        padding: 8px 16px;
    }
}

.text-deichmann-green {
    color: #cc5308;
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    margin-bottom: 10px;
    font-weight: 300;
}

.padding-30px-bottom {
    padding-bottom: 30px;
}

.padding-30px-top {
    padding-top: 30px;
}

