/*---------------
Mobile
---------------*/

.HomeDepoimento * {
    padding: 0;
    margin: 0;
}


.HomeDepoimento .row {
    height: 100%;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
}

.HomeDepoimento .col {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.HomeDepoimento h2 {
    font-family: 'Titulos', cursive;
    color: var(--PretoEscuro);
    font-size: 2.7em;
    position: relative;
}

.HomeDepoimento h2::before {
    content: " ";
    width: 33%;
    height: 3px;
    background-color: var(--AzulEscuro);
    position: absolute;
    bottom: -15px;
    left: 33%;
}

.HomeDepoimento .col-link {
    padding: 0;
    justify-content: end;
}
.HomeDepoimento .col-link>* {
    font-family: "Titulos", Arial, Helvetica, sans-serif !important;
    font-size: 1.5em;
    text-decoration: none;
    color: var(--AzulClaro);
    transition: .3s;
}

.HomeDepoimento .col-link>*:hover {
    color: var(--PretoEscuro) !important;
}




.HomeDepoimento p {
    color: var(--PretoClaro);
    font-size: 1em;
    text-align: center;
}


.HomeDepoimento .col-txt {
    height: 100%;
}
.HomeDepoimento .col-depoimento {
    display: flex;
    position: relative;
    height: 55vh;
    margin-bottom: 50px;
}


/*-----------------
swiper
-----------------*/
.HomeDepoimento .swiper {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
}

.HomeDepoimento .swiper-slide {
    background-position: center;
    background-size: cover;
}

.HomeDepoimento .swiper-slide img {
    display: block;
    width: 100%;
}



@media (max-width:400px) {
    @media (max-height:700px) {
        .HomeDepoimento .row {
            height: 100%;
            margin-bottom: 50px;
        }
    }
}

@media (min-width:978px) {
    .HomeDepoimento .mediapc {
        order: 2;
    }

    .HomeDepoimento .row {
        height: calc(100vh - 90px);
        width: 85%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
    }

    .HomeDepoimento .col-depoimento,
    .HomeDepoimento .col-txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .HomeDepoimento .col-depoimento {
        order: 1;
        flex-direction: row;
        margin: auto 0;
    }

    .HomeDepoimento .col {
        flex: 0 0 0%;
        padding: 20px 0 !important;
    }
    .HomeDepoimento h2 {
        font-family: 'Titulos', cursive;
        font-size: 2.9em;
    }

}