.depoimentos {
    float: left;
    width: 100%;
    background-color: #171616;
    padding: 50px 0;
}

.depoimentos h2 {
    float: left;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    line-height: 150%;
}

.depoimentos .subtitulo {
    float: left;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 20px 0 50px 0;
    line-height: 170%;
}

.depoimentos ul {
    float: left;
    width: 100%;
    padding: 0 60px;
    margin: 0;
}

.depoimentos ul li {
    padding: 0 5px;
    text-align: center;
}

.depoimentos ul li .boxInterno {
    background-color: #060606;
    padding: 20px;
    float: left;
    width: 100%;
}

.depoimentos ul li .boxInterno figure {
    text-align: center;
    float: left;
    width: 100%;
}

.depoimentos ul li .boxInterno figure img {
    border-radius: 100px;
    display: inline-block;
    max-width: 120px;
    border-radius: 150px;
}

.depoimentos ul li .boxInterno .titulo {
    float: left;
    width: 100%;
    color: #A6926D;
    font-size: 15px;
    margin: 20px 0;
}

.depoimentos ul li .boxInterno p {
    float: left;
    width: 100%;
    text-align: left;
    color: #fff;
    line-height: 160%;
    font-size: 12px;
}

.depoimentos ul li .boxInterno .nome {
    color: #fff;
    float: left;
    width: 100%;
    text-align: left;
    margin: 20px 0 0 0;
    font-size: 14px;
    font-weight: bold;
}

.depoimentos ul .anterior {
    width: 40px;
    position: absolute;
    height: 40px;
    background: #aa9168 0% 0% no-repeat padding-box;
    top: calc(50% - 20px);
    border-radius: 100px;
    left: 0;
    cursor: pointer;
    transition: all .1s linear 0s;
    z-index: 1;
}

.depoimentos ul .anterior::after {
    border-left: 2px solid #060606;
    border-bottom: 2px solid #060606;
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: calc(50% - 5px);
    position: absolute;
    left: calc(50% - 3px);
}

.depoimentos ul .proximoo {
    width: 40px;
    position: absolute;
    height: 40px;
    background: #aa9168 0% 0% no-repeat padding-box;
    top: calc(50% - 20px);
    border-radius: 100px;
    right: 0;
    cursor: pointer;
    transition: all .1s linear 0s;
    z-index: 1;
}

.depoimentos ul .proximoo::after {
    border-right: 2px solid #060606;
    border-bottom: 2px solid #060606;
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 5px);
    position: absolute;
    right: calc(50% - 3px);
}

@media only screen and (max-width: 768px) {

    .depoimentos {
        padding: 30px 0;
    }

    .depoimentos h2 {
        font-size: 26px;
    }

}

@media only screen and (max-width: 600px) {

    .depoimentos ul {
        padding: 0 30px;
    }

}