:root{
    --base-color1: #cdd751; /*#e17743*/ /*#cdd751*/
    --base-color2: #929497;
    --base-color3: #1e56a2;
    --dark-text: #222222;
    --light-text: #f5f5f5;
    --light-bg: #eeeeee;
    --dark-bg: #0a1b2c;

    --font-base: 'Libre Franklin', sans-serif;
}

#costumers .swiper {
    height: 25%;
}

#costumers .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 1%;
    width: 100%;
}

/* Cards specification */
.card-slide {
    height: 100%;
    width: 80%;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cards text specification */
.card-slide .info p {
    font-size: 1.4em;
    color: var(--dark-text);
}

.card-slide span.author{
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 100;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Cards button specification */
.card-slide span.author a {
    width: fit-content;
    justify-content: center;
    align-items: center;
    display: flex;
    color: var(--base-color2);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.card-slide span.author a:hover{
    color: var(--base-color1);
    transition: 0.5s ease-in-out;
}