/* Header */
.tmp-header {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.tmp-linear {
    background: transparent !important;
}

@media (min-width: 992px) {
    .tmp-lg-linear {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0) 100%) !important;
    }

    .tmp-lg-header {
        background-color: transparent !important;
    }
}


/* custom-btn */
.custom-btn {
    color: white;
    background-color: transparent;
    border: solid white 2px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.5s ease, border 0.5s ease;
}

.custom-btn:hover {
    border: solid var(--my-primary) 2px;
    background-color: var(--my-primary);
}