.articleSevenContainer {
    padding: 0;
    width: 100%;
    display: flex;
    direction: rtl;
    flex-flow: wrap;
    /*max-width: 1430px;*/
    flex-direction: row;
    align-items: center;
    justify-content: center;

}

.articleBoxHolder {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 25px;
}

    .articleBoxHolder:hover {
        transition: all 1000ms;
    }

.aBoxImage {
    width: 100%;
    height: 70%;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    flex-direction: column;
    transition: all 1000ms;
    transition-timing-function: linear;
    background-color: rgba(0, 0, 0, 0.5);
}

    .aBoxImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        transition: all 1000ms;
        transition-timing-function: linear;
        object-position: center;
    }

    .aBoxImage .arrow {
        bottom: 0;
        position: absolute;
        transition: all 1000ms;
        transition-timing-function: linear;
        color: rgba(255, 255, 255, 1);
    }

.articleBoxHolder:hover .arrow {
    opacity: 0;
    transition: all 1000ms;
    transition-timing-function: linear;
    transform: rotate(180deg);
}

.articleBoxHolder:hover .aBoxImage img {
    transform: scale(2 2);
    transition: all 1000ms;
    transition-timing-function: linear;
}

.aBoxTexts {
    width: 100%;
    height: 30%;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    flex-direction: column;
    transition: all 1000ms;
    transition-timing-function: linear;
    justify-content: center;
    background-color: rgba( 255, 255, 255, 1);
    box-shadow: inset 0 0 20px -10px rgb(159 159 159);
}

    .aBoxTexts:hover {
    }

.articleBoxHolder:hover .aBoxImage {
    height: 40%;
    transition: all 1000ms;
    transition-timing-function: linear;
}

.articleBoxHolder:hover .aBoxTexts {
    height: 60%;
    transition: all 1000ms;
    transition-timing-function: linear;
}

.aBoxTextHeader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 1000ms;
    transition-timing-function: linear;
    color: rgba(0, 0, 0, 1);
    justify-content: center;
}

.aBoxTextParagraph {
    height: 0;
    opacity: 0;
    width: 100%;
    display: flex;
    align-items: start;
    transition: all 1000ms;
    transition-timing-function: linear;
    flex-direction: column;
    color: rgba(255, 255, 255, 0);
    justify-content: space-evenly;
}

.articleBoxHolder:hover .aBoxTextHeader {
    height: 0;
    transition: all 1000ms;
    transition-timing-function: linear;
    color: rgba(255, 255, 255, 0);
    overflow:hidden;
}

.articleBoxHolder:hover .aBoxTextParagraph {
    opacity: 1;
    height: 100%;
    transition: all 1000ms;
    transition-timing-function: linear;
    color: rgba(0, 0, 0, 1);
}

.aBoxTextHeader h3 {
    font-size: 16px;
    padding: 0 10px;
    cursor: default;
    line-height: 35px;
    text-align: center;
}

    .aBoxTextHeader h3::selection {
        background-color: rgba(0,0,0,0);
    }

.aBoxTextParagraph p {
    top: 10px;
    direction: rtl;
    font-size: 14px;
    padding: 0 25px;
    cursor: default;
    overflow: hidden;
    position: relative;
    text-align: justify;
}

.aBoxTextParagraph pre {
    top: 10px;
    white-space: pre-wrap;
    direction: rtl;
    font-size: 14px;
    padding: 0 25px;
    cursor: default;
    overflow: hidden;
    position: relative;
    text-align: justify;
}

    .aBoxTextParagraph p::selection {
        background-color: rgba(0,0,0,0);
    }

.aBoxTextParagraph a {
    text-decoration: none;
}


@media (max-width: 640px) {

    .articleBoxHolder {
        width: 300px !important;
        overflow: hidden;
        border-radius: 15px;
/*        transition: all 1000ms;
        transition-timing-function: linear;*/
        margin: 6px !important;
        overflow-x: hidden;
    }

    .aBoxTextHeader h3 {
        font-size: 14px;
        padding: 0 10px;
        cursor: default;
        line-height: 18px;
        text-align: center;
    }

    .aBoxTextParagraph p {
        top: 10px;
        direction: rtl;
        font-size: 12px;
        padding: 0 25px;
        cursor: default;
        overflow: hidden;
        position: relative;
        text-align: justify;
    }
}
