.section-about-us .about-us-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 2.5rem;
}

.section-about-us .about-us-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
    position: relative;
    padding-right: 1.75rem;
}

.section-about-us .about-us-item::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 0;
    bottom: 12px;
    width: 4px;
    height: calc(100% - 24px);
    background-color: #E6EBF0;
    border-radius: 16px;
}

.section-about-us .about-us-item::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 0;
    width: 4px;
    height: 2rem;
    border-radius: 16px;
    background-color: #C5CAD9;
    z-index: 2;
    animation: about-us-bar 2.5s ease-in-out infinite;
}

.section-about-us .about-us-item:nth-child(2)::before {
    animation-delay: 0.4s;
}

.section-about-us .about-us-item:nth-child(3)::before {
    animation-delay: 0.8s;
}

@keyframes about-us-bar {

    0%,
    100% {
        top: 12px;
        background-color: #C5CAD9;
    }

    50% {
        top: calc(100% - 12px - 2rem);
        background-color: var(--color1);
    }
}

.section-about-us .about-us-item .abs-items-icon {
    width: 1.75rem;
    height: 1.75rem;
    max-width: 1.75rem;
    max-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    font-size: 1.75rem;
}

.section-about-us .about-us-item .abs-items-title {
    font-size: 1.25rem;
    color: var(--color2);
    line-height: 1.2;
}

.section-about-us .about-us-item .abs-items-desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

@media screen and (max-width: 991.98px) {
    .section-about-us .about-us-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .section-about-us .editor-content.main-content {
        text-align: right;
    }

    .section-about-us .about-us-item::after {
        top: 0;
        bottom: 0;
        height: 100%;
    }

    .section-about-us .about-us-item::before {
        top: 0;
        animation-name: about-us-bar-mobile;
    }

    @keyframes about-us-bar-mobile {

        0%,
        100% {
            top: 0;
            background-color: #C5CAD9;
        }

        50% {
            top: calc(100% - 2rem);
            background-color: var(--color1);
        }
    }
}