.services {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.service {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.column-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-1 .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.column-1 .title h2 {
    font-family: Kalameh;
    font-size: 26px;
    font-weight: 500;
    line-height: 44.2px;
    color: #1A237E;
    margin: unset;
}

.column-1 .title img {
    width: 48px;
    height: 48px;
}

.column-1 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.88px;
    color: #212121;
    margin: unset;
}

.column-2 img {
    min-width: 573px;
    border: 4px solid #fff !important;
    border-radius: 24px  !important;
    object-fit: cover;
    height: 364px;
}

.service.rtl {
    flex-direction: row-reverse;
}


@media (max-width: 767px) {
    .service {
        display: flex;
        flex-direction: column !important;
        gap: 24px;
    }

    .services {
        gap: 32px;
    }

    .column-1 {
        gap: 16px;
    }

    .column-1 .title h2 {
        font-family: Kalameh;
        font-size: 16px;
        font-weight: 500;
        line-height: 27.2px;
    }

    .column-1 p {
        font-size: 12px;
        font-weight: 400;
        line-height: 17.16px;
    }

    .column-1 .title img {
        width: 24px;
        height: 24px;
    }

    .column-2 img {
        min-width: 100% !important;
        object-fit: cover;
        height: 220px !important;
    }

}