// Services Sinlge Page / Trafic And Parking Section 
.trafic-section-area {
    padding-top: 109px;
    padding-bottom: 120px;
    position: relative;
    z-index: 0;
    &.trafic-bg {
        background-size: cover;
        background-position: 0% 82%;
        background-repeat: no-repeat;
    }
    .trafic-bg-02 {
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        height: 100%;
        width: 38%;
    }
    .inner-section-title {
        .title {
            font-size: 40px;
            line-height: 48px;
            font-family: var(--heading-font);
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 15px;
        }
        p {
            font-size: 18px;
            line-height: 28px;
            font-family: var(--body-font);
            font-weight: 500;
            color: #4F4F6B;
            margin-bottom: 20px;
        }
    }
    .content {
        .description {
            font-size: 16px;
            line-height: 28px;
            font-family: var(--body-font);
            font-weight: 400;
            color: #505050;
            margin-bottom: 48px;
        }
    }
    .protection-list-items {
        .title {
            font-size: 20px;
            line-height: 35px;
            font-family: var(--body-font);
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 20px;
        }
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            li {
                font-size: 16px;
                line-height: 28px;
                font-family: var(--body-font);
                font-weight: 400;
                color: #505050;
                margin-bottom: 15px;
                padding-bottom: 15px;
                padding-left: 40px;
                display: inline-block;
                width: calc(100%/2);
                position: relative;
                &::before {
                    content: '\f00c';
                    font-family: "fontawesome";
                    font-weight: 900;
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 24px;
                    height: 24px;
                    line-height: 24px;
                    text-align: center;
                    background: #fff;
                    border-radius: 50%;
                    color: var(--main-color-one);
                    margin-right: 20px;
                    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
                }
                &::after {
                    content: '';
                    position: absolute;
                    width: 85%;
                    left: 0;
                    bottom: 0;
                    border-bottom: 1px solid rgba(204, 204, 204, 0.4);
                }
            }
        }
    }
    .percentage-of-trafic {
        margin-top: 48px;
        .content {
            margin-bottom: 25px;
            .title {
                font-size: 20px;
                line-height: 35px;
                font-family: var(--body-font);
                font-weight: 700;
                color: var(--heading-color);
                margin-bottom: 10px;
            }
        }
    }
}