﻿html {
    border-top: 3px solid var(--Red);
    border-bottom: 3px solid var(--Red);
}

@-webkit-keyframes loader {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes loader {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

html.pre-loader, html.pre-loader body {
    overflow: hidden;
}

html.pre-loader body > *:not(#pre-loader) {
    visibility: hidden;
}

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999999999999999999;
    background-size: cover;
    background-position: center;
}

#pre-loader .contents {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    max-width: 100%;
}

#pre-loader .contents > * {
    max-width: 100%;
}
@font-face {
    font-family: 'pusn';
    src: url(../fonts/pusn.b6674552bc9c38a20b0e22dfb7552d9f.eot);
    src: url(../fonts/pusn.b6674552bc9c38a20b0e22dfb7552d9f.eot#iefix) format('embedded-opentype'), url(../fonts/pusn.0061d80088eb93942766420792bedc0f.ttf) format('truetype'), url(../fonts/pusn.550cfcbb61f07045b369b37b5982a8ef.woff) format('woff'), url(../fonts/pusn.04328d1be256877ad0733122ab2824ac.svg#pusn) format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

#pre-loader .contents .loading-text {
    color: #fff;
    font-family: 'iran-sharp', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 16px;
    overflow: hidden;
    padding-bottom: 2px;
}

#pre-loader .contents .loading-text:before {
    content: '';
    display: block;
    float: right;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 2px;
    border-top-color: var(--Red);
    -webkit-animation : loader 1s;
            animation : loader 1s;
    -webkit-animation-iteration-count : infinite;
            animation-iteration-count : infinite;
}

/*header*/

#header {
    border-bottom: 1px solid #ececec;
    -webkit-transition: margin-bottom 0s;
    transition: margin-bottom 0s;
}

#header > * {
    height: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#header .right {
    float: right;
}

#header .left {
    float: left;
}

.search-c {
    display: block;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    padding: 0 10px;
    height: 32px;
    margin-top: 9px;
}

.search-c button {
    float: left;
    height: 32px;
    cursor: pointer;
}

.search-c button:hover {
    opacity: 0.6;
}

.search-c input {
    border: none;
    height: 32px;
    background: none;
}

.search-c input::-webkit-input-placeholder {
    color: #c2c2c2;
}

.search-c input::-moz-placeholder {
    color: #c2c2c2;
}

.search-c input:-ms-input-placeholder {
    color: #c2c2c2;
}

.search-c input::placeholder {
    color: #c2c2c2;
}

/*end header*/

/*navbar*/

#navbar {
    border-bottom: 1px solid #ececec;
    background-color: #fff;
    z-index: 20;
}

#nav-links-icon {
    display: none;
}

#nav-collapse {
    display: none;
}

#navbar > * {
    height: 60px;
}

#navbar .nav-links, #navbar .nav-links li {
    float: right;
}

#navbar .nav-links li a {
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    color: #949494;
    position: relative;
    font-family: 'pusn';
}

#navbar .nav-links li a:hover {
    color: var(--Red);
}

#navbar .nav-links li a:before, #navbar .nav-links li a:after {
    content: '';
    display: block;
    width: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background-color: var(--Red);
}

#navbar .nav-links li a:before {
    top: 100%;
    height: 1px;
}

#navbar .nav-links li a:hover:before {
    width: calc(100% - 30px);
}

#navbar .nav-links li a:after {
    height: 0;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 0;
    background-color: #949494;
}

#navbar li.sub-menu-2-parent > a {
    cursor: default;
}

#navbar .nav-links li:not(.sub-menu-parent):not(.sub-menu-2-parent) a:hover:after {
    top: 100%;
    width: 7px;
    background-color: var(--Red);
    height: 7px;
}

/*  submenu*/

#navbar .nav-links > li.sub-menu-parent {
    position: relative;
}

#navbar .nav-links > li.sub-menu-parent:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #949494;
    position: absolute;
    left: 0;
    right: 0;
    top: 46px;
    margin: auto;
}

#navbar .nav-links > li.sub-menu-parent:hover > a {
    color: var(--Red);
}

#navbar .nav-links > li.sub-menu-parent:hover:before {
    border-top: 5px solid var(--Red);
}

#navbar .nav-links > li.sub-menu-parent .sub-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 150%;
    right: 0;
    background-color: #fff;
    z-index: 1;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border: 1px solid #ececec;
    border-top: 1px solid var(--Red);
}

/*this is ...*/

