.nx-heading-shape {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    z-index: 0;
    width: 100%;
    min-height: 320px;
    overflow: visible;
}

.nx-heading-shape__bg {
    --nx-shape-bg: #D8CFD6;
    --nx-gradient-angle: 180deg;
    --nx-gradient-color-1: #D8CFD6;
    --nx-gradient-color-2: #B9D8D1;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    display: block;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.nx-heading-shape__bg--solid {
    background: var(--nx-shape-bg);
}

.nx-heading-shape__bg--gradient {
    background: linear-gradient(var(--nx-gradient-angle), var(--nx-gradient-color-1) 0%, var(--nx-gradient-color-2) 100%);
}

.nx-heading-shape__bg--circle {
    border-radius: 999px;
}

.nx-heading-shape__bg--svg {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.nx-heading-shape__bg-inner {
    display: block;
    width: 100%;
    height: 100%;
}

.nx-heading-shape__title {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #000;
}

.nx-heading-shape--layout-stacked .nx-heading-shape__title {
    position: relative;
    z-index: 1;
    display: block;
}

.nx-heading-shape--layout-inline .nx-heading-shape__title {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    column-gap: 16px;
    flex-wrap: wrap;
}

.nx-heading-shape__line {
    display: block;
    line-height: 1;
}

.nx-heading-shape__line--1 {
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.nx-heading-shape__line--2 {
    font-size: clamp(38px, 5.2vw, 72px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.035em;
}

.nx-heading-shape--layout-stacked .nx-heading-shape__line + .nx-heading-shape__line {
    margin-top: -18px;
}

.nx-heading-shape--layout-inline .nx-heading-shape__line + .nx-heading-shape__line {
    margin-top: 0;
}

.nx-heading-shape--single-line .nx-heading-shape__title {
    position: relative;
    z-index: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .nx-heading-shape {
        min-height: 240px;
    }
}

/* 02 SVG ikooniga nupp */
.nx-icon-button-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nx-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 0;
    border: 0 solid transparent;
    border-radius: 50%;
    background-color: #E2D4DF;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    transition-property: background-color, border-color, box-shadow, transform;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.nx-icon-button:hover,
.nx-icon-button:focus-visible {
    background-color: #5C2382;
    text-decoration: none;
}

.nx-icon-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.nx-icon-button__icon {
    display: block;
    width: 58px;
}

.nx-icon-button__burger {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nx-icon-button__icon-line {
    display: block;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background-color: #5C2382;
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.nx-icon-button:hover .nx-icon-button__icon-line,
.nx-icon-button:focus-visible .nx-icon-button__icon-line {
    background-color: #FFFFFF;
}

.nx-icon-button__svg {
    height: 58px;
    background-color: #5C2382;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

.nx-icon-button:hover .nx-icon-button__svg,
.nx-icon-button:focus-visible .nx-icon-button__svg {
    background-color: #FFFFFF;
}
