.testimonial-slider {
    padding-bottom: 60px;

    .owl-dots {
        position: absolute;
        bottom: 40px;
        left: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;

        .owl-dot {
            padding: 0;
            margin: 0;
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
            margin: 0 5px;
            border: 0;

            &.active {
                background: #2d9c91;
            }
        }
    }
}

.testimonial-item {
    --promo-item-quote-margin: 4px;

    height: auto;
    border: 0;
    margin-top: 0;
    padding-top: 50px;
    p {
        &::before {
            content: '„';
            margin-right: var(--promo-item-quote-margin);
        }

        &::after {
            content: '”';
            vertical-align: middle;
            margin-left: var(--promo-item-quote-margin);
        }

        &::before, &::after {
            font-size: 32px;
            color: grey;
            display: inline-block;
        }
    }

    i {
        color: lightgrey;
    }

    .testimonial-item__header {
        &::before, &::after {
            display: none;
        }
    
        justify-content: center;
        top: 0;
    }
}

.partners-slider {
    margin-bottom: 40px;
    img {
        margin: auto;
    }
    .owl-nav {
        margin-left: -60px;
        margin-right: -60px;
    }
}