.page__title {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page__title::before,
.page__title::after {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(15, 91, 69, .08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.page__title::before {
    top: -150px;
    left: -80px;
}

.page__title::after {
    right: -90px;
    bottom: -170px;
}

.page__title-content {
    position: relative;
    z-index: 1;
}

.page__title-content > :not(.page-title-icon) {
    position: relative;
    z-index: 2;
}

.page-title-icon {
    position: relative;
    z-index: 1;
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
}

.page-title-icon__main {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    padding: 13px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(15, 91, 69, .16);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15, 91, 69, .10);
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .page-title-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 13px;
    }

    .page-title-icon__main {
        width: 62px;
        height: 62px;
        padding: 11px;
        border-radius: 18px;
    }

}

@media (prefers-reduced-motion: no-preference) {
    .page-title-icon__main {
        animation: page-title-icon-arrive .55s ease-out both;
    }
}

@keyframes page-title-icon-arrive {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