#navbar .nav-links > li.sub-menu-parent .sub-menu li {
    border-bottom: 1px solid #ececec;
    display: block;
    width: 100%;
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li a {
    padding: 12px 15px;
    height: auto;
    justify-content: center;
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li:last-child {
    border-bottom: none;
}

#navbar .nav-links > li.sub-menu-parent .sub-menu a {
    white-space: nowrap;
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li.sub-menu-2-parent {
    position: relative;
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li.sub-menu-2-parent:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid #949494;
    border-bottom: 5px solid transparent;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li.sub-menu-2-parent:hover > a {
    color: var(--Red);
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li.sub-menu-2-parent:hover:before {
    border-right: 5px solid var(--Red);
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li.sub-menu-2-parent:hover {
    border-bottom-color: var(--Red);
}

#navbar .nav-links > li.sub-menu-parent .sub-menu li.sub-menu-2-parent .sub-menu-2 {
    position: absolute;
    top: -1px;
    right: 120%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    z-index: 1;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border: 1px solid #ececec;
    border-right: 1px solid var(--Red);
}

.nav-social-nets {
    float: left;
    margin-top: 20px;
}

.nav-social-nets li {
    float: left;
    margin-left: 15px;
}

.nav-social-nets li a {
    display: block;
    width: 21px;
    height: 21px;
    background-image: url("../images/social-nets-icon.png");
}

.nav-social-nets li a:hover {
    opacity: 0.6;
}

.nav-social-nets li.telegram a {
    background-position: -36px 0;
}

.nav-social-nets li.gp a {
    background-position: -75px 0;
}

.nav-social-nets li.insta a {
    background-position: -111px 0;
}

.nav-social-nets li.twitter a {
    background-position: -149px 0;
}

html.navbar-fixed #header {
    margin-bottom: 60px;
}

html.navbar-fixed #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, .12), 0 7px 10px -5px rgba(0, 0, 0, .15);
}

/*end navbar */

/*Scroll Button*/

#scroll-button {
    position: fixed;
    bottom: -100px;
    opacity: 0;
    cursor: pointer;
    right: 30px;
    background-color: var(--Red);
    border-radius: 50%;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .14);
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

html.scroll-button-active #scroll-button {
    bottom: 30px;
    opacity: 1;
}

#scroll-button .pointer {
    display: block;
    font-size: 24px;
    color: #fff;
}

#scroll-button:hover {
    opacity: 0.8 !important;
}

/*End Scroll Button*/

/*Top slider*/

.left-side {
    float: left;
    width: 300px;
    padding-right: 20px;
}

.right-side {
    float: right;
    width: calc(100% - 300px);
}

.panel {
    display: block;
    padding: 20px;
    border: 1px solid #e6e6e6;
    margin-top: 20px;
}

.panel .panel-title {
    font-family: 'pusn';
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    white-space: nowrap;
    position: relative;
    font-size: 16px;
}

.panel .panel-title:after {
    width: 100%;
    content: '';
    display: inline-block;
    height: 5px;
    margin-top: 6px;
    margin-right: 6px;
}

.panel .panel-title:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -6px;
    width: 3px;
    background-color: var(--Red);
}

.panel .panel-body {
    margin-top: 20px;
    line-height: 20px;
    text-align: justify;
    font-size: 12px;
    font-family: 'ISN';
    position: relative;
    color: #8a8a8a;
}

.panel .panel-body .panel-more {
    position: absolute;
    display: block;
    left: -15px;
    bottom: -16px;
    padding: 15px;
}

.panel .panel-body .panel-more:before {
    content: url("../images/arrow-left-icon.png");
    background-color: #fff;
}

.panel .panel-body .panel-more:hover {
    opacity: 0.6;
}

.panel .panel-body .panel-items li {
    margin-top: 12.5px;
    color: #d1d1d1;
    font-family: 'ISN';
    font-size: 12px;
}

.panel .panel-body .panel-items li:first-child {
    margin-top: 0;
}

.panel.panel-dark {
    background-color: #363636;
}

.panel.panel-dark .panel-title {
    color: #fff;
}

.panel.panel-dark .panel-title:after {
    background-image: url(../images/rotate-line-Red.png);
}

.panel.panel-dark .panel-body .panel-items li {
    color: #d1d1d1;
}

.panel.panel-light {
    background-color: #fff;
}

.panel.panel-light .panel-title {
    color: #8d8d8d;
}

.panel.panel-light .panel-title:after {
    background-image: url(../images/rotate-line-gray.png);
}

#top-slider-slider {
    margin-top: 20px;
    height: 466px;
    border-top: 3px solid var(--Red);
    background-color: #fff;
}

#top-slider-slider > .carousel-inner, #top-slider-slider > .carousel-inner > .carousel-item {
    height: 100%;
}

#top-slider-slider .carousel-item .slider-image {
    height: 100%;
    width: 100%;
}

