﻿
.t-news-row:hover, .t-news-row:active {
    text-decoration: none;
}

.t-news-row.t-news-blue {
    background: var(--main-blue);
}

.t-page-school .t-news-row.t-news-blue {
    background: #89d701;
}

.t-news-row .t-date {
    display: block;
    width: 100%;
    /* background: var(--main-green); */
    padding: 10px;
    color: white;
    direction: ltr;
}

.t-news-row .img-div {
    background-color: #f9f9f9;
    overflow: hidden;
}

.t-news-row img {
    /* width: 100%; */
    transition: all ease .5s;
    height: 200px;
    max-width: 100%;
}

.t-news-row .t-title {
    font-size: 15px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #545454;
    line-height: 24px;
    background: white;
    overflow: hidden;
    padding: 0px 15px;
}

.t-news-row .t-summery {
    /* background: var(--main-green); */
    display: block;
    font-size: 0;
    color: white;
}

.t-news-row .t-visit {
    width: 50%;
    display: inline-block;
    font-size: 13px;
    border-left: 1px solid white;
}

.t-news-row .t-like {
    display: inline-block;
    width: 50%;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}

.t-news-row:hover img {
    transform: scale(1.2);
}

.t-birthday {
    background-image: url(../img/design/baby/2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
    padding: 80px 0;
}

.t-birthday-title {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    color: white;
    background: url(../img/design/baby/1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

    .t-birthday-title h3 {
        max-width: 200px;
        margin-right: 50px;
        color: #ffffff;
        text-shadow: 0px 2px black;
    }

.t-birthday-item {
    width: 200px;
    height: 180px;
    border: 2px solid #e9b369;
    border-radius: 4px;
    display: inline-block;
    transition: all ease .4s;
    cursor: pointer;
}

    .t-birthday-item img {
        width: 100%;
        height: 100%;
        transition: all ease .4s;
    }

    .t-birthday-item:hover {
        transform: scale(1.5) rotate(-3deg);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    }

.t-gallery {
    padding: 80px 0;
    background-image: url(../img/design/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* display: none !important; */
}

.t-gallery-list {
    text-align: center;
    align-items: center;
    padding: 0;
    /* background: #426fa0; */
    /* margin-bottom: 20px; */
    /* padding: 20px 0; */
    /* background: #f0f0f0; */
    /* box-shadow: 0px 0 0 10px rgb(108 108 108 / 10%); */
    margin-bottom: 30px;
    border-radius: 5px;
    /* max-height: 220px; */
    /* overflow-y: scroll; */
}

    .t-gallery-list > div {
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        flex-direction: row;
        /* background: #585858; */
        /* padding: 15px 0; */
    }

.t-gallery-item {
    /* min-width: 100px; */
    /* max-width: 220px; */
    /* min-height: 80px; */
    /* max-height: 170px; */
    width: 180px !important;
    height: 120px !important;
    /* margin: 1px; */
    /* display: inline-block; */
    font-variant: discretionary-ligatures;
    /* margin-bottom: 1px; */
    /* border-radius: 0; */
    /* overflow: hidden; */
    /* overflow: hidden; */
    /* position: relative; */
    /* font-size: 12px; */
    /* position: relative; */
    /* vertical-align: text-top; */
    background: #ffffff73;
    /* border: 2px solid #ffffff; */
    margin: 3px;
    border-radius: 3px;
    overflow: hidden;
    /* border: 3px solid gray; */
    box-shadow: 0 0 0 3px #505050a3;
    margin: 4px;
}

.t-gallery-item-img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.t-gallery-item figure {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.t-gallery-item img {
    /* width: 100%; */
    /* height: 100%; */
    /* max-height: 200px; */
    border-radius: 0;
    filter: brightness(.9);
    display: none;
}

/* hover effect */

/* Zoom In #1 */
.hover01 figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover01 figure:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* Zoom In #2 */
.hover02 figure img {
    /* width: 300px; */
    /* height: auto; */
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    /* transform: scale(1.4); */
}

.hover02 figure:hover img {
    /* width: 120%; */
    filter: brightness(1.2);
}

/* Zoom Out #1 */
.hover03 figure img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover03 figure:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* Zoom Out #2 */
.hover04 figure img {
    width: 400px;
    height: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover04 figure:hover img {
    width: 300px;
}

/* Slide */
.hover05 figure img {
    margin-left: 30px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover05 figure:hover img {
    margin-left: 0;
}

/* Rotate */
.hover06 figure img {
    -webkit-transform: rotate(15deg) scale(1.4);
    transform: rotate(15deg) scale(1.4);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover06 figure:hover img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

/* Blur */
.hover07 figure img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover07 figure:hover img {
    -webkit-filter: blur(0);
    filter: blur(0);
}

/* Gray Scale */
.hover08 figure img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover08 figure:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/* Sepia */
.hover09 figure img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover09 figure:hover img {
    -webkit-filter: sepia(0);
    filter: sepia(0);
}

/* Blur + Gray Scale */
.hover10 figure img {
    -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover10 figure:hover img {
    -webkit-filter: grayscale(100%) blur(3px);
    filter: grayscale(100%) blur(3px);
}

/* Opacity #1 */
.hover11 figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover11 figure:hover img {
    opacity: .5;
}

/* Opacity #2 */
.hover12 figure {
    background: #1abc9c;
}

    .hover12 figure img {
        opacity: 1;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .hover12 figure:hover img {
        opacity: .5;
    }

/* Flashing */
.hover13 figure:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

/* Shine */
.hover14 figure {
    position: relative;
}

    .hover14 figure::before {
        position: absolute;
        top: 0;
        left: -75%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    .hover14 figure:hover::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Circle */
.hover15 figure {
    position: relative;
}

    .hover15 figure::before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        display: block;
        content: '';
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, .2);
        border-radius: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    .hover15 figure:hover::before {
        -webkit-animation: circle .75s;
        animation: circle .75s;
    }

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* end hover effect !*/

.t-singlepage-body {
    direction: rtl;
    text-align: center;
    min-height: calc(100vh - 380px);
    overflow: visible;
    padding: auto;
    position: relative;
    /* padding: 20px 0; */
}

.t-post-page {
    margin-bottom: 100px;
    /* width: 800px; */
    /* max-width: 100%; */
    display: block;
    /* max-width: 800px; */
    /* overflow: hidden; */
    /* border: 2px solid whitesmoke; */
}

.t-post-page-side {
}

.t-post-page-center {
}

.t-post-page-summary {
    background: rgb(251, 250, 204);
    padding: 30px 10px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
    max-width: 100%;
    width: 1200px;
    margin: 10px auto;
    /* background: url(../img/design/bgr9.jpg); */
    background-position: bottom;
    background-size: contain;
    line-height: 28px;
}

.t-post-page-detail { /* background: rgb(251,250,204); */
    padding: 15px; /* margin: 20px 0; */
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    color: #21a4dc; /* border-top: 1px solid #e6e6c4; */
    max-width: 100%;
    width: 1200px;
    margin: 0px auto;
}

    .t-post-page-detail span {
        font-size: 14px;
    }

        .t-post-page-detail span.t-post-page-detail-value {
            font-size: 14px;
            font-family: 'iranNum';
        }

.t-post-page-tags { /* background: rgb(249 249 249); */
    padding: 15px;
    margin: 20px auto;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    color: white;
    margin-bottom: 0; /* margin-bottom: 1px; */
    font-size: 0;
    border: 2px solid whitesmoke;
    width: 1200px;
    max-width: 100%;
}

    .t-post-page-tags a {
        color: white;
        margin-left: 20px;
        background: #21a4dc;
        padding: 3px 10px;
        border-radius: 100px;
        display: inline-block;
        font-size: 12px;
        margin: 4px;
    }

        .t-post-page-tags a:hover {
            background-color: #1d9fdb;
            text-decoration: none;
        }


.t-page-school .t-singlepage-body {
    margin-top: 90px;
}

.t-blog-page {
    padding: 15px 0;
}

.t-blog-page-side {
    width: 300px; /* background: red; */ /* position: absolute; */
    float: right; /* background: red; */
    margin: 0;
    padding: 0; /* background: red; */
    padding: 0px 15px;
}

.t-blog-page-category-url {
    display: block;
    text-align: right;
    font-size: 13px;
    line-height: 30px;
    background: #f7f7f7;
    color: #4a4a4a;
    padding: 3px 8px;
    margin-bottom: 1px;
    border-radius: 4px;
    width: 100%;
    font-family: 'Aramco';
}

    .t-blog-page-category-url:hover {
        color: red;
        text-decoration: none;
        background: none;
    }

.t-blog-box { /* padding: 10px; */ /* margin-bottom: 30px; */ /* margin: 0 0 0 10px; */
    margin-bottom: 15px;
    background: #fbfbfb; /* border: 1px solid #dedede; */
    border-radius: 10px;
    overflow: hidden;
}

.t-blog-box-header {
    text-align: center;
    font-family: 'Aramco';
    padding: 10px;
    border-bottom: 2px solid white;
    background: #ebebeb; /* background: url(../img/design/bgr9.jpg); */
    background-position: center bottom;
    background-size:; /* border: 2px solid #b3d179; */
    color: #166fd5; /* font-weight: bold; */ /* text-shadow: 0px 1px #838383; */
}

.t-blog-box-content {
    padding: 10px 10px 15px;
    text-align: justify; /* text-align: right; */
    font-size: 0; /* background: #fffddb; */ /* background-image: url(../img/design/bgr9.jpg); */ /* background-position: center; */ /* background-size: 100% 100%; */
    background: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.t-blog-page-tag-url {
    display: inline-block;
    font-size: 12px;
    padding: 5px 8px;
    background: #f7f7f7;
    margin: 1px;
    color: #626262;
    border-radius: 0px;
    font-weight: normal;
    flex-grow: 1;
    text-align: center;
    font-family: 'Aramco';
}

    .t-blog-page-tag-url:hover {
        text-decoration: none;
        color: #749d12;
        background: white;
    }

.t-blog-page-center {
    text-align: center;
    padding-right: 290px;
}

.t-blog-post-row .thumb {
    width: 220px;
    height: 150px;
    display: block;
    float: right;
    margin-left: 20px; /* background: #6baaf3; */
    text-align: center;
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 0;
    overflow: hidden;
}


    .t-blog-post-row .thumb img {
        width: 100%;
        height: 100%;
        transition: all ease .4s;
    }

.t-blog-post-row h6 { /* overflow: auto; */
    display: block;
    font-size: 12px;
    padding: 0;
    margin: 0;
    line-height: 30px;
}

.t-blog-post-row h3 {
    color: #1aa0dd;
    font-size: 22px;
    text-shadow: 0px 2px white;
    border-bottom: 1px dashed #ffffff;
    padding-bottom: 15px;
    border-top: 1px dashed #ffffff;
    padding-top: 15px;
    background: #ffffff;
    margin: 0;
}

    .t-blog-post-row h3:hover {
        color: orange;
    }

.t-blog-post-row a {
    text-decoration: none;
}

.t-blog-post-row p {
    padding: 5px 15px;
    color: #636363;
    font-size: 14px;
    overflow: hidden;
    min-height: 70px;
    display: block;
    line-height: 24px;
}

.t-blog-post-row {
}

.t-blog-post-row { /* clear: both; */
    min-height: 190px;
    margin-bottom: 20px; /* box-shadow: 0px 3px 15px rgb(84 84 84 / 10%); */
    text-align: right;
    overflow: auto; /* padding: 5px; */ /* background: #f7f7f7; */
    position: relative; /* border: 1px solid #ececec; */
    margin: 0 15px;
    margin-bottom: 15px;
    z-index: 0; /* width: 800px; */ /* max-width: 100%; */ /* margin: 0px auto; */ /* display: inline-block; */
    transition: all ease .4s; /* background: url(../img/design/bgr4.jpg); */
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100%;
    box-shadow: 0px 3px 15px -5px rgb(0 0 0 / 15%); /* border: 2px solid transparent; */
    padding-right: 250px;
    padding-top: 10px;
}

.t-blog-post-row-footer {
    height: 45px;
    /* background: #535353; */
    position: relative;
    /* margin-top: 15px; */
    /* position: absolute; */
    left: 0;
    bottom: 0;
    /* width: 100%; */
    z-index: -1;
    right: 0;
    padding-right: 250px;
    padding-right: 10px;
    line-height: 40px;
    font-size: 14px;
    /* font-weight: bold; */
    padding-top: 3px;
    color: #1679d4;
    /* border-top: 2px solid #c8ed85; */
    letter-spacing: 1px;
    /* text-shadow: 0px 1px black; */
}

    .t-blog-post-row-footer .btn-more {
        transition: all ease-in-out .4s;
        position: absolute;
        left: 5px;
        bottom: 5px;
        min-width: 150px;
        padding: 10px;
        background: #f1f1f1;
        color: #363636;
        border-radius: 0;
        font-family: 'Aramco';
        font-size: 12px; /* border: 1px solid white; */ /* border-radius: 8px; */
        margin: 2px;
        text-shadow: none; /* border-radius: 100px; */
    }

        .t-blog-post-row-footer .btn-more:hover {
            background: yellow;
        }

.t-blog-post-list {
    /* background: blue; */
}


.t-blog-post-row:hover {
    /* transform: scale(1.01); */
    box-shadow: 0px 0px 30px -1px rgb(133 133 133 / 45%);
    /* background-position: bottom; */
    color: red;
    /* border: 2px solid #fecc00; */
}

    .t-blog-post-row:hover img {
        transform: scale(1.1);
    }

.mg-gallery-list {
    text-align: center;
    /* padding: 10px; */

    background:;
    direction: rtl;
}


.mg-gallery-item {
    width: 200px;
    height: 150px;
    margin: 1px;
    display: inline-block;
    font-variant: discretionary-ligatures;
    margin-bottom: 1px;
    border-radius: 0;
    /* overflow: hidden; */
    overflow: hidden;
    position: relative;
    font-size: 12px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .mg-gallery-body {
        padding: 0;
    }

    .mg-gallery-item {
        max-width: 48% !important;
        height: auto;
        vertical-align: middle;
    }

    .m-school-link {
        display: block;
        width: 49%;
        margin: .5px .5%;
        float: right;
        background: #18181857 !important;
        padding: 8px 0;
    }
}

.mg-gallery-item:hover .ar-title {
    opacity: 1;
    transform: scale(1.1);
}

.mg-gallery-item .ar-img, .mg-gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    filter: brightness(.9);
}

.mg-gallery-item .ar-title {
    display: block;
    /* width: 100%; */
    height: auto;
    line-height: 25px;
    padding: 5px;
    font-weight: normal;
    /* position: absolute; */
    /* margin-top: -30px; */
    /* background: white; */
    /* margin-left: 10px; */
    /* margin-right: 10px; */
    /* background: var(--main-black); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 8px;
    padding-top: 30px;
    opacity: 0;
    position: absolute;
    transition: all ease .3s;
    left: 0;
    right: 0;
    bottom: 0;
    text-shadow: 0px 3px 4px white;
    padding: 15px;
}

.mg-gallery-headers {
    padding: 0;
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
    /* border-bottom: 2px solid #e5e5e5; */
    direction: rtl;
}

.mg-gallery-header {
    line-height: 40px;
    padding: 10px 0;
    margin: 0px 15px;
    color: #cecece;
    cursor: pointer;
    margin-bottom: -2px;
    display: inline-block;
    border-bottom: 2px solid whitesmoke;
    padding: 10px 20px;
    margin: 0;
}

    .mg-gallery-header:hover {
        color: orange;
    }

    .mg-gallery-header.selected {
        border-bottom: 2px solid var(--main-red);
        color: var(--main-red);
        /* background: whitesmoke; */
    }

.t-singlepage-body-school { /* padding-top: 100px; */
}

.pp-gallery-page {
    padding: 15px 0;
    text-align: center;
}

.pp-gallery-item {
    display: inline-block;
    vertical-align: middle;
    z-index: 0;
    transition: all ease .4s;
    width: 310px;
    margin: 5px; /* background: #0168bc; */
    border-radius: 15px;
    padding: 5px;
}

    .pp-gallery-item figure {
        width: 300px;
        height: 200px;
        overflow: hidden;
        background: #fafcff;
        border-radius: 15px;
    }

    .pp-gallery-item img {
        width: 100%;
        height: auto;
        min-height: 100%;
        transition: all ease .4s;
        opacity: .8;
    }


    .pp-gallery-item:hover {
        box-shadow: 0 0 30px rgb(0 0 0 / 15%);
        z-index: 1;
        text-decoration: none;
    }

        .pp-gallery-item:hover img {
            transform: scale(1.1) rotate(-5deg);
            opacity: 1;
        }


    .pp-gallery-item .pp-title {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: pre-wrap;
        max-width: 100%;
        line-height: 20px;
        color: #555555;
        font-size: 12px;
        font-weight: bold;
        padding: 0 15px;
    }


.header-wrapper {
    z-index: 1 !important;
}

.body {
    z-index: 0 !important;
}


.t-singlepage-header {
    padding: 15px;
    background: #ffffff;
    font-size: 22px;
    color: #9d3185;
    border-top: 1px solid #dedede;
    font-family: 'Aramco';
    position: relative; /* margin-top: 10px; */ /* margin-bottom: 20px; */
    display: block;
    overflow: visible;
    width: 100% !important;
    max-width: 100% !important;
    border-bottom: 1px solid #dedede;
}

.t-page-teach .t-singlepage-header {
    height: 80px;
    background-color: transparent;
    background-image: url(../img/back-top/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 5px 5px 1px #5d7995;
    font-weight: bold;
    border: none;
    direction: rtl;
    /* display: none; */
    padding: 0;
}


.t-page-school .t-singlepage-header {
    background: #fbffb9;
    border: none;
    padding: 30px;
}

.t-page-school-pink .t-singlepage-header {
    background: #f2fde1;
    border: none;
    padding: 30px;
}

.t-singlepage-body-school .t-singlepage-header { /* margin: 0; */ /* background: #f4f7fd; */ /* color: #0095e8; */ /* border: none; */ /* margin-bottom: 10px; */ /* border-bottom: 2px solid #0095e8; */ /* border-top: 2px solid #0095e8; */
}

.t-singlepage-header h1 {
    font-size: 26px;
    margin: 0;
    padding: 0;
    color: #3e709d;
    font-weight: normal;
    text-shadow: 0px 1px #e5e5e5;
}

.t-singlepage-header:after {
    /* content:''; */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    margin: 0px auto;
    /* background :#b067a4; */
    transition: all ease .4s;
}

.t-singlepage-header:hover:after {
    width: 80px;
}

.t-post-container { /* max-width: 1024px; */
    margin: 0px auto; /* padding: 50px 0; */
    font-family: 'IRANSans';
    font-size: 15px;
    font-weight: normal;
    text-align: justify;
    line-height: 26px;
    padding-bottom: 50px;
}

.t-post-static {
    /* box-shadow: 0px 0px 10px #e8e8e8; */
    /* padding: 15px; */
    /* border-radius: 30px; */

    background: #f9f9f9;
}

.t-post-content {
    background: white; /* padding: 10px; */ /* box-shadow: 0px 2px 3px rgb(228 228 228); */
    margin: 0px auto; /* border-radius: 5px; */
    max-width: 100%;
    width: 1200px;
    color: #3a3a3a;
    font-size: 14px; /* padding-bottom: 50px; */ /* border-bottom: 1px solid #757575; */
}


    .t-post-content .t-post-img {
        display: block;
        max-width: 100%;
        margin: 0px auto;
        text-align: center;
        /* border: 10px solid whitesmoke; */

        margin: 15px 0;
        /* max-width: 1000px; */

        margin: 0px auto;
        /* margin-bottom: 20px; */
        /* margin-top: 5px; */
    }

        .t-post-content .t-post-img img {
            max-width: 100%;
            /* border: 5px white; */
            /* display: block; */
            border: 2px solid #f7f7f7;
            max-height: 600px;
            width: auto;
        }

    .t-post-content .t-post-text {
        padding: 10px;
        /* background: whitesmoke; */
        /* margin-bottom: 30px; */
        direction: rtl;
        text-align: justify;
        line-height: 24px;
        font-size: 15px;
        font-weight: 500;
        line-height: 30px;
    }

    .t-post-content .t-post-aparat {
        /* max-width: 600px; */
        margin: 10px auto;
        border: none;
        /* box-shadow: 0px 0 0 10px rgb(108 108 108 / 10%); */
        margin-bottom: 30px;
        border-radius: 5px;
        overflow: hidden;
        border: 2px solid #8f8f8f;
    }

body {
    direction: ltr !important;
}

iframe {
    border: none !important;
}

.img-item-row {
    padding: 0;
    z-index: 1;
}

.img-item-col {
    text-align: center;
    padding: 1px;
    z-index: 1;
}

.img-item {
    display: inline-block;
    max-width: 100%;
    z-index: 1;
}

    .img-item:hover {
        z-index: 200;
    }

        .img-item:hover img {
            transform: scale(1.05);
            z-index: 100;
        }

.img-item-container {
}

.img-item img {
    z-index: 99;
    max-width: 100%;
    transition: all ease .3s;
}
