﻿.article10 {
    width: 100%;
    display: flex;
    padding: 3rem 0;
    align-items: center;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .article10 .article-container {
        width: 90%;
        display: flex;
        direction: rtl;
        margin: 2rem 0;
        max-width: 1200px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .article10 .vertical-tabs {
        display: flex;
        direction: rtl;
        min-width: 10%;
        flex-direction: column;
        align-items: flex-start;
    }

    .article10 .content-holder {
        width: 80%;
        display: flex;
        direction: rtl;
        flex-direction: column;
        align-items: flex-start;
    }

    .article10 .vertical-tabs button {
        color: #000;
        width: 100%;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        transition: 0.4s;
        text-align: right;
        padding: 17px 15px;
        background-color: inherit;
        border-right: 3px solid #c3c3c3;
    }

        .article10 .vertical-tabs button:hover {
            background-color: #f5f5f5;
        }

        .article10 .vertical-tabs button.active {
            background-color: #f5f5f5;
        }

    .article10 .content-holder {
        min-height: 300px;
    }

    .article10 .tab-content {
        width: 100%;
        height: 100%;
        display: none;
        align-items: flex-start;
        justify-content: space-around;
    }

        .article10 .tab-content:nth-of-type(1) {
            display: flex;
        }

    .article10 .tab-detail {
        display: flex;
        direction: rtl;
        padding: 0 3rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .article10 .tab-title {
        width: 100%;
        direction: rtl;
        font-size: 22px;
        font-weight: 700;
        text-align: start;
    }

    .article10 .tab-divider {
        width: 100%;
        height: 1px;
        color: #282828;
    }

    .article10 .tab-description {
        width: 100%;
        color: #000;
        font-size: 13px;
        line-height: 40px;
        text-align: justify;
        white-space: pre-wrap;
        direction : rtl ;
    }

    .article10 .tab-image {
        width: 250px;
        height: 100%;
        border-radius: 12px;
    }

@media (max-width : 992px) {
    .article10 .article-container {
        margin: 0;
        width: 80%;
        align-items: center;
        flex-direction: column;
    }

    .article10 .vertical-tabs {
        width: 80%;
        max-width: 600px;
        margin-bottom: 1rem;
        background-color: #f5f5f5;
    }

        .article10 .vertical-tabs button {
            border: none;
            transition: .3s all ease-in;
        }

            .article10 .vertical-tabs button.active {
                color: #fff;
                border: none;
            }

    .article10 .tab-content {
        align-items: center;
        flex-direction: column-reverse;
    }

    .article10 .tab-image {
        width: 70%;
        height: auto;
    }

    .article10 .tab-detail {
        padding: 3rem 0;
    }

    .article10 .tab-title {
        text-align: center;
    }
}

@media (max-width : 576px) {
    .article10 {
        height: auto !important;
    }
    .article10 .article-container {
        width: 95% !important;
    }
}
