.tile-texture {
    background: var(--parme);
    color: white;
    border-radius: 0 0 32px 32px;
    position: relative;
}

.tile-texture::before,
.tile-texture::after {
    content: "";
    position: absolute;
}

.tile-texture::before {
    left: 0;
    bottom: -80px;
    background: url("../images/illus-left.svg") no-repeat left;
    background-size: contain;
    height: 140px;
    width: 300px;
}

@media screen and (min-width: 992px) {
    .tile-texture::before {
        bottom: 10%;
        height: 180px;
        width: 480px;
    }
}

.tile-texture::after {
    right: 0;
    top: 40%;
    background: url("../images/illus-right.svg") no-repeat right;
    background-size: contain;
    height: 140px;
    width: 300px;
    z-index: 0;
}

@media screen and (min-width: 992px) {
    .tile-texture::after {
        top: 20%;
        height: 180px;
        width: 480px;
    }
}

@media screen and (min-width: 992px) {
    .tile-texture {
        border-radius: 0 0 64px 64px;
    }
}

.tile-texture--container {
    padding: 32px 0;
}

@media screen and (min-width: 992px) {
    .tile-texture--container {
        padding: 64px 0;
    }
}

.tile-texture--title {
    text-align: center;
    max-width: 1062px;
    margin-inline: auto;
    margin-bottom: 48px;
}

.tile-texture--title .uptitle {
    margin-bottom: 8px;
    color: var(--lilas);
}

.tile-texture--title h2 {
    margin-bottom: 16px;
}

.tile-texture--wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .tile-texture--wrapper {
        flex-direction: row;
    }
}

.tile-texture--item {
    padding: 24px;
    position: relative;
    z-index: 3;
    flex: 1;
    border-radius: 16px;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.tile-texture--item p {
    margin: 16px 0;
}

.tile-texture--item ul {
    list-style: disc;
    margin-left: 16px;
}

.tile-texture .btn-more {
    font-size: 1rem;
}

.tile-texture .btn-more::after {
    background: white;
    width: 16px;
    height: 16px;
}

section[class$=-hero]+.tile-texture {
    margin-top: -32px !important;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    section[class$=-hero]+.tile-texture {
        margin-top: -60px !important;
    }
}

section[class$=-hero]+.tile-texture .tile-texture--container {
    padding: 80px 0 32px;
}

@media screen and (min-width: 992px) {
    section[class$=-hero]+.tile-texture .tile-texture--container {
        padding: 120px 0 64px;
    }
}

/*# sourceMappingURL=style.css.map */