.service-holder {
    position: relative;
    &::after {
        content: "";
        position: absolute;
        right: -120px;
        top: 15%;
        background: url(../imgs/about-agency-bg.png) no-repeat;
        background-position: right center !important;
        background-size: contain;
        opacity: 40%;
        width: 386px;
        height: 400px;
        animation: circlerotate 20s infinite linear;
        z-index: -1;
    }
    img {
        width: 100%;
        height: 100%;
    }
    .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        .img {
            max-width: 100%;
            img {
                width: 100%;
            }
        }
        .list{
            width: 100%;
            ul {
                display: block !important;
                li {
                    width: auto !important;
                    p {
                        margin: 13px !important;
                    }
                }
            }
        }
    }
    .steps {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        .step , .img {
            max-width: calc(100% / 2 - 20px);
        }
        .step {
            background-image: url(https://demo.awaikenthemes.com/artistics/wp-content/uploads/2024/11/service-bg-1.svg);
            background-position: top left;
            background-repeat: no-repeat;
            background-size: auto;
            padding: 30px 40px 10px;
            &::before {
                background-color: #1B1B1B;
                --background-overlay: '';
            }
            .head {
                display: flex;
                justify-content: space-between;
                margin-bottom: 80px;
                i {
                    font-size: 2.5em;
                    color: var(--main-color);
                }
                .content {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    h6 {
                        color: #fff !important;
                        font-size: 1.2em;

                    }
                    span {
                        color: var(--main-color);
                        font-size: 1.5em;
                        font-weight: bold;
                    }
                }
            }
            > h5 {
                color: #fff;
                font-size: 1.5em;
            }
        }
    }
    .side {
        .allServices {
            color: #fff;
            margin:20px 0 80px;
            h2 {
                padding: 20px;
                padding-bottom: 30px;
                border-bottom: 1px solid #eee;
            }
            .services {
                padding: 20px;
                li {
                    margin-bottom: 15px;
                    a {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        padding: 35px 0;
                        border-bottom: 1px solid #999;
                        span {
                            color: #fff;
                            font-size: 1.1em;
                            transition: .3s;
                        }
                        i {
                            color: var(--main-color);
                            font-size: 1.5em;
                            transform: rotate(-45deg);
                            transition: .3s;
                        }
                        &:hover {
                            i {
                                transform: rotate(0);
                            }
                            span {
                                color: var(--main-color);
                            }
                        }
                    }
                } 
            }
        }
        .comment {
            padding: 50px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            justify-content: center;
            align-items: center;
            text-align: center;
            > i {
                color: var(--main-color);
                font-size: 2.5em;
            }
            h3 {
                color: var(--main-color);
                font-size: 1.2em;
            }
            p {
                color: #fff;
                line-height: 2;
            }
            a {
                margin: auto;
                display: block;
                width: fit-content;
                padding: 20px 30px;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                gap: 10px;
                color: #000;
                border-radius: 10px;
                background-color: var(--main-color);
                transition: .3s;
                font-size: 1.2em;
                * {
                    transition: .3s;
                }
                i {
                    font-size: 1.3em;
                }
                span {
                    font-weight: bold;
                }
                &:hover {
                    background-color: grey;
                    color: #fff;
                }
            }
        }
        .pinned {
            position: fixed;
            top: 0;
            right: 0; 
            width: 100%;
            z-index: 1000;
        }
    }
}