
.header .topbar .contact-info i a, .header .topbar .contact-info i span {
    padding-right: 5px;
    padding-left: initial;
}

    .header .topbar .contact-info i a:hover {
        color: var(--heading-color);
        text-decoration: underline;
    }

.services-2 .img {
    border-radius: 8px;
    overflow: hidden;
}

    .services-2 .img img {
        transition: 0.6s;
    }

.services-2 .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 10px;
    transition: all ease-in-out 0.3s;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

    .services-2 .details h3 {
        font-weight: 700;
        margin: 10px 0 15px 0;
        font-size: 22px;
        transition: ease-in-out 0.3s;
    }

    .services-2 .details p {
        color: color-mix(in srgb, var(--default-color), transparent 10%);
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.services-2 .service-item:hover .details h3 {
    color: var(--accent-color);
}

.services-2 .service-item:hover .img img {
    transform: scale(1.2);
}



.blog-section .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .blog-section .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: var(--heading-color);
    }

        .blog-section .section-title h2:after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .blog-section .section-title p {
        margin-bottom: 0;
    }

.blog-section .featured-post {
    margin-bottom: 40px;
}

    .blog-section .featured-post .post-img {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
    }

        .blog-section .featured-post .post-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

    .blog-section .featured-post .category-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .blog-section .featured-post .post-category {
        font-size: 13px;
        font-weight: 600;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .blog-section .featured-post .author-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

        .blog-section .featured-post .author-meta .author-img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        .blog-section .featured-post .author-meta .author-name {
            color: var(--heading-color);
            font-weight: 500;
        }

        .blog-section .featured-post .author-meta .post-date {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

            .blog-section .featured-post .author-meta .post-date:before {
                content: "";
                margin: 0;
            }

    .blog-section .featured-post .title {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        text-align: justify;
    }

        .blog-section .featured-post .title a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .blog-section .featured-post .title a:hover {
                color: var(--accent-color);
            }

.blog-section .list-post {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

    .blog-section .list-post .post-img {
        flex: 0 0 100px;
        border-radius: 8px;
        overflow: hidden;
    }

        .blog-section .list-post .post-img img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

    .blog-section .list-post .post-content {
        flex: 1;
    }

    .blog-section .list-post .post-category {
        font-size: 13px;
        font-weight: 500;
        color: var(--accent-color);
        margin-bottom: 8px;
        display: inline-block;
    }

    .blog-section .list-post .title {
        font-size: 17px;
        line-height: 1.5;
        margin: 0 0 8px 0;
    }

        .blog-section .list-post .title a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .blog-section .list-post .title a:hover {
                color: var(--accent-color);
            }

    .blog-section .list-post .post-meta {
        font-size: 13px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .blog-section .list-post .post-meta .read-time:after {
            content: "•";
            margin: 0 8px;
        }

@media (max-width: 992px) {
    .blog-section .featured-post .title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .blog-section .list-post .post-img {
        flex: 0 0 80px;
    }

        .blog-section .list-post .post-img img {
            width: 80px;
            height: 80px;
        }

    .blog-section .list-post .title {
        font-size: 15px;
    }
}

.services-3 {
    --cyan-color: #0dcaf0;
    --orange-color: #fd7e14;
    --teal-color: #20c997;
    --red-color: #df1529;
}

    .services-3 .service-item {
        background-color: var(--surface-color);
        box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
        padding: 40px 30px;
        text-align: center;
        transition: 0.3s;
        border-radius: 5px;
        border: 1px solid transparent;
    }

        .services-3 .service-item .icon {
            margin: 0 auto;
            width: 64px;
            height: 64px;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: ease-in-out 0.3s;
            position: relative;
        }

            .services-3 .service-item .icon i {
                font-size: 28px;
                transition: 0.5s;
                position: relative;
            }

        .services-3 .service-item h3 {
            font-weight: 700;
            margin: 10px 0 15px 0;
            font-size: 22px;
        }

        .services-3 .service-item p {
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0;
        }

        .services-3 .service-item:hover {
            box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
        }

        .services-3 .service-item.item-cyan .icon {
            background-color: color-mix(in srgb, var(--cyan-color) 10%, white 95%);
        }

            .services-3 .service-item.item-cyan .icon i {
                color: var(--cyan-color);
            }

        .services-3 .service-item.item-cyan:hover {
            border-color: var(--cyan-color);
        }

            .services-3 .service-item.item-cyan:hover .icon {
                background-color: var(--cyan-color);
            }

                .services-3 .service-item.item-cyan:hover .icon i {
                    color: var(--contrast-color);
                }

        .services-3 .service-item.item-orange .icon {
            background-color: color-mix(in srgb, var(--orange-color) 10%, white 95%);
        }

            .services-3 .service-item.item-orange .icon i {
                color: var(--orange-color);
            }

        .services-3 .service-item.item-orange:hover {
            border-color: var(--orange-color);
        }

            .services-3 .service-item.item-orange:hover .icon {
                background-color: var(--orange-color);
            }

                .services-3 .service-item.item-orange:hover .icon i {
                    color: var(--contrast-color);
                }

        .services-3 .service-item.item-teal .icon {
            background-color: color-mix(in srgb, var(--teal-color) 10%, white 95%);
        }

            .services-3 .service-item.item-teal .icon i {
                color: var(--teal-color);
            }

        .services-3 .service-item.item-teal:hover {
            border-color: var(--teal-color);
        }

            .services-3 .service-item.item-teal:hover .icon {
                background-color: var(--teal-color);
            }

                .services-3 .service-item.item-teal:hover .icon i {
                    color: var(--contrast-color);
                }

        .services-3 .service-item.item-red .icon {
            background-color: color-mix(in srgb, var(--red-color) 10%, white 95%);
        }

            .services-3 .service-item.item-red .icon i {
                color: var(--red-color);
            }

        .services-3 .service-item.item-red:hover {
            border-color: var(--red-color);
        }

            .services-3 .service-item.item-red:hover .icon {
                background-color: var(--red-color);
            }

                .services-3 .service-item.item-red:hover .icon i {
                    color: var(--contrast-color);
                }


.cards-3 .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    border-radius: 0;
}

    .cards-3 .card .card-img {
        overflow: hidden;
        margin-bottom: 15px;
        border-radius: 0;
    }

        .cards-3 .card .card-img img {
            transition: 0.3s ease-in-out;
        }

    .cards-3 .card h3 {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 5px;
        padding: 0 20px;
    }

    .cards-3 .card a {
        color: var(--heading-color);
        transition: 0.3;
    }

        .cards-3 .card a:hover {
            color: var(--accent-color);
        }

    .cards-3 .card .stars {
        padding: 0 20px;
        margin-bottom: 5px;
    }

        .cards-3 .card .stars i {
            color: #ffc107;
        }

    .cards-3 .card p {
        padding: 0 20px;
        margin-bottom: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-style: italic;
        font-size: 15px;
    }

    .cards-3 .card:hover .card-img img {
        transform: scale(1.1);
    }


.tabs .nav-tabs {
    border: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    width: auto;
}

.tabs .nav-item {
    margin: 0;
    padding: 0 5px 0 0;
}

    .tabs .nav-item:last-child {
        padding-right: 0;
    }

.tabs .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
}

@media (max-width: 468px) {
    .tabs .nav-link {
        padding: 8px 20px;
    }
}

.tabs .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.tabs .nav-link h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.tabs .nav-link:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    .tabs .nav-link:hover h4 {
        color: var(--accent-color);
    }

.tabs .nav-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

    .tabs .nav-link.active h4 {
        color: var(--contrast-color);
    }

.tabs .tab-content {
    margin-top: 30px;
}

.tabs .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

    .tabs .tab-pane h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.tabs .tab-pane ul {
    list-style: none;
    padding: 0;
}

    .tabs .tab-pane ul li {
        padding-top: 10px;
    }

    .tabs .tab-pane ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--accent-color);
    }

