#footer > .container{
    max-width:100%;
    width:100%;
}

#avis-client{
    width:100%;
    padding-top:50px;
}

#avis-titre{
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
}

#avis-titre > article{
    width:100%;
    text-align:center;
}

#avis-titre > article > h3{
    color: black;
    font-weight: bold;
    font-size: 24px;
}

#avis-titre > article:nth-of-type(2){
    border-bottom:4px solid #A72833;
    margin-bottom:20px;
    width:150px;
}

#avis-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

#avis-container {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

#avis-container.only-one-post {
	justify-content: center;
}

.avis-item {
    flex: 0 0 33.33%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex-wrap: wrap;
    height: 100%;
}

.avis-item > p {
    line-height: 18px;
}
.avis-content{
    font-size:14px;
    text-align:left;
    padding: 0 20px;
    color:black;
}
.avis-author{
    font-size:14px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px;
    text-align:left;
    padding: 0 20px;
    color:black;
}
.avis-date{
    font-size:14px;
    width: 100%;
    text-align:left;
    padding: 0 20px;
    color:#4a7942;
}
.avis-stars {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}
.avis-stars img {
    width: 20px;
    height: auto;
    margin-right: 5px;
    user-select: none;
}
#prev,
#next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

@media (max-width: 768px) {
    .avis-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 425px) {
    .avis-item {
        flex: 0 0 100%;
    }
}