section#AboutUs {
    padding: 0 20px;
    border-radius: 5px;
    flex: 0 0 100%;
    box-sizing: border-box;
}

section#AboutUs h1 {
    flex: 0 0 100%;
    text-align: center;
    position: relative;
    font-size: 30px;
    margin-bottom: 60px;
}

#PageBody {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1760px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
    gap: 1%;
}

section#AboutUs .item {
    width: 45%;
    display: block;
    position: relative;
    box-shadow: var(--BoxShadow);
    padding: 10px;
    box-sizing: border-box;
    text-align: justify;
    line-height: 26px;
    border-radius: 5px;
}

section#AboutUs .item:nth-child(odd) {
    margin-right: auto;
}

section#AboutUs h1:after {
    content: '';
    width: 8%;
    height: 3px;
    background: var(--Primary);
    position: absolute;
    bottom: -10px;
    display: block;
    right: 43%;
}
section#AboutUs p{
    font-family: 'YekanBakhBold';
}
section#AboutUs .item span:after {
    content: '';
    width: 10%;
    height: 380%;
    position: absolute;
    background: var(--Primary);
    top: 0;
    left: 45%;
    z-index: -1;
}


section#AboutUs .item:last-child span:after {
    content: unset;
}


section#AboutUs .item span {
    position: absolute;
    background: var(--Primary);
    border-radius: 50%;
    top: 15px;
    left: -16%;
    color: var(--White);
    font-size: 28px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 1;
}

section#AboutUs .item:nth-child(odd) span {
    left: 106%;
}

section#AboutUsContent {
    text-align: center;
    width: 100%;
    color: var(--Primary);
    margin: 30px 20px;
    /* box-shadow: var(--BoxShadow); */
    padding: 15px;
}

section#AboutUsContent p {
    font-family: 'YekanBakhBold';
    font-size: 18px;
}

@media screen and (max-width: 850px) {
    section#AboutUs .item span:after {
        content: unset !important;
    }

    section#AboutUs .item span {
        position: relative;
        top: unset;
        left: unset !important;
        margin-right: auto;
        width: 50px;
        border-radius: 5px;
        font-size: 19px;
        height: 30px;
    }

    section#AboutUs .item {
        width: 100%;
        margin: 20px 0;
    }

    section#AboutUs h1 {
        margin-bottom: 30px;
    }
}