.bbx-testimonials {
    .title {
        color: var(--minisite-bobex-blue);
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: block;
    }

    .carrousel-wrapper {
        margin: 30px 0;

        @media screen and (max-width: 767px) {
            .swiper-button-prev,
            .swiper-button-next {
                display: none;
            }
        }

        @media screen and (min-width: 768px) {
            margin: 36px 0;
        }
    }
}

.bbx-footer {
    text-align: center;
    background-color: var(--minisite-bobex-blue) !important;

    @media screen and (min-width: 768px) {
        text-align: left;
    }

    .container {
        padding-top: 25px;
        padding-bottom: 25px;

        @media screen and (min-width: 768px) {
            padding-top: 36px;
            padding-bottom: 36px;
        }
    }

    a,
    div,
    p {
        font-size: 14px;
        color: inherit;
        line-height: 25px;
        margin-bottom: 0;
    }

    .footer-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;

        @media screen and (min-width: 1200px) {
            flex-direction: row;
            gap: 50px;
        }

        .about-wrapper {
            display: flex;
            flex-direction: column;
            gap: 25px;

            @media screen and (min-width: 1200px) {
                width: 40%;
            }

            .call-to-action {
                border-radius: 8px;
                background: var(--minisite-bobex-orange);
                height: 40px;
                width: 100%;
                display: block;
                color: white;
                text-align: center;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                padding: 10px 25px;
            }

            .social-icons .social-icon {
                i {
                    font-size: 2em;
                    margin: 5px;
                }
            }

            .social-icons .social-icon:hover {
                color: var(--minisite-bobex-orange) !important;
            }
        }

        .footer-list-wrapper {
            display: flex;
            flex-direction: column;
            gap: 25px;

            @media screen and (min-width: 768px) {
                flex-direction: row;
                justify-content: space-between;
            }

            @media screen and (min-width: 1200px) {
                width: 60%;
                &.no-local-footer {
                    justify-content: flex-end;
                    gap: 30%;
                }
            }

            .footer-list {
                flex-shrink: 0;
                flex-grow: 0;

                .title {
                    color: white;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 20px;
                    margin-bottom: 15px;
                    display: block;
                }

                .list {
                    margin: 0;
                    padding: 0;

                    .list-item {
                        list-style-type: none;

                        .link:hover {
                            text-decoration: underline;
                            color: white;
                        }
                    }
                }
            }
        }
    }

    .copyright-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-top: 25px;
        border-top: 1px solid white;
        margin-top: 25px;

        @media screen and (min-width: 1200px) {
            flex-direction: row;
            gap: 0;
            justify-content: space-between;
        }

        .copyright {
            /*padding-top: 25px;*/
            /*border-top: 1px solid white;*/
        }

        .bottom-links .link:not(:first-child) {
            padding-left: 10px;
            margin-left: 5px;
            border-left: 1px solid white;
        }

        .bottom-links .link:hover {
            text-decoration: underline;
            color: white;
        }
    }
}