.about-content-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-content-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-content-card > div {
    flex: calc(50% - 20px);
}
.about-content-cards-wrapper .about-content-card:nth-child(odd) {
    flex-direction: row-reverse;
}
.about-content-cards-wrapper .about-content-card:nth-child(even) {
    flex-direction: row;
}
.about-card-content-wrapper p {
    color: #6b7280;
    font-weight: 400;
    line-height: 150%;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .about-content-cards-wrapper {
        gap: 2.625rem;
    }
     .about-content-card > div {
        flex: 100%;
        width: 100%;
    }
    .about-content-cards-wrapper .about-content-card:nth-child(odd) {
        flex-direction: column;
    }
    .about-content-cards-wrapper .about-content-card:nth-child(even) {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .about-card-content-wrapper p {
        font-size: 16px;
    }
}