.tabs .tab-pane p:last-child {
    margin-bottom: 0;
}

.services-6 .service-item {
    text-align: center;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    height: 100%;
}

    .services-6 .service-item .icon {
        background-color: var(--surface-color);
        color: var(--accent-color);
        margin: 0 auto;
        width: 80px;
        height: 80px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
        font-size: 32px;
        transition: ease-in-out 0.3s;
        box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
    }

    .services-6 .service-item h3 {
        font-weight: 700;
        margin-bottom: 15px;
        padding-bottom: 15px;
        font-size: 22px;
        transition: 0.3s;
        position: relative;
    }

        .services-6 .service-item h3:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
            bottom: 0;
            left: calc(50% - 25px);
        }

    .services-6 .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services-6 .service-item:hover .icon {
        box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
    }

    .services-6 .service-item:hover h3 {
        color: var(--accent-color);
    }


.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

    .footer .footer-top {
        padding-top: 50px;
    }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px;
    }

        .footer .footer-about .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-family: var(--heading-font);
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 1px;
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: var(--accent-color);
                }

    .footer .footer-contact p {
        margin-bottom: 5px;
    }

    .footer .copyright {
        padding: 25px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

    .footer .credits {
        margin-top: 8px;
        font-size: 13px;
    }

@media (min-width: 1200px) {
    .navmenu a i, .navmenu a:focus i {
        margin-left: auto;
        margin-right: 5px;
    }
}

.header .logo h1 {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

@media (min-width: 1200px) {
    .navmenu .dropdown ul {
        left: auto;
        right: 14px;
    }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
    padding: 0;
}

    .blog-hero .blog-hero-slider {
        position: relative;
        overflow: hidden;
    }

    .blog-hero .blog-hero-item {
        position: relative;
        height: 80vh;
        min-height: 600px;
    }

        .blog-hero .blog-hero-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-hero .blog-hero-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
        }

    .blog-hero .blog-hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        padding: 60px;
        color: var(--contrast-color);
        text-align: center;
        max-width: 800px;
        width: 100%;
    }

        .blog-hero .blog-hero-content .category {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-hero .blog-hero-content h1, h2 {
            color: var(--contrast-color);
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

@media (max-width: 991px) {
    .blog-hero .blog-hero-content h1 {
        font-size: 36px;
    }

    .blog-hero .blog-hero-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .blog-hero .blog-hero-content h1 {
        font-size: 28px;
    }

    .blog-hero .blog-hero-content h2 {
        font-size: 28px;
    }
}

.blog-hero .blog-hero-content .meta {
    margin-bottom: 30px;
    font-size: 14px;
}

    .blog-hero .blog-hero-content .meta span {
        display: inline-block;
        margin-right: 20px;
        color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    }

        .blog-hero .blog-hero-content .meta span:last-child {
            margin-right: 0;
        }

        .blog-hero .blog-hero-content .meta span a {
            color: var(--contrast-color);
            font-weight: 600;
        }

            .blog-hero .blog-hero-content .meta span a:hover {
                color: var(--accent-color);
            }

@media (max-width: 767px) {
    .blog-hero .blog-hero-content .meta span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.blog-hero .blog-hero-content .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--contrast-color);
    font-weight: 500;
}

    .blog-hero .blog-hero-content .read-more i {
        margin-right: 8px;
        transition: transform 0.3s ease;
    }

    .blog-hero .blog-hero-content .read-more:hover {
        color: var(--accent-color);
    }

        .blog-hero .blog-hero-content .read-more:hover i {
            transform: translateX(5px);
        }

@media (max-width: 767px) {
    .blog-hero .blog-hero-content {
        padding: 30px;
    }
}

.blog-hero .swiper-button-prev,
.blog-hero .swiper-button-next {
    color: var(--contrast-color);
    width: 60px;
    height: 60px;
}

    .blog-hero .swiper-button-prev::after,
    .blog-hero .swiper-button-next::after {
        font-size: 32px;
    }

    .blog-hero .swiper-button-prev:hover,
    .blog-hero .swiper-button-next:hover {
        color: var(--accent-color);
    }

.blog-hero .swiper-wrapper {
    height: auto !important;
}

.services .service-item .icon {
    margin-right: auto;
    margin-left: 30px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-3 .section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

    .testimonials-3 .section-title h2 {
        font-size:font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: var(--heading-color);
    }

        .testimonials-3 .section-title h2:after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 0;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .testimonials-3 .section-title p {
        margin-bottom: 0;
    }

.testimonials-3 .testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-3 .swiper-wrapper {
    height: auto !important;
}

.testimonials-3 .testimonial-slide {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    /*min-height: 400px;*/
    border-radius: 25px;
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-top: 4px solid var(--accent-color);
}

.testimonials-3 .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonials-3 .stars-rating {
    display: flex;
    gap: 0.5rem;
}

    .testimonials-3 .stars-rating i {
        color: #ffc107;
        font-size: 1.25rem;
    }

.testimonials-3 .quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .testimonials-3 .quote-icon i {
        color: var(--contrast-color);
        font-size: 1.5rem;
    }

.testimonials-3 .testimonial-body {
    margin: 2.5rem 0;
}

    .testimonials-3 .testimonial-body p {
        font-size: 1.25rem;
        line-height: 1.8;
        font-style: italic;
        color: var(--heading-color);
        margin: 0;
        position: relative;
    }

.testimonials-3 .testimonial-footer {
    margin-top: 2.5rem;
}

.testimonials-3 .author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonials-3 .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials-3 .author-details {
    text-align: left;
}

    .testimonials-3 .author-details h4 {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
        color: var(--heading-color);
    }

    .testimonials-3 .author-details .role {
        display: block;
        font-size: 1rem;
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .testimonials-3 .author-details .company {
        display: block;
        font-size: 0.9375rem;
        color: color-mix(in srgb, var(--heading-color), transparent 40%);
    }

.testimonials-3 .swiper-navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-3 .swiper-pagination {
    position: static !important;
    margin: 0;
}

    .testimonials-3 .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: color-mix(in srgb, var(--default-color), transparent 70%);
        opacity: 1;
        transition: all 0.3s ease;
    }

        .testimonials-3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: var(--accent-color);
            transform: scale(1.2);
        }

.testimonials-3 .swiper-button-prev,
.testimonials-3 .swiper-button-next {
    position: static !important;
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

    .testimonials-3 .swiper-button-prev:after,
    .testimonials-3 .swiper-button-next:after {
        font-size: 1.25rem;
        color: var(--contrast-color);
        font-weight: bold;
    }

    .testimonials-3 .swiper-button-prev:hover,
    .testimonials-3 .swiper-button-next:hover {
        transform: translateY(-2px);
    }

@media (max-width: 991.98px) {
    .testimonials-3 .testimonial-slide {
        padding: 2.5rem 2rem;
        /*min-height: 350px;*/
    }

    .testimonials-3 .testimonial-body p {
        font-size: 1.125rem;
    }

    .testimonials-3 .author-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonials-3 .author-details h4 {
        font-size: 1.25rem;
    }

    .testimonials-3 .quote-icon {
        width: 50px;
        height: 50px;
    }

        .testimonials-3 .quote-icon i {
            font-size: 1.25rem;
        }

    .testimonials-3 .swiper-button-prev,
    .testimonials-3 .swiper-button-next {
        width: 45px;
        height: 45px;
    }

        .testimonials-3 .swiper-button-prev:after,
        .testimonials-3 .swiper-button-next:after {
            font-size: 1.125rem;
        }
}

@media (max-width: 767.98px) {
    .testimonials-3 .testimonial-slide {
        padding: 2rem 1.5rem;
        /*min-height: 300px;*/
    }

    .testimonials-3 .testimonial-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .testimonials-3 .testimonial-body {
        margin: 2rem 0;
    }

        .testimonials-3 .testimonial-body p {
            font-size: 1rem;
            line-height: 1.6;
        }

    .testimonials-3 .author-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .testimonials-3 .author-details {
        text-align: center;
    }

        .testimonials-3 .author-details h4 {
            font-size: 1.125rem;
        }

        .testimonials-3 .author-details .role {
            font-size: 0.9375rem;
        }

        .testimonials-3 .author-details .company {
            font-size: 0.875rem;
        }

    .testimonials-3 .swiper-navigation-wrapper {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonials-3 .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .testimonials-3 .swiper-button-prev,
    .testimonials-3 .swiper-button-next {
        width: 40px;
        height: 40px;
    }

        .testimonials-3 .swiper-button-prev:after,
        .testimonials-3 .swiper-button-next:after {
            font-size: 1rem;
        }
}


[data-colorpreset="cp-light-background"], .light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}
