.pricing {
    padding: 45px 0 40px 0;
    position: relative;
}

.pricing h2 {
    margin-bottom: 47px;
}

.pricing-card,
.pricing-card-details {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    border-radius: 8px;
    border: 1px solid #E4E4E4;
    background: var(--white);
    padding: 60px 24px 150px 24px;
    gap: 28px;
    height: 100%;
    position: relative;
}

.pricing-btn {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 100%;
}

.pricing-card.seo .pricing-btn {
    position: relative;
    bottom: auto;
}

.pricing-card.custom-package {
    background: var(--black);
}

.pricing-card p.pi-item {
    cursor: pointer;
}

.pricing-card.seo {
    padding: 20px 24px 24px;
}

.pricing-card-details {
    gap: 5px;
}

.pricing-card-details h5 {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 0;
}

.pricing-card-details h3 {
    font-family: 'Radikal-Black', sans-serif !important;
    font-size: 38px;
    line-height: 40px;
}

.pricing-card p,
.pricing-card-details h5,
.pricing-card-details h3 {
    margin: 0;
}

.pricing-card p.pi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-card p.pi-item:last-child {
    margin-bottom: 0;
}

.pricing-card .btn-white {
    min-width: 215px;
    justify-content: center;
}

.pricing-card.custom-package .btn-white {
    border-color: var(--white);
}

.pricing .p6 {
    left: -200px;
    top: 234px;
    animation: p6Move 50s linear infinite;
    height: 400px;
    width: 400px;
    position: absolute;
}

@keyframes p6Move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(300px);
    }

    100% {
        transform: translateY(0);
    }
}

.pricing .p7,
.pricing .p7-a {
    position: absolute;
    bottom: auto;
    left: -20px;
    animation: p7Move 50s linear infinite;
    top: 100px;
}

.pricing .p7-a {
    right: -20px;
    top: 50%;
    left: auto;
    animation: p7Move 50s linear infinite;
}

@keyframes p7Move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}

.pricing-page .faq {
    position: relative;
}

.pricing-page .faq::after {
    background: url("../../../library/images/pricing-page.svg") bottom right / contain no-repeat;
    position: absolute;
    content: '';
    right: 0;
    bottom: -180px;
    width: 380px;
    height: 380px;
    opacity: 0.5;
}


@media(max-width:1399px) {
    .pricing-card .btn-white {
        min-width: 180px;
    }

    .pricing-card,
    .pricing-card.seo {
        padding: 32px 15px 19px;
    }
}

@media(max-width:992px) {

    .pricing .p7-a,
    .pricing .p7,
    .pricing .p6 {
        display: none;
    }

    .pricing .row .col-md-3 {
        width: 50%;
        margin-bottom: 25px;
    }

    .pricing-card {
        padding: 32px 15px 35px 15px;
    }

    .pricing-btn {
        position: relative;
        bottom: auto;
    }

    .custom-package .pricing-btn {
        position: absolute;
        bottom: 65px;
    }
}

@media(max-width:576px) {
    .pricing .row .col-md-3 {
        width: 100%;
    }

    .custom-package .pricing-btn {
        position: relative;
        bottom: auto;
    }
}