.item-pricing {
    height: 100%;
}

.item-pricing-title-section {
    display: flex;
    align-items: center;
}
.item-pricing-title-section .item-pricing-title {
    padding: 0 2rem;
    height: 20%;
}
.item-hr-orange {
    width: 50px;
    height: 2px;
    background-color: var(--orange);
    margin: 5px 0;
}

.item-pricing-circle-icon {
    width: 75px;
    min-width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    box-shadow: inset 20px 20px 45px -35px rgba(55,62,137,.3), inset -15px -15px 30px rgba(255,255,255,.6)
}

.item-pricing-circle-icon i {
    font-size: 35px;
    color: var(--middle-blue);
}
.item-pricing-infos {
    display: flex;
    align-items: center;
}
.item-pricing-infos:hover a, .item-pricing-infos:focus a,
.item-pricing-infos:hover i, .item-pricing-infos:focus i {
    color: var(--middle-blue);
}
.item-pricing-infos i {
    color: var(--orange);
    font-size: 25px;
}
.item-pricing-infos a {
    color: var(--orange);
}

.item-pricing .more-presta {
    text-align: center;
    margin-left: auto;
}

.item-pricing .more-presta p {
    font-size: 10px;
    margin-bottom: 5px !important;
}
.details-more-presta {
    padding: 2rem 1.5rem;
    border: 2px solid var(--grey-trans);
    border-top: none;
    border-radius: 0 0 50px;
}

.details-more-presta h3 {
    font-weight: 600;
    color: var(--purple);
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.details-more-presta p {
    display: flex;
    margin-bottom: 7px !important;
}
.details-more-presta p i {
    margin-right: 1rem;
    font-size: 22px;
    color: var(--purple);
}


.item-pricing .details-more-presta .link-presta {
    text-align: center;
    margin-top: 2rem;
}


@media (max-width: 992px) {
    .item-pricing-circle-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .item-pricing-circle-icon i {
        font-size: 20px;
    }
    .item-pricing h3 {
        font-size: 1rem;
    }
}

