* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    padding: 15px 0 15px 0;
}

.all__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    margin: 0 auto;
    max-width: 80%;
}

.d-flex {
    display: flex;
}

.f__column {
    display: flex;
    flex-direction: column;
}

.c__pink {
    color: pink;
}

.btn__pink {
    color: #fff;
    background-color: palevioletred;
    border-radius: 5px;
    border: none;
    padding: 15px;
    cursor: pointer;
}

.btn__white {
    color: palevioletred;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid palevioletred;
    padding: 14px;
    margin-bottom: 20px;
    width: fit-content;
    text-align: center;
}

.btn__pink:hover {
    color: palevioletred;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid palevioletred;
    padding: 14px;
}

/*objective*/

#objective {
    height: 100vh;
}

#objective .box__content {
    margin-top: 10%;
}

#objective .box__content .box__text {
    width: 100%;
    padding-left: 20px;
}

#objective .box__content .box__image {
    width: 100%;
}

/*cards*/

.box__cards {
    width: 100%;
}

.card {
    margin-right: 10px;
    margin-top: 10px;
}

.card {
    border: 2px solid pink;
    width: 200px;
    height: 200px;
}

/*client*/
#client {
    margin-top: 5%;
}

#client .container {
    text-align: center;
}

/*slider*/

#slider {
    margin-top: 5%;
    background-color: gray;
    height: 50px;
}


/*resultado*/
#resultado {
    margin-top: 5%;
}

#resultado .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/*case*/
#case {

    height: 400px;
    width: 100%;
    background-image: url(/assets/image/tes.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 5%;
    color: red;
}



#case .container {
    display: flex;
    align-items: flex-end;
    justify-content: left;

    width: 100%;
    height: 90%;
}

#case2 {

    height: 400px;
    width: 100%;
    background-image: url(/assets/image/tes.jpg);
    background-size: cover;
    background-position: center;
    color: red;
}

#case2 .container {
    display: flex;
    align-items: flex-end;
    justify-content: left;

    width: 100%;
    height: 90%;
}

/*Where*/

#where {
    margin-top: 5%;
}

/*testimony*/

#testimony {
    height: 30vh;
    margin-top: 5%;

}

#testimony .box__slide {
    width: 20%;
}

#testimony .box__slide img {
    width: 100%;
    height: 100%;

}

#testimony .box__text {
    margin-left: 20px;
}




@media (max-width:1240px) {

    img {
        width: 100%;
    }

    .btn__white {
        width: 60%;
    }

    .container {
        max-width: 90%;
    }

    #objective {
        height: auto;
    }

    #objective {
        margin-top: 10%;
    }

    #objective .box__content {
        display: block;
    }

    #objective .box__content .box__text {
        padding-left: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 0;
    }

    /*cards*/

    #cards .box__cards {
        flex-direction: column;
    }

    #where .box__content {
        display: block;
    }

    #where .box__text {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /*testimony*/

    #testimony .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #testimony .box__text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0;
    }

    #testimony .box__slide {
        width: 80%;
        margin-bottom: 5%;
    }
}