/* buttons */
.btn-white {
    background-color: white;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.btn-black {
    background-color: black;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.btn-muted {
    background: var(--bs-muted);
    transition: all 0.3s ease;
}

.btn-muted:hover {
    background: #3A3B3D;
}

.btn-active {
    background-color: white;
    border: 1px solid #E9E9E9;
}

/* bg */
.bg-muted {
    background-color: var(--bs-muted) !important;

}
.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-primary {
    background-color: var(--bs-bg-primary) !important;
}

/* width */
.fit-content{
    width: fit-content
}

/* border */
.rounded-20 {
    border-radius: 20px;
}
.border-white {
    border: 1px solid #E9E9E9 !important;
}
.border-muted {
    border: 1px solid #FFFFFF1A;
}
.border-gray {
    border: 2px solid #E9E9E9;
}

/* padding */
.py-8{
    padding: 8rem 0;
}
.pt-8 {
    padding-top: 8rem;
}

/* hover */
.hover-card-effect {
    overflow: hidden;
}
.hover-card-effect:hover img {
    transition: all 0.3s ease;
    transform: scale(1.1);
}

.footer-link-hover{
    transition: all 0.3s ease;
}
.footer-link-hover:hover{
    color: #0D6EFD !important;
}
