.success__section {
    margin: 50px 0 0 0;
    backdrop-filter: blur(8px);
    background-image: linear-gradient(to right bottom, oklab(0.729884 0.16093 0.0369245 / 0.08) 0%, rgb(255, 255, 255) 50%, oklab(0.36342 -0.000455797 -0.127774 / 0.12) 100%);
    border: 1px solid;
    border-color: oklab(0.729884 0.16093 0.0369245 / 0.2);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition-duration: .3s;
}

.success__section:hover {
    background-image: linear-gradient(to right bottom, oklab(0.729884 0.16093 0.0369245 / 0.12) 0%, rgb(255, 255, 255) 50%, oklab(0.36342 -0.000455797 -0.127774 / 0.2) 100%);
    border-color: oklab(0.729884 0.16093 0.0369245 / 0.4);
}
.success__img {
    min-width: 48px;
    width: 48px;
    height: 48px;
}
.success__percentage {
    color: #243580;
    font-size: 60px;
    font-weight: 700;
}
.success__title {
    font-size: 24px;
    color: #fd768a;
}
.success__description {
    max-width: 70%;
    text-align: center;
}
.success__items {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}
.success__item {
    backdrop-filter: blur(8px);
    background-color: oklab(0.999994 0.0000455678 0.0000200868 / 0.9);
    border: 1px solid;
    border-color: oklab(0.999994 0.0000455677 0.0000200868 / 0.6);
    border-radius: 15px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}
.success__item-title {
    color: #243580;
    font-size: 30px;
    font-weight: 700;
}
.success__item-description {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .success__items {
        grid-template-columns: 1fr 1fr 1fr;
    }
}