/*
* Estilos del front-office
*
* @author Difadi.com 		<soporte@difadi.com>
* @author Laura Gutierrez	<lgutierrez@difadi.com>
* @license Comercial
* @copyright 2022 Difadi.com
*/
footer #quotes {
    background: var(--color-primary);
    padding: 40px 35px 60px 35px;
}

footer #quotes h2 {
    color: white !important;
    text-align: center;
    margin-bottom: 50px !important;
}

footer #quotes>div {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

footer #quotes>div>div {
    display: flex;
    justify-content: space-between;
}

footer #quotes>div>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer #quotes p {
    margin-bottom: 20px;
    text-align: center;
}

footer #quotes p,
footer #quotes span {
    font-family: var(--font-titles);
    font-size: 1.7em;
    color: white;
}

footer #quotes span {
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px 15px;
}

footer #quotes img {
    position: absolute;
}

footer #quotes img:first-of-type {
    left: -15%;
    top: 50%;
    transform: translateY(-50%);
}

footer #quotes img:last-of-type {
    right: -15%;
    bottom: 0;
}

@media(max-width:768px) {

    footer #quotes p,
    footer #quotes span {
        font-size: 1.4em;
    }

    #quote-price>div {
        text-align: center;
    }

    #cms #quote-price p.info {
        font-size: 1.1em;
    }
}

@media(max-width:576px) {
    footer #quotes {
        padding: 30px 15px 40px 15px;
    }

    footer #quotes p,
    footer #quotes span {
        font-size: 1.1em;
    }

    footer #quotes h2 {
        margin-bottom: 30px !important;
    }
}