#top-slider-slider .carousel-indicators {
    top: 15px;
    left: 15px;
    right: auto;
    bottom: auto;
    margin: 0;
}

.carousel-indicators li {
    width: 9px;
    height: 9px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators li.active {
    background-color: var(--Red);
    cursor: default;
}

/*#top-slider-slider .carousel-item {*/
/*position: relative;*/
/*}*/

#top-slider-slider .carousel-item .slider-texts {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

#top-slider-slider .carousel-item .slider-texts .title {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    padding: 10px;
    border-radius: 50px;
    background-color: var(--Red);
    max-width: calc(100% - 100px);
    color: #fff;
    font-family: 'pusn';
    margin-right: 20px;
    float: right;
}

#top-slider-slider .carousel-item .slider-texts .more {
    position: absolute;
    top: 0;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    border-radius: 50px;
}

#top-slider-slider .carousel-item .slider-texts .descriptions {
    padding: 20px;
    padding-top: 0;
    color: #fff;
    text-align: justify;
    font-family: 'ISN';
    clear: both;
    line-height: 24px;
    font-size: 12px;
}

/*End Top slider*/

#articles1-c {
    margin-top: 20px;
    padding-top: 8px;
    padding-bottom: 20px;
    border: 1px solid #e5e5e5;
}

#articles1-c .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 10px 25px;
    background-color: var(--Red);
    color: #fff;
    position: relative;
    font-family: 'pusn';
    white-space: nowrap;
}

#articles1-c .title:after {
    content: '';
    background-image: url("../images/rotate-line-black.png");
    width: 100%;
    display: block;
    height: 5px;
    margin-top: 6px;
    margin-right: 6px;
}

#articles1-c .articles {
    margin-top: 10px;
    padding: 0 15px;
}

#articles1-c .articles .article-item .article-img {
    position: relative;
    border-left: 3px solid var(--Red);
}

#articles1-c .articles .article-item .article-img img {
    width: 100%;
    height: 190px;
    margin-bottom: -4px;
}

#articles1-c .articles .article-item .article-img .time {
    position: absolute;
    bottom: 0;
    right: -1px;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    background-color: #363636;
    color: #fff;
    font-size: 12.5px;
    font-family: 'ISN';
    word-spacing: -3px;
}

#articles1-c .articles .article-item .article-img .time:before {
    content: url("../images/clock-icon.png");
    margin: -8px;
    margin-left: 8px;
    padding: 8px;
    background-color: var(--Red);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    float: right;
}

#articles1-c .articles .article-item .article-title {
    margin-top: 40px;
    font-family: 'pusn';
    color: #272727;
    font-size: 15px;
    padding: 0 10px;
}

#articles1-c .articles .article-item .article-descriptions {
    margin-top: 8px;
    line-height: 24px;
    font-size: 12px;
    text-align: justify;
    color: #5c5c5c;
    font-family: 'ISN' !important;
    padding: 0 10px;
}

#articles1-c .articles .article-item .article-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 10px;
    margin-top: 10px;
}

#articles1-c .articles .article-item .article-link:before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-image: url("../images/border.png");
    margin-left: 4px;
    margin-top: 4px;
}

#articles1-c .articles .article-item .article-link:hover {
    opacity: 0.6;
}

#mini-slider1 {
    margin-top: 20px;
    border: 1px solid #e5e5e5;
}

#mini-slider1 > .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #656565;
    font-family: 'pusn';
    padding: 15px 12px;
    white-space: nowrap;
}

#mini-slider1 .title:after {
    content: '';
    width: 100%;
    height: 5px;
    margin-top: 6px;
    margin-right: 6px;
    background-image: url("../images/rotate-line-gray.png");
}

#mini-slider1-slider {
    height: 150px;
    background-color: #fff;
}

#mini-slider1-slider > .carousel-inner, #mini-slider1-slider > .carousel-inner > .carousel-item {
    height: 100%;
}

#mini-slider1-slider .carousel-item .slider-image {
    height: 100%;
    width: 100%;
}

#mini-slider1-slider .carousel-indicators {
    top: 15px;
    left: 15px;
    right: auto;
    bottom: auto;
    margin: 0;
}

/*#mini-slider1-slider .carousel-item {*/
/*position: relative;*/
/*}*/

#mini-slider1-slider .slider-texts {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

#mini-slider1-slider .slider-texts .title {
    display: block;
    color: #fff;
    padding: 8px 10px;
    font-family: 'pusn';
    font-size: 16px;
}

#mini-slider1-slider .slider-texts .more {
    position: absolute;
    left: 10px;
    z-index: 1;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner {
    margin-top: 20px;
    display: block;
}

.banner img {
    width: 100%;
}

