.tabs {
    list-style: none;
    margin: 65px auto 30px auto;
    padding: 0;
    direction: rtl;
    text-align: center;
    max-width: 1130px;
}

.tabs__nav_link {
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.tabs__content {
    display: block;
    transition: opacity 0.2s;
}

.img-mp-bx {
    position: absolute;
    width: 45%;
    left: 0;
    bottom: -60px;
}

.tabs.style__horizontal .tabs__content,
.tabs.style__vertical .tabs__content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

    .tabs.style__horizontal .tabs__content.is__active,
    .tabs.style__vertical .tabs__content.is__active,
    .tabs__content.is__active {
        opacity: 1;
        height: auto;
        visibility: visible;
    }

.tabs.style__horizontal .tabs__nav {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto 60px auto;
}

    .tabs.style__horizontal .tabs__nav .tabs__nav_link {
        position: relative;
        border-bottom: 0;
        margin: 0 0px;
        display: inline-block;
        padding: 20px 10px;
        width: 25%;
        background: none;
        text-align: center;
        color: #000000;
        font-weight: bold;
    }

        .tabs.style__horizontal .tabs__nav .tabs__nav_link:first-child, .tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(2) {
            width: 12.5% !important;
        }

        .tabs.style__horizontal .tabs__nav .tabs__nav_link:after {
            position: absolute;
            border-left: 1px solid #e1dbd1;
            width: 1px;
            height: 85px;
            content: "";
            left: 0;
            top: -32px;
        }

        .tabs.style__horizontal .tabs__nav .tabs__nav_link:first-child:after {
            width: 16px;
            height: 1px;
            border-bottom: 1px solid #000;
            top: 32px;
            left: -12px;
        }

        .tabs.style__horizontal .tabs__nav .tabs__nav_link:before {
            content: "\e833";
            font-family: 'Linearicons-Free';
            position: absolute;
            top: -26px;
            left: 44%;
            font-size: 25px;
            color: #d1ac74;
            font-weight: normal !important;
            z-index: 999;
        }

.is__responsive .tabs__nav_link:before {
    content: "\e833";
    font-family: 'Linearicons-Free';
    position: absolute;
    top: 15px;
    right: 16px;
    font-size: 20px;
    color: #d1ac74;
    font-weight: normal !important;
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link:first-child:before {
    left: -17px;
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(2):before {
    display: none;
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(3):before, .tabs.style__horizontal li:nth-child(4) .tabs__nav_link:before {
    content: "\e830";
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(4):before, .tabs.style__horizontal li:nth-child(5) .tabs__nav_link:before {
    content: "\e864";
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(5):before, .tabs.style__horizontal li:nth-child(6) .tabs__nav_link:before {
    content: "\e818";
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link:last-child:after {
    border: none;
}

.tabs.style__horizontal .tabs__nav .tabs__nav_link.is__active {
    font-weight: bold;
    background: #fff;
    color: #d1ac74;
}

.tabs.style__horizontal .tabs__content.is__active {
    /*box-shadow: 0px 0px 6px 2px rgb(189 183 183 / 20%);
    border-radius: 3px;
    background: #fff;*/
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

    .tabs.style__horizontal .tabs__content.is__active:nth-child(4) {
        padding-bottom: 113px;
    }

.tabs.style__horizontal .tabs__content .tabs__nav_link {
    display: none;
}

.tabs.style__vertical {
    display: flex;
    width: 100%;
}

    .tabs.style__vertical .tabs__nav {
        flex: 0 0 150px;
    }

        .tabs.style__vertical .tabs__nav .tabs__nav_link {
            border: 1px solid #ccc;
            border-right: 0;
            margin: 3px 0;
            padding: 10px;
            background: #eee;
            display: block;
        }

            .tabs.style__vertical .tabs__nav .tabs__nav_link.is__active {
                font-weight: bold;
                background: #fff;
            }

    .tabs.style__vertical .tabs__content {
        flex-grow: 1;
        width: 0;
    }

        .tabs.style__vertical .tabs__content .tabs__nav_link {
            display: none;
        }

        .tabs.style__vertical .tabs__content.is__active {
            border: 1px solid #ccc;
            background: #fff;
            padding: 18px;
            position: relative;
            z-index: 1;
            width: auto;
        }

.tabs.style__accordion,
.tabs.is__responsive {
    display: block;
}

    .tabs.style__accordion .tabs__nav,
    .tabs.is__responsive .tabs__nav {
        display: none;
    }

    .tabs.style__accordion .tabs__nav_link,
    .tabs.is__responsive .tabs__nav_link,
    .tabs.style__accordion .tabs__content .tabs__nav_link,
    .tabs.is__responsive .tabs__content .tabs__nav_link {
        display: block;
        padding: 18px;
        margin: -18px;
        color: #000;
    }

        .tabs.style__accordion .tabs__nav_link.is__active,
        .tabs.is__responsive .tabs__nav_link.is__active {
            font-weight: bold;
            margin-bottom: 0;
        }

    .tabs.style__accordion .tabs__content,
    .tabs.is__responsive .tabs__content {
        border-bottom: 1px solid #f3f3f3;
        padding: 18px;
        background: #fff;
        margin: 0 0 15px 0 0;
        display: block;
        height: auto;
        flex: none;
        opacity: 1;
        visibility: visible;
        overflow: auto;
        width: auto;
    }

    .tabs.style__accordion .tabs__content_wrapper,
    .tabs.is__responsive .tabs__content_wrapper {
        height: 0;
        transform: scaleY(0);
        overflow: hidden;
        transition: transform 0.2s;
        transform-origin: top left;
    }

    .tabs.style__accordion .tabs__content.is__active .tabs__content_wrapper,
    .tabs.is__responsive .tabs__content.is__active .tabs__content_wrapper {
        height: auto;
        transform: scaleY(1);
    }
/*# sourceMappingURL=vanilla-tabs.min.css.map */


@media only screen and (max-width:760px) {
    .tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(2):before, .tabs.style__horizontal li:nth-child(3) .tabs__nav_link:before {
        display: block !important;
        content: "\e833";
    }
}



.tabs-about {
}

.container-gnt .tab-abt .tabs__nav .tabs__nav_link, .container-gnt .tab-abt .tabs__nav .tabs__nav_link:first-child, .container-gnt .tab-abt .tabs__nav .tabs__nav_link:nth-child(2) {
    width: 25% !important;
}

.tab-abt .tabs__nav .tabs__nav_link:after {
    top: -19px !important;
}

.tab-abt .tabs__nav .tabs__nav_link:first-child:after {
    position: absolute;
    border-left: 1px solid #e1dbd1 !important;
    width: 1px !important;
    height: 85px !important;
    content: "";
    left: 0 !important;
    top: -19px !important;
}

.tab-abt .tabs__nav .tabs__nav_link:before {
    display: none !important;
}

.abt-tab-bx {
    width: 100%;
    position: relative;
    box-shadow: 0px 0px 6px 2px rgb(189 183 183 / 20%);
    padding: 0 20px 0 0;
    position: relative;
    min-height: 377px;
}

.tab-abt .tabs__content_wrapper {
    padding: 5px;
}

.mg-abt-bx {
    position: absolute;
    width: 40%;
    left: 0;
    background-size: cover;
    height: 100%;
    top: 0;
}

.ti-22 {
    font-size: 19px;
    font-weight: bold;
    padding-bottom: 15px;
}

.p-abt-99 {
    padding: 40px 0px 10px 15px;
    direction: rtl;
    text-align: justify;
    color: #000;
}

.p-22 {
    line-height: 35px;
    font-size: 15px;
}

    .p-22 span {
        display: block;
        color: #d1ac74;
        font-weight: bold;
    }

.ms_flex_team {
    display: none;
    -ms-flex-pack: justify !important;
    flex-wrap: nowrap;
    flex-direction: row;
    transition: all 0.5s ease 0s;
    align-content: space-around;
    align-items: center;
    justify-content: flex-start;
    direction: rtl;
    margin: 0px auto;
    width: 100%;
    right: 0%;
}

.msactive .ms_flex_team {
    right: 0;
    display: block !important;
}

.titr-nd-tb {
    font-size: 14px;
    color: #000;
    text-align: right;
    padding: 12px 0px;
    margin-bottom: 5px;
    font-weight: bold;
    display: block;
    text-align: right;
    border-bottom: 1px solid #f6f5f5;
}

.tab-nd-spc div:last-child .titr-nd-tb {
    border: none;
}

.titr-nd-tb i {
    font-size: 11px;
    position: relative;
    top: 3px;
    color: #7e7e7e;
    display: none;
}

.tab-nd-spc {
    padding: 10px 0;
}

.p99-tx {
    text-align: justify;
    direction: rtl;
    font-size: 13px;
    padding: 0px 0 10px 0;
    line-height: 25px;
}

.ti-abt {
    border-bottom: 2px solid #c7c7c7;
    padding: 8px 0;
    text-align: right;
    margin-bottom: 15px;
}

    .ti-abt h3 {
        font-size: 16px;
        font-weight: bold;
        display: inline-block;
        color: #000;
        position: relative;
    }

        .ti-abt h3:after {
            border: 1px solid #d1ac74;
            position: absolute;
            top: 28px;
            position: absolute;
            content: "";
            display: block;
            width: 100%;
        }

.tab-abt li:nth-child(odd) .mg-abt-bx {
    left: auto;
    right: 0;
}

.tab-abt li:nth-child(odd) .col-md-7 {
    padding-right: 0;
}

@media only screen and (max-width:990px) {
    .mg-abt-bx {
        display: none;
    }

    .abt-tab-bx {
        padding: 0;
    }

    .p-abt-99 {
        padding: 20px 0;
    }

    .ti-22 {
        display: none;
    }

    .cnt-abt .is__responsive .tabs__nav_link:before {
        display: none !important;
    }

    .cnt-abt .tabs.style__horizontal .tabs__nav .tabs__nav_link:nth-child(2):before, .cnt-abt .tabs.style__horizontal li:nth-child(3) .tabs__nav_link:before {
        display: none !important;
    }

    .cnt-abt .tabs__content > a {
        position: relative;
        text-align: right;
        padding-right: 36px !important;
    }

    .abt-tab-bx {
        min-height: 150px;
    }

    .tab-abt li:nth-child(odd) .col-md-7 {
        padding-right: 15px;
    }
}
