.btn-custom {
    padding: 3px 15px;
    font-size: 25px;
    font-weight: 700;
    border-radius: 10px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    background-image: none;
}
.btn-all::after {
    margin-left: auto;
    width: auto;
    height: auto;
    content: "\f054";
    font-family: fontAwesome;
    font-size: 16px;
    line-height: 25px;
    background: var(--secondary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn-all {
    border-color: transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(
                to right,
                var(--secondary-color-linear-text-1),
                var(--secondary-color-linear-text-2)
            )
            border-box;
    color: #000;
    border-radius: 30px;
}
.btn-all.more:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-90deg);
}
.hover-image {
    overflow: hidden !important;
}
.hover-image img {
    transition: transform 0.5s ease;
}
.hover-image:hover img {
    transform: scale(1.05);
}
.btn-outline-secondary {
    color: #000;
    border: 1px solid var(--secondary-color);
}
.btn-outline-secondary:hover {
    color: var(--secondary-color);
    border-color: #000;
    background-color: #000;
}
