.container-title{
    padding: 10px 0px 30px 0px;
}

.container-title .title h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    line-height: 1.25rem;
    color: black;
    font-weight: 600;
    margin-bottom: 40px;
    
}

.title .divider{
    border-top: 2px solid #046bd2;
    width: 9%;
    margin: auto;
}


.sobre-content{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.sobre-item{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    
}
.sobre-item h5{
    font-weight: 600;
}
.sobre-image{
    width: 75%;
    margin: 0 0 30px 0;
    padding: 30px 13px 30px 0px;
    background-color: #046bd2;
    border-radius: 10px 10px 10px 10px;
    align-content: center;
    align-items: center;
}
.depoimentos{
    padding: 70px 20px 70px 20px;
}
.depoimentos-title{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;

}
.sub-title{
    color: #7a7a7a;
    font-weight: 400;
    margin-bottom: 20px;
}
.depoimentos-card{
    margin: 30px 0 0 0;
    
}
.depoimentos-body{
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 2rem;
    align-items: stretch;
    justify-content: space-around;
    margin: 50px 25px 50px 25px;
    width: 100%;
}
.depoimentos-footer{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 2rem;
    align-items: stretch;
    justify-content: space-around;
    margin: 50px 25px 50px 25px;
    width: 100%;
}
.depoimentos-item{
    margin: 10px 10px 10px 10px;
    padding: 0px 10px 10px 10px;
    
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px 10px 10px 10px;
    
    flex-direction: column;
    position: relative;
    justify-content: space-evenly;
    align-items: center;
}
.depoimentos-item p{

    text-align: center;
    word-break: break-word;
    color: #7a7a7a;
    font-weight: 400;
}

.depoimentos-icon
{
    display: flex;
    justify-content: center;
    color: #046bd2;
    border-color: #046bd2;
    
    line-height: 1;
    text-align: center;
    margin-top: 20px;
}
.depoimentos-icon i
{
    width: 1rem;
    height: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
.depoimentos-divider
{
    display: flex;
    width: 100%;
    justify-content: center;
}
.depoimentos-divider .divider{
    width: 14%;
    border: 3px solid #046bd2;
    border-radius: 5px; /*to create round corners*/
    padding-top: 0;
    padding-bottom: 0;
}

.depoimentos-nome
{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.depoimentos-nome p{
    color: black;
    font-weight: 600;
}
@media (max-width: 1200px){
    .sobre-image{
        width: 100%;
    }    
}