.mosahebe-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    white-space: nowrap;
    color: #616161;
    font-family: 'pusn';
    position: relative;
    font-size: 18px;
    padding-right: 20px;
}

.mosahebe-title:after {
    content: '';
    height: 8px;
    width: 100%;
    background-image: url(../images/bg2.png);
    margin-top: 4px;
    margin-right: 6px;
}

.mosahebe-title .mosahebe-title-link {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 15px;
    padding: 0 5px;
    background-color: #fff;
}

.articles2-c .articles .article-item {
    margin-top: 25px;
}

.articles2-c .articles .article-item .article-img {
    width: 500px;
    float: right;
}

.articles2-c .articles .article-item .article-img img {
    width: 100%;
    border-right: 9px solid #373737;
}

.articles2-c .articles .article-item .article-left {
    width: calc(100% - 500px);
    float: left;
    padding: 40px 0;
    position: relative;
    height: 275px;
    padding-right: 25px;
}

.articles2-c .articles .article-item .article-left:before {
    position: absolute;
    right: 0;
    top: 40px;
    content: '';
    bottom: 40px;
    width: 3px;
    background-color: var(--Red);
}

.articles2-c .articles .article-item .article-left .article-more {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 27px;
    right: 0;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    margin: auto;
}

.articles2-c .articles .article-item .article-left .article-more:after {
    content: url("../images/arrow-left2-icon.png");
    /*top: 0;*/
    /*bottom: 0;*/
    /*height: 27px;*/
    /*right: 0;*/
    /*transform: translateX(50%);*/
    /*margin: auto;*/
}

.articles2-c .articles .article-item .article-level {
    display: block;
    padding-bottom: 5px;
    border-bottom: 1px solid #e7e7e7;
}

.articles2-c .articles .article-item .article-level .article-time {
    float: right;
    color: #9f9f9f;
    font-size: 12px;
}

.article-time:before {
    display: block;
    content: url("../images/clock-Red-icon.png");
    float: right;
    margin-left: 3px;
    position: relative;
    bottom: 1px;
}

.articles2-c .articles .article-item .article-level .get-star-bar {
    float: left;
}

.get-star-bar {
    display: block;
}

.get-star-bar li {
    float: left;
    margin-right: 3px;
}

.get-star-bar li:last-child {
    margin-right: 0;
}

.get-star-bar li:before {
    content: '';
    display: block;
}

.get-star-bar li.item-red:before {
    content: url("../images/star-Red.png");
}

.get-star-bar li.item-default:before {
    content: url("../images/star-normal.png");
}

.articles2-c .articles .article-item .article-title {
    color: #262626;
    font-family: 'pusn';
    display: block;
    font-size: 17px;
    line-height: 20px;
    margin-top: 10px;
}

.articles2-c .articles .article-item .article-descriptions {
    color: #585858;
    line-height: 23px;
    font-size: 12px;
    font-family: 'ISN';
    height: 115px;
    overflow: hidden;
    text-align: justify;
    margin-top: 10px;
}

#matalebe-por-bazdid {
    margin-top: 20px;
    border: 1px solid #e5e5e5;
    padding: 15px;
}

#matalebe-por-bazdid .title {
    color: #656565;
    border-right: 3px solid var(--Red);
    padding-right: 5px;
}

#matalebe-por-bazdid-slider .carousel-indicators {
    margin: 0;
    top: 4px;
    bottom: auto;
    right: auto;
}

#matalebe-por-bazdid-slider .carousel-indicators li {
    background-color: #5c5c5c;
}

#matalebe-por-bazdid-slider .carousel-indicators li.active {
    background-color: var(--Red);
}

#matalebe-por-bazdid-slider .carousel-inner {
    margin-top: 20px;
}

#articles3-c .article-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d8d8d8;
}

#articles3-c .articles .article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

#articles3-c .article-item .article-img {
    width: 80px;
    height: 80px;
    border-right: 3px solid var(--Red);
    float: right;
    margin-left: 10px;
}

#articles3-c .article-item .get-star-bar {
    float: none;
    overflow: hidden;
    padding-top: 9px;
}

#articles3-c .article-item .get-star-bar li {
    float: right;
}

#articles3-c .article-item .article-time {
    overflow: hidden;
    color: #9f9f9f;
    font-size: 11px;
    margin-top: 9px;
}

#articles3-c .article-item .article-persons {
    color: #9f9f9f;
    font-size: 11px;
    margin-top: 9px;
}

#articles3-c .article-item .article-persons:before {
    content: url("../images/comment-icon.png");
    float: right;
    margin-left: 2px;
}

#articles3-c .article-item .article-title {
    clear: both;
    display: block;
    margin-top: 20px;
    color: #222222;
    font-family: 'pusn';
    line-height: 25px;
    font-size: 14px;
}

