#service-words {
    padding-block: 100px;
    background: #000;
    text-align: center;

    .wrap {
        .text {
            max-width: 850px;
            margin-bottom: 128px;
            text-align: center;
            display: grid;
            justify-content: center;
            gap: 32px;
            margin-inline: auto;

            @media only screen and (max-width: 980px) {
                margin-bottom: 50px;
            }

            .description {
                font-size: 20px;
            }

            .context {
                display: flex;
                gap: 30px;
                justify-content: center;
                align-items: center;

                span {
                    text-transform: uppercase;
                    font-weight: 600;
                    font-size: 22.5px;

                    @media only screen and (max-width: 980px) {
                        font-size: 18px;
                    }

                }

                span:nth-child(1) {
                    color: var(--primary);
                }

                span:nth-child(2) {
                    font-weight: normal;
                    font-size: 30px;
                }

                span:nth-child(3) {
                    color: var(--text);
                }
            }
        }

        .list {
            display: grid;
            gap: 30px;

            .item {
                font-size: 240px;
                font-family: var(--font-heading);
                text-transform: uppercase;
                line-height: 0.8;
                overflow: hidden;
                position: relative;
                width: fit-content;
                margin-inline: auto;
                color: transparent;
                transition: all 0.5s;

                --top: -100%;
                --bottom: 0%;

                &:before,
                &:after {
                    content: attr(data-text);
                    color: #fff;
                    transition: all 0.5s;
                }

                &:before {
                    top: var(--top);
                    position: absolute;
                }

                &:after {
                    position: relative;                     
                    bottom: var(--bottom);
                }

                @media only screen and (max-width: 980px) {
                    font-size: 140px;
                }
            }
        }
    }
}