#depoimentos_row {
    background-color: var(--secondary);
    position: relative;
    padding-bottom: 150px;
}

#depoimentos_row .title {
    font: normal normal bold 55px/43px Nunito;
    color: #F8EFD2;
}

#depoimentos_row::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 70px;
    top: -68px;
    left: 0;
    background-image: var(--svg-cloud-pink);
    z-index: 5;
}

#depoimentos_row::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 70px;
    bottom: -68px;
    left: 0;
    transform: scaleY(-1);
    background-image: var(--svg-cloud-pink);
    z-index: 5;
}

#depoimentos_row>div {
    position: relative;
}

#depoimentos_row .single-slide {
    padding: 3rem 7rem;
    user-select: none;
}

#depoimentos_row .bg-header {
    height: 70px;
    background-color: #F8EFD2;
    border-radius: 36px 36px 0 0;
    border-bottom: 2px solid var(--secondary);
}

#depoimentos_row .bg-white {
    padding: 4rem 7rem;
    border-radius: 0 0 36px 36px;
}

#depoimentos_row .subtitle {
    font: normal normal bold 25px/24px Nunito;
    color: var(--secondary);
}

#depoimentos_row .description {
    font: normal normal normal 17px/24px Nunito;
    color: #4C4C4C;
}

#depoimentos_row .image img {
    border-radius: 50%;
    height: 290px;
    width: 294px;
    object-fit: cover;
}

#depoimentos_row .controls .left {
    transform: scaleX(-1);
    position: absolute;
    top: 350px;
    left: 3%;
    padding: 10px 8px 10px 12px;
    background-color: #F8EFD2;
    border-radius: 34px;
    cursor: pointer;
}

#depoimentos_row .controls .right {
    position: absolute;
    top: 350px;
    right: 3%;
    padding: 10px 8px 10px 12px;
    background-color: #F8EFD2;
    border-radius: 34px;
    cursor: pointer;
}

#depoimentos_row .controls svg {
    filter: brightness(0) saturate(100%) invert(65%) sepia(46%) saturate(2945%) hue-rotate(317deg) brightness(115%) contrast(100%);
}

#depoimentos_row .object svg {
    position: absolute;
    bottom: -60px;
    right: 30px;
}

@media screen and (max-width: 768px) {
    #depoimentos_row>div {
        position: unset;
    }

    #depoimentos_row .single-slide {
        padding: 0 20px;
    }

    #depoimentos_row .title {
        font: normal normal bold 35px/43px Nunito;
        text-align: center;
    }

    #depoimentos_row .bg-white {
        padding: 10px 0;
        border-radius: 0 0 36px 36px;
    }

    #depoimentos_row .controls {
        display: none;
    }

    #depoimentos_row .object svg {
        bottom: 10px;
        right: 5%;
        width: 30%;
    }

    #depoimentos_row .image img {
        height: 250px;
        width: 250px;
    }

    #depoimentos_row .tns-nav button {
        border: none;
        border-radius: 50%;
        height: 16px;
        width: 16px;
        padding: 8px;
        margin: 5px;
        background-color: #4f70e1;
        background-image: none;
        transition: .25s;
    }

    #depoimentos_row .tns-nav button.tns-nav-active {
        border: none;
        background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0) 100%);
    }

    #blog_slide_row {
        padding-top: 0;
    }

    .tns-nav {
        bottom: 13%;
    }
}

@media screen and (max-width: 992px) {
    #depoimentos_row .object svg {
        right: 10px;
    }

    .tns-nav {
        bottom: 0;
    }
}