#articles3-c .article-item .article-title:hover {
    color: var(--Red);
}

#left-tab {
    margin-top: 20px;
}

#left-tab-tab li a {
    border-radius: 0;
    white-space: nowrap;
    border: 1px solid #e4e4e4;
    border-left: none;
    background-color: #f4f4f4;
    color: #bdbdbd;
    padding: 15px 0;
}

#left-tab-tab li:last-child a {
    border: 1px solid #e4e4e4;
}

#left-tab-tab li a.active {
    background-color: #fff;
    border-top-color: var(--Red);
    color: #676767;
}

#mini-slider2-slider {
    height: 150px;
    background-color: #fff;
}

#mini-slider2-slider > .carousel-inner, #mini-slider2-slider > .carousel-inner > .carousel-item {
    height: 100%;
}

#mini-slider2-slider .carousel-item .slider-image {
    height: 100%;
    width: 100%;
}

#mini-slider2-slider .carousel-indicators {
    top: 15px;
    left: 15px;
    right: auto;
    bottom: auto;
    margin: 0;
}

/*#mini-slider2-slider .carousel-item {*/
/*position: relative;*/
/*}*/

#mini-slider2-slider .slider-texts {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

#mini-slider2-slider .slider-texts .title {
    display: block;
    color: #fff;
    padding: 8px 10px;
    font-family: 'pusn';
    font-size: 16px;
}

#mini-slider2-slider .slider-texts .more {
    position: absolute;
    left: 10px;
    z-index: 1;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#mini-slider3-slider {
    height: 150px;
    background-color: #fff;
}

#mini-slider3-slider > .carousel-inner, #mini-slider3-slider > .carousel-inner > .carousel-item {
    height: 100%;
}

#mini-slider3-slider .carousel-item .slider-image {
    height: 100%;
    width: 100%;
}

#mini-slider3-slider .carousel-indicators {
    top: 15px;
    left: 15px;
    right: auto;
    bottom: auto;
    margin: 0;
}

/*#mini-slider3-slider .carousel-item {*/
/*position: relative;*/
/*}*/

#mini-slider3-slider .slider-texts {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

#mini-slider3-slider .slider-texts .title {
    display: block;
    color: #fff;
    padding: 8px 10px;
    font-family: 'pusn';
    font-size: 16px;
}

#mini-slider3-slider .slider-texts .more {
    position: absolute;
    left: 10px;
    z-index: 1;
    top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#links {
    margin-top: 20px;
}

#links .title {
    display: block;
    border-right: 3px solid var(--Red);
    padding-right: 10px;
    color: #676767;
    font-family: 'pusn';
    margin: 19.5px 10px;
}

#links .link-item {
    margin-top: 15px;
}

#links .link-item img {
    width: 100%;
}

#khabar-name {
    height: 155px;
    border-right: 3px solid var(--Red);
    background-image: url("../images/img2.png");
    margin-top: 20px;
    position: relative;
}

#khabar-name > .contents {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 60px;
    border-right: 2px solid #828282;
    padding-right: 4px;
    width: calc(100% - 120px);
    overflow: hidden;
}

#khabar-name > .contents .input {
    float: left;
    width: 50%;
    position: relative;
    margin-top: 15px;
}

#khabar-name > .contents .texts {
    float: right;
    width: 50%;
}

#khabar-name > .contents .texts .title {
    color: var(--Red);
    font-family: 'pusn';
    font-size: 18px;
}

#khabar-name > .contents .texts .descriptions {
    margin-top: 10px;
    line-height: 20px;
    color: #fff;
    font-family: 'ISN';
    font-size: 12px;
}

#khabar-name > .contents .input input {
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    float: left;
    height: 40px;
    border-radius: 50px;
    padding-right: 20px;
    padding-left: 40px;
    width: 100%;
}

#khabar-name > .contents .input button {
    position: absolute;
    left: 4px;
    top: 4px;
    height: 32px;
    width: 32px;
}

#khabar-name > .contents .input button img {
    height: 32px;
    width: 32px;
}

#maghalat-section .article-maghalat-main {
    margin-top: 15px;
}

#maghalat-section .article-maghalat-main .article-image {
    position: relative;
}

#maghalat-section .article-maghalat-main .article-image > img {
    width: 100%;
    border-bottom: 3px solid var(--Red);
}

#maghalat-section .article-maghalat-main .article-image a {
    display: block;
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    right: 0;
    bottom: -9px;
    margin: auto;
}

#maghalat-section .article-maghalat-main .article-image a img {
    width: 28px;
    height: 28px;
}

#maghalat-section .article-maghalat-main .article-title {
    margin-top: 15px;
    font-family: 'pusn';
    color: #242424;
}

