.card{
    border-radius: var(--border-radius);
    border: 0;
}

.card h1{
    color: #fff;
}

.categories .card-body{
    min-height: 450px;
}

.categories .card-button, .products .card-button{
    background: #fff;
    color: var(--color-purple);
    font-weight: bold;
    padding: 10px 60px 10px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: inline-block;
}

.products .card-button{
    background: var(--color-light-purple);
    color: #fff;
    background-image: url("../../images/icon/arrow-right.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
}

.products .card-button:hover{
    background-image: url("../../images/icon/arrow-right-light.png") !important;
    background: var(--color-purple);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    transition: color .5s, background .5s, background-image .5s, box-shadow .5s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.categories .card-footer, .products .card-footer{
    border: 0;
    background: transparent;
}

.categories .card{
    background: var(--color-dark-green);
    background-size: cover;
    background-repeat: no-repeat;
}

.advantages .card{
    background: url("../../images/background/torso-gradient.png");
    background-repeat: no-repeat;
    background-position: center bottom -100px;
    background-size: contain;
}

.advantages .card-body{
    text-align: center;
    color: var(--color-dark-green);
}

.advantages .card-body .title{
    font-size: 24px;
    font-weight: bold;
}

.advantages .card-body img, .products .card-body img{
    max-width: 100%;
}

.products .card{
    background: url("../../images/background/torso-gradient.png");
    background-repeat: no-repeat;
    background-position: center bottom -100px;
    background-size: contain;
}

.products.associated .card{
    background: none !important;
    box-shadow: none !important;
}

.products.associated .card-body{
    color: var(--color-dark-green);
}

.products.associated .p-3{
    padding: 0 !important;
}

.products.associated .card-footer{
    margin-top: 20px;
}

.products.associated .img-fluid{
    max-width: 60%;
}

.products .card-body .title{
    font-size: 24px;
    font-weight: bold;
    min-height: 60px;
    color: var(--color-purple);
}

.products .card-body{
    text-align: center;
}

