/* Buttons */
.btn {
    cursor: pointer;
    display: inline-block !important;
    padding: 10px 20px !important;
    border: none;
    outline: none;
    text-decoration: none;
    border-radius: 999em;
    font-size: 16px;
    font-weight: 400;
}


.btn-link {
    background: transparent;
    color: #000;
}
.btn-link .fa-solid::before {color: #000;}


.btn-primary {
    background-color: #df0326;
    color: #fff;
}
.btn-primary .fa-solid::before {color: #fff;}
.btn-primary:hover {
    background-color: #c7001a;
}

.btn-secondary {
    background-color: #eee;
    color: #333;
}
.btn-secondary .fa-solid::before {color: #333;}
.btn-secondary:hover {
    background-color: #ddd;
}

#back-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.2s;
    text-decoration: none;
    i {
        transition: color 0.2s;
    }
}
#back-to-top:hover {
    background-color: #df0326;
    i {
        color: #fff;
    }
}