#maghalat-section .article-maghalat-main .article-level {
    display: block;
    overflow: hidden;
    margin-top: 17px;
}

#maghalat-section .article-maghalat-main .article-level .article-time {
    color: #9e9e9e;
    float: right;
    font-size: 11px;
}

.article-comments {
    color: #9e9e9e;
    float: right;
    font-size: 11px;
    margin-right: 35px;
}

.article-comments:before {
    content: url("../images/comment-icon.png");
}

#maghalat-section .article-maghalat-main .article-descriptions {
    margin-top: 6px;
    color: #585858;
    text-align: justify;
    line-height: 24px;
    font-family: 'ISN';
    font-size: 13px;
}

#maghalat-section .article-maghalat-other li {
    margin-top: 16px;
}

#maghalat-section .article-maghalat-other li .article-image img {
    width: 100%;
    border-bottom: 3px solid var(--Red);
}

#maghalat-section .article-maghalat-other li .article-title {
    color: #232323;
    line-height: 22px;
    font-family: 'pusn';
    padding: 10px;
    display: block;
    font-size: 14px;
}

.br1 {
    display: block;
    height: 1px;
    background-color: #9e9e9e;
    margin-top: 10px;
}

#ghoonaghoon {
    width: calc(100% - 300px);
    float: right;
    display: block;
}

#ghoonaghoon-section {
    margin-top: 20px;
}

#ghoonaghoon-section .ghonaghoon-left {
    display: block;
    width: 225px;
    float: left;
}

#ghoonaghoon-section .ghonaghoon-right {
    width: calc(100% - 225px);
    float: right;
    padding-left: 20px;
}

.ghoonaghoon-article li {
    margin-top: 19px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 19px;
}

.ghoonaghoon-article li:first-child {
    margin-top: 0
}

.ghoonaghoon-article li .article-image img {
    width: 100%;
    border-bottom: 3px solid var(--Red);
}

.ghoonaghoon-article li .article-level {
    overflow: hidden;
    margin-top: 8px;
}

.ghoonaghoon-article li .article-title {
    color: #262626;
    display: block;
    font-family: 'pusn';
    line-height: 22px;
}

.ghoonaghoon-article li .article-level .article-time, .ghoonaghoon-article li .article-level .article-comments {
    color: #9e9e9e;
    font-size: 11px;
    float: right;
}

.ghoonaghoon-article li .article-level .article-time:before {
    content: url("../images/clock-gray-icon.png");
}

.ghoonaghoon-article li .article-level .article-comments:before {
    content: url("../images/comment-gray-icon.png");
}

#ghoonaghoon-section .article-main {
    background-color: #3c3c3c;
    padding-bottom: 15px;
}

#ghoonaghoon-section .article-main .article-img {
    position: relative;
}

#ghoonaghoon-section .article-main .article-img img {
    width: 100%;
    border-bottom: 3px solid var(--Red);
}

#ghoonaghoon-section .article-main .article-img .article-level {
    position: absolute;
    bottom: -9px;
    right: 20px;
    background-color: var(--Red);
    padding: 10px;
    padding-bottom: 4px;
}

#ghoonaghoon-section .article-main .article-img .article-level .article-time {
    float: right;
    color: #fff;
    font-size: 13px;
}

#ghoonaghoon-section .article-main .article-img .article-level .article-comments {
    float: right;
    color: #fff;
    font-size: 13px;
}

#ghoonaghoon-section .article-main .article-img .article-level .article-time:before {
    content: url("../images/clock-Redd.png");
    float: right;
    position: relative;
    top: 1px;
}

#ghoonaghoon-section .article-main .article-img .article-level .article-comments:before {
    content: url("../images/comment-icon2.png");
    float: right;
    margin-left: 5px;
}

#ghoonaghoon-section .article-main .article-img .get-star-bar {
    position: absolute;
    left: 30px;
    bottom: 20px;
}

#ghoonaghoon-section .article-main .article-title {
    color: #e3e3e3;
    font-family: 'pusn';
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
    padding: 0 20px;
}

#ghoonaghoon-section .article-main .article-descriptions {
    padding: 0 20px;
    color: #e3e3e3;
    font-family: 'ISN';
    font-size: 12px;
    text-align: justify;
    line-height: 25px;
    margin-top: 15px;
}

#ghoonaghoon-section .article-main .article-more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 20px;
    margin-top: 15px;
    margin-bottom: 0;
}

#ghoonaghoon-section .article-main .article-more:before {
    margin-top: 5px;
    margin-left: 4px;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-image: url("../images/border.png");
}

#videos {
    display: block;
    margin-top: 20px;
}

