/*==================================================
=                کلاس‌های کمکی                     =
==================================================*/

.shadow-soft{
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.shadow-medium{
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.shadow-strong{
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.radius-8{
    border-radius:8px;
}

.radius-10{
    border-radius:10px;
}

.radius-12{
    border-radius:12px;
}

.radius-16{
    border-radius:16px;
}

.radius-20{
    border-radius:20px;
}

.radius-30{
    border-radius:30px;
}

.bg-white{
    background:#fff;
}

.bg-light{
    background:#f8f9fa;
}

.text-green{
    color:#1b4332;
}

.text-center{
    text-align:center;
}

.cursor-pointer{
    cursor:pointer;
}

.transition{
    transition:.25s;
}

.hover-up:hover{
    transform:translateY(-3px);
}

.w-100{
    width:100%;
}

.h-100{
    height:100%;
}

.d-none{
    display:none;
}

.d-flex-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.pre-wrap{
    white-space:pre-wrap;
}

.clearfix::after{
    content:"";
    display:block;
    clear:both;
}