/*=============================================
                Pricing Style
===============================================*/
.pricing .title {
    color: #1c2437;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.pricing .desc {
    color: #1c2437;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 80px;
}

.pricing .card {
    border: none;
    padding: 10px 30px;
    -webkit-box-shadow: 0 5px 25px rgb(0 0 0 / 8%) !important;
    box-shadow: 0 5px 25px rgb(0 0 0 / 8%) !important;
    border-radius: 20px;
}

.pricing .card:hover .btn-outline-primary {
    color: white;
    background: #007bff;
}

.pricing span.h2 {
    font-weight: 700;
}


.pricing sub {
    font-weight: 400;
    margin-right: 5px;
    bottom: 0;
    vertical-align: middle;
    text-decoration: line-through;
    -webkit-text-decoration-color: #005fff;
    text-decoration-color: #005fff;
}

.pricing .card {
    position: relative;
    padding-bottom: 70px;
}

.pricing .card-body.flex-none {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.off {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 14px;
    display: inline;
    color: #ffffff;
    background: #005FFF;
    padding: 5px 15px;
    border-radius: 0px 0px 5px 5px;
}

.pricing ul {
    margin: 0 0 15px 0;
    padding: 0;
}

.pricing ul li {
    color: #444444;
    font-size: 15px;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.pricing ul li::before {
    position: absolute;
    top: 0.6rem;
    left: 0;
    content: "";
    background: url('/assets/img/tick.png') no-repeat;
    background-position: center;
    background-size: cover;
    height: 18px;
    width: 18px;
}

.pricing .card a {
    position: absolute;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.pricing .card .theme-btn.alt {
    color: #ffffff;
    background: #426279;
}

.theme-btn {
    color: #FFFFFF;
    background: #005fff;
    font-weight: 500;
    padding: 12px 30px;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.theme-btn:hover {
    color: #FFFFFF;
    background: #426279;
}