#videos .left {
    float: left;
    width: 400px;
    background-color: #111111;
}

#videos .right {
    width: calc(100% - 400px);
}

#videos .left .title {
    padding: 20px 15px;
    padding-left: 50px;
    background-color: var(--Red);
    color: #fff;
    position: relative;
    font-family: 'pusn';
    font-size: 18px;
}

#videos .left .title:before {
    content: url("../images/shapes-icon.png");
    position: absolute;
    height: 21px;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.video-list {
    padding: 0 10px;
    padding-bottom: 10px;
    height: 341px;
    overflow-y: scroll;
}

.video-list > a {
    overflow: hidden;
    display: block;
    padding: 15.6px 25px;
    border-bottom: 1px solid #272727;
}

.video-list > a .item-img {
    height: 78px;
    width: 118px;
    float: right;
    margin-left: 20px;
}

.video-list > a .article-title {
    color: #8a8a8a;
    line-height: 20px;
    font-size: 14px;
    font-family: 'pusn';
}

.video-list > a .article-date {
    margin-top: 7px;
    color: #8a8a8a;
}

.video-list > a:hover .article-title, .video-list > a:hover .article-date {
    color: #fff;
}

#videos .right img {
    width: 100%;
}

#footer {
    background-image: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    margin-top: 20px;
    position: relative;
}

#footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 125px;
    background-color: #fff;
}

.footer-articles {
    overflow: hidden;
}

.footer-articles li {
    width: 25%;
    float: left;
    padding-right: 40px;
}

.footer-articles li .article-image {
    position: relative;
}

.footer-articles li .article-image:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 30px;
    height: 3px;
    background-color: var(--Red);
}

.footer-articles li .article-image > img {
    width: 100%;
}

.footer-articles li .article-image > .article-type {
    position: absolute;
    right: 54px;
    bottom: -13px;
    background-color: #fff;
    display: block;
    padding: 9.5px;
    font-size: 12px;
    color: #444444;
    font-family: 'ISN';
}

.footer-articles li .article-image > .article-type:before {
    content: url("../images/border-left.png");
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(100% - 1px);
}

.footer-articles li .article-image > .article-type:after {
    content: url("../images/info-icon.png");
    position: absolute;
    height: 31px;
    width: 29px;
    background-color: var(--Red);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 100%;
}

.footer-articles li .article-title {
    display: block;
    margin-top: 30px;
    padding: 0 9px;
    color: #e3e3e3;
    letter-spacing: -0.78px;
    font-family: 'pusn';
    line-height: 22px;
}

.footer-articles li .article-descriptions {
    color: #9a9a9a;
    font-family: 'ISN';
    font-size: 12px;
    text-align: justify;
    padding: 0 10px;
    margin-top: 5px;
    line-height: 24px;
}

.footer-articles li .article-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 10px;
}

.footer-articles li .article-bottom .article-time {
    color: #fff;
    font-size: 11px;
}

.footer-articles li .article-bottom .article-time:before {
    content: url("../images/clock-gray-icon.png");
}

.footer-articles li .article-bottom .article-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 111.7px);
    overflow: hidden;
    padding-left: 10px;
    margin-right: 10px;
    height: 20px;
}

.footer-articles li .article-bottom .article-link:after {
    content: url("../images/arrow-left-icon.png");
}

.footer-articles li .article-bottom .article-link:before {
    content: '';
    width: calc(100% - 10px);
    height: 1px;
    background-image: url("../images/border.png");
    margin-top: 6px;
    margin-left: 2px;
}

#footer-article-slider .articles-title {
    position: absolute;
    top: 13px;
    right: 0;
    color: var(--Red);
    font-size: 30px;
    font-family: 'pusn';
    width: calc(25% + 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#footer-article-slider .carousel-item > .articles-title:hover {
    background-color: #fff;
    width: auto;
    z-index: 16;
}

#footer-article-slider .articles-name {
    position: absolute;
    top: 60px;
    right: 0;
    color: #6c6c6c;
    font-size: 13px;
}

#footer-article-slider .carousel-indicators {
    position: absolute;
    top: 64px;
    right: 30px;
    left: auto;
    bottom: auto;
}

#footer-article-slider .carousel-indicators li {
    background-color: #333333;
}

#footer-article-slider .carousel-indicators li.active {
    background-color: var(--Red);
}

#footer-contents {
    padding: 40px 0;
    position: relative;
    margin-top: 40px;
}

#footer-contents:before {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    background-color: #737373;
    left: 50px;
    right: 50px;
}

.footer-title {
    color: #fff;
    font-family: 'pusn';
    border-right: 3px solid var(--Red);
    display: block;
    padding-right: 10px;
}

