.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.color-primary{
    color: var(--color-primary);
}

.bg-white{
    background-color: #fff;
}

.mt-3, .my-3 {
    margin-top: 1rem!important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem!important;
}

.mt-5, .my-5 {
    margin-top: 3rem!important;
}

.fw-bold{
    font-weight: bold;
}

.me-2, .mx-2 {
    margin-right: 0.5rem!important;
}

.pt-3, .py-3 {
    padding-top: 1rem!important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem!important;
}

.ml-auto, .mx-auto {
    margin-left: auto!important;
}
.mr-auto, .mx-auto {
    margin-right: auto!important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
}

.d-block{
    display: block;
}

.border-top-secondary{
    border-top: 1px solid var(--color-secondary);
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2rem, 0);
        transform: translate3d(0, 2rem, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate__fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}