#footer-contents input, #footer-contents textarea {
    margin-top: 10px;
    width: 100%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px;
    font-family: 'ISN';
    color: #888888;
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    border-right: 1px solid #666666;
    -webkit-transition: none;
    transition: none;
    font-size: 13px;
}

#input-name {
    margin-top: 13px !important;
}

#footer-contents textarea {
    height: 80px;
    min-height: 80px;
}

#footer-contents input {
    height: 25px;
}

#footer-contents .submit-c {
    margin-top: 10px;
    overflow: hidden;
}

#footer-contents .submit-c button {
    color: #fff;
    font-family: 'ISB';
    float: left;
    display: block;
    font-size: 13px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border-radius: 50px;
}

#footer-contents .submit-c button:hover {
    opacity: 0.8;
}

#footer-contents .submit-c button img {
    float: left;
    height: 15px;
    margin-right: 5px;
    margin-left: -5px;
}

#footer-contents .aboute-majale-description {
    line-height: 24.5px;
    font-family: 'ISN';
    color: #8a8a8a;
    text-align: justify;
    font-size: 12px;
    margin-top: 8px;
}

#footer-contents .aboute-majale-more {
    margin-top: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

#footer-contents .aboute-majale-more:after {
    content: url("../images/arrow-left-icon.png");
}

#footer-contents .aboute-majale-more:before {
    content: '';
    width: 100%;
    border-top: 1px solid #727272;
    margin-top: 6px;
    margin-left: 6px;
}

#footer-logo {
    text-align: center;
}

#footer-logo img {
    margin-top: -25px;
}

#footer-logo .nav-social-nets {
    border-top: 1px solid #3f3f3f;
    padding-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    float: none;
    margin: 0 65px;
    margin-top: 15px;
}

/*navbar*/

#footer-logo .nav-social-nets li {
    float: none;
}

#footer-logo .nav-social-nets li a {
    background-image: url("../images/social-nets-fff.png");
}

#footer-logo .nav-social-nets li.twitter a {
    background-position: -148px 1px;
}

#footer-logo .nav-social-nets li.insta a {
    background-position: -111px 1px;
}

#footer-logo .nav-social-nets li.telegram a {
    background-position: -36px 1px;
}

#footer-contents > * {
    padding: 0 40px;
}

#footer-bottom {
    display: block;
    background-color: #fff;
    border-bottom: 1px solid #ececec;
}

#footer-bottom .footer-bottom-links {
    float: right;
}

#footer-bottom .footer-bottom-links li {
    float: right;
}

#footer-bottom .footer-bottom-links li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    padding: 0 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #868686;
    font-family: 'pusn';
}

#footer-bottom .footer-bottom-links li a:hover {
    color: var(--Red);
}

#footer-bottom .footer-bottom-text {
    float: left;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 900;
    padding-left: 15px;
    color: #868686;
}

#footer-bottom .footer-bottom-text a {
    color: var(--Red);
    margin-left: 4px;
    font-weight: 900;
}

#footer-bottom .footer-bottom-text a:hover {
    opacity: 0.5;
}

.custom-nxt-prv .carousel-control-prev, .custom-nxt-prv .carousel-control-next {
    height: 33px;
    margin: auto;
    opacity: 1;
    width: 31px;
    background-color: rgba(0, 0, 0, 0.4);
}

.custom-nxt-prv .carousel-control-prev .fa, .custom-nxt-prv .carousel-control-next .fa {
    font-size: 22px;
    color: #fff;
    font-weight: 900;
}

.custom-nxt-prv .carousel-control-next {
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
}

.custom-nxt-prv .carousel-control-prev {
    border-top-left-radius: 100%;
    border-bottom-left-radius: 100%;
}

#mosahebe-slider .carousel-control-prev, #mosahebe-slider .carousel-control-next {
    opacity: 1;
    width: auto;
    height: auto;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 17;
    padding: 0 5px;
    background-color: #fff;
    top: -16px;
}

#mosahebe-slider .carousel-control-prev {
    left: 45px;
}

#mosahebe-slider .carousel-control-next {
    left: 22px;
}

#bakhshe-ghanoon-slider .carousel-indicators {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -24.78px;
    margin: 0;
}

#bakhshe-ghanoon-slider .carousel-indicators li {
    background-color: #333333;
}

#bakhshe-ghanoon-slider .carousel-indicators li.active {
    background-color: var(--Red);
}

#peyvand-ha-slider {
    display: none;
}

.title-archive {
    color: #fff;
    font-family: 'pusn';
    padding-right: 25px;
    position: absolute;
    display: block;
    left: 25px;
    background-color: var(--Red);
}

.title-archive i {
    color: inherit;
    position: relative;
    top: 1px;
}