@charset "utf-8";
/**css reset*/

html, body, div, input, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    transition: all 0.4s ease-in-out;
    font-family: var(--font_primary);
}

body {
    direction: rtl;
    font-family: var(--font_primary);
    font-size: var(--font_r);
    color: var(--light);
    background-color: var(--dark);
    transition: all 0.4s ease-in-out;
    box-sizing: border-box;
    cursor: context-menu;
}

:root {
    --blue: #4e73df;
    --blue-100: #d3e8ff;
    --blue-200: #b0d2ff;
    --blue-300: #81b2ff;
    --blue-400: #4f83ff;
    --blue-500: #2853ff;
    --blue-600: #0420ff;
    --blue-700: #001eff;
    --blue-800: #0017C9;
    --blue-900: #0b20a4;
    --blue-950: #07115f;
    --purple: #7f337d;
    --purple_100: #fdf9fe;
    --purple_300: #c830ef;
    --purple_500: #bb12e6;
    --purple_700: #9d0fc2;
    --pink: #e83e8c;
    --red: #e74c3c;
    --red--100: #ffe3e5;
    --red--200: #ffcbe8;
    --red--300: #ff67b5;
    --red--400: #ea1874;
    --red--500: #b60d50;
    --red--700: #8c0f40;
    --red--950: #500116;
    --orange--100: #fff7f5;
    --orange--200: #f89073;
    --orange--300: #F57030;
    --orange--500: #f34616;
    --orange--700: #e93c0c;
    --orange: #fd7e14;
    --yellow: #f5db02;
    --yellow-normal: #f5db02;
    --yellow-100: #FFF9EB;
    --yellow-200: #FFE9B1;
    --yellow-300: #FFD876;
    --yellow-500: #FFB600;
    --yellow-700: #B17E00;
    --green: #1cc88a;
    --green__100: #f5fff7;
    --green__200: #befccb;
    --green__300: #73f890;
    --green__500: #28f455;
    --green__700: #0CE93C;
    --green__800: #05661a;
    --green__900: #14411E;
    --green__1000: #011c07;
    --green__1100: #000902;
    --dark_green_100: #f9fbfa;
    --dark_green_300: #a0b7a5;
    --dark_green_500: #6a8b71;
    --dark_green_700: #59755f;
    --dark_green_900: #405344;
    --teal: #20c9a6;
    --cyan: #36b9cc;
    --white: #fff;
    --gray: #e1e1e1;
    --gray_100: #ebebeb;
    --gray_200: #e1e1e1;
    --gray_300: #d7d7d7;
    --gray_400: #bababa;
    --gray_500: #a6a6a6;
    --gray_700: #4f4f4f;
    --gray_900: #303030;
    --primary: #B60D50;
    --primary_hover: #6f0831;
    --accsent: #344d96;
    --secondary: #dfba4e;
    --secondary_hover: #967d34;
    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f6c23e;
    --danger: #e74a3b;
    --light: #ecf0f1;
    --dark: #040716;
    --dark-100: #FCFCFC;
    --dark-200: #DFDFDF;
    --dark-300: #898989;
    --dark-400: #7F7F7F;
    --dark-500: #575555;
    --dark-700: #2F2E2E;

    --s: 5px;
    --m: 10px;
    --l: 15px;
    --x: 20px;
    --xl: 25px;
    --x2: 40px;
    --x3: 60px;
    --x4: 80px;

    --font_s: 8px;
    --font_m: 10px;
    --font_r: 12px;
    --font_l: 16px;
    --font_x: 18px;
    --font_xl: 22px;
    --font_x2: 36px;
    --font_x3: 54px;
    --font_x4: 72px;

    --radius_5: 5px;
    --radius_10: 10px;
    --radius_15: 15px;
    --radius_20: 20px;
    --radius_25: 25px;
    --radius_50: 50px;
    --radius_oval: 50%;

    --margin_s: 5px;
    --margin_m: 10px;
    --margin_l: 15px;
    --margin_x: 20px;
    --margin_xl: 25px;
    --margin_x2: 40px;
    --margin_x3: 60px;
    --margin_x4: 80px;

    --b_shadow_primary: 0 0 5px rgba(0, 0, 0, 0.15);
    --b_shadow_secondary: 0 0 5px rgba(0, 0, 0, 0.35);

    --font_primary: 'YekanBakh';
    --font_secondary: 'Rokh';
}

json {
    display: none;
    opacity: 0;
    width: 0;
    height: 0;
    z-index: -100;
}

.red {
    color: #e74c3c !important;
}

.green {
    color: #218838;;
}

.container {
    width: calc(100% - 50px);
    max-width: 1360px;
    margin: auto;
}

.w100 {
    display: block;
    width: 100%;
}

.w50 {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 5px);
}

.w33 {
    display: inline-block;
    vertical-align: top;
    width: calc(33% - 5px);
}

.w25 {
    display: inline-block;
    vertical-align: top;
    width: calc(25% - 5px);
}

.clear {
    clear: both;
}

.pointer {
    cursor: pointer;
}

.ltr {
    text-align: left;
    direction: ltr;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.flex_row {
    display: flex;
    flex-direction: row;

}

.off {
    display: none !important;
    width: 0;
    height: 0;
    position: absolute;
    z-index: -10000;
}

a {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

hr {
    background-image: linear-gradient(to left, transparent, var(--primary), transparent);
    border: 0;
    height: 1px;
    margin: 10px 0 20px 0;
    box-sizing: content-box;
}

.input,
input,
select,
textarea {
    display: block;
    padding: var(--margin_l) var(--margin_x2);
    box-sizing: border-box;
    width: 100%;
    font-family: var(--font_primary);
    caret-color: var(--primary);
    background: var(--light);
    color: var(--gray_500);
    background-color: #34334A;
    border: solid 1px #ffffff;
}

.input:hover,
input:focus,
select:focus,
textarea:focus {
    color: var(--white);
    border: solid 1px #ffffff;
}

textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    outline: none !important;
}

.btn_primary_holder {
    margin: var(--margin_s);
}

.btn_primary {
    display: inline-block;
    text-align: center;
    color: var(--light);
    padding: var(--margin_l) var(--margin_m);
    box-sizing: border-box;
    border-radius: 0;
    background: var(--primary);
    cursor: pointer;
    border: solid 1px var(--primary);
}

.btn_primary i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_primary:hover {
    color: var(--light);
    background: var(--primary_hover);
}

.btn_green {
    display: inline-block;
    text-align: center;
    color: var(--light);
    padding: var(--margin_l) var(--margin_m);
    box-sizing: border-box;
    border-radius: 0;
    background: var(--green__700);
    cursor: pointer;
    border: solid 1px var(--green__700);
}

.btn_green i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_green:hover {
    color: var(--light);
    background: var(--green__700);
}

.polygon8 {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: var(--primary) !important;
}

.polygon8_gray {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #989898;
}

.polygon8_gray span,
.polygon8 span {
    display: inline-block;
    margin: 2px;
    background-color: #040716;
    clip-path: inherit;
    box-sizing: border-box;
    padding: 20px;
}

.polygon8Borderless {
    position: absolute;
    left: 0;
    bottom: 85px;
}

.polygon8Borderless img {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important;
    width: 50px !important;
    height: 50px !important;
}

.btn_secondary_holder {
    display: inline-block;
    overflow: hidden;
    margin: var(--margin_s);
}

.btn_secondary {
    display: inline-block;
    text-align: center;
    color: var(--light);
    box-sizing: border-box;
    cursor: pointer;
    border: solid 1px var(--primary);
    padding: var(--margin_l) var(--margin_m);

}

.btn_secondary i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_secondary:hover {
    background-color: var(--primary_hover);
}

.btn_secondary:hover span {
    background-color: #151B2F;
}

.btn_normal {
    display: inline-block;
    text-align: center;
    color: var(--primary);
    box-sizing: border-box;
    padding: var(--margin_s) var(--margin_l);
    margin: var(--margin_s);
    cursor: pointer;
}

.btn_normal i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_normal:hover {
    color: var(--accsent);
}

.inner_post_text,
.inner_post_text p {
    display: block;
    font-weight: 300;
    margin-bottom: var(--margin_l);
    text-align: justify;
    color: var(--gray);
}

.inner_post_text {
    color: var(--gray);
    line-height: 1.9;
    width: 100%;
    font-size: 12pt;
}

.inner_post_text p {
    display: block;
    font-weight: 300;
    margin-bottom: var(--margin_l);
    text-align: justify;
    line-height: 1.9;
}

.inner_post_text a {
    font-weight: 600;
    color: var(--red--500);
}

.inner_post_text video,
.inner_post_text audio,
.inner_post_text img {
    display: block;
    width: calc(100% - 20px);
    max-width: 500px;
    margin: var(--margin_l) auto;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.inner_post_text .aparat {
    display: block;
    width: 100%;
    max-width: 500px;
    min-height: 500px;
    margin: 10px auto;
}

.inner_post_text .aparat iframe {
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.inner_post_text h1 {
    display: block;
    margin: var(--margin_m) 0;
    font-size: var(--font_x);
    color: var(--dark-100);
    font-weight: bold;
    font-family: var(--font_secondary);
}

.inner_post_text h2 {
    display: block;
    margin-bottom: var(--margin_m);
    font-size: var(--font_l);
    color: var(--dark-100);
    font-weight: bold;
    font-family: var(--font_secondary);
}

.inner_post_text h3 {
    display: block;
    margin-bottom: var(--margin_s);
    font-size: var(--font_l);
    font-family: var(--font_secondary);
    color: var(--dark-100);
    font-weight: 800;
}

.inner_post_text h3 strong {
    display: block;
    margin-bottom: var(--margin_s);
    font-size: var(--font_l);
    font-family: var(--font_secondary);
    color: var(--red--500);
    font-weight: 800;
}

.inner_post_text h4,
.inner_post_text h5,
.inner_post_text h6 {
    display: block;
    color: var(--dark-100);
    font-family: var(--font_secondary);
    font-weight: bold;
}


.inner_post_text h4 strong,
.inner_post_text h5 strong,
.inner_post_text h6 strong {
    display: block;
    font-family: var(--font_secondary);
    font-weight: bold;
}

.inner_post_text ul,
.inner_post_text ol {
    display: block;
    margin: 0 var(--margin_xl);
}

.inner_post_text blockquote {
    display: block;
    padding: var(--margin_m);
    background: var(--dark-700);
    color: var(--primary);
    border-right: 5px solid var(--primary);
    border-radius: var(--radius_25);
}

.inner_post_text table {
    display: flex;
    width: 100% !important;
}

.inner_post_text tbody {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    gap: 3px;
    box-sizing: border-box;
    overflow: hidden;
}

.inner_post_text tbody tr:first-child {
    display: block;
    width: 100% !important;
    padding: 5px;
    box-sizing: border-box;
    font-weight: 700;
    font-family: var(--font_secondary);
    color: var(--white);
    background: var(--red--500);
    border-bottom: none !important;
}

.inner_post_text tbody tr:first-child p {
    color: var(--white);
}

.inner_post_text tbody:last-child tr {
    width: 100% !important;
    display: flex;
    padding: 5px;
    gap: 5px;
    box-sizing: border-box;
    align-items: flex-start;
    border-bottom: 1px dashed var(--gray_200);
}

.inner_post_text tbody:last-child tr:last-child {
    border-bottom: 1px dashed transparent;
}

.inner_post_text tbody tr td {
    flex: 1
}

.inner_post_text tbody:last-child tr td:first-child {
    font-weight: 700;
}

.item_sub_short {
    display: block;
    color: var(--gray);
    padding: 10px;
    margin: var(--margin_m) auto;
    box-sizing: border-box;
    width: 100%;
    font-weight: 300;
    font-size: 12pt;
    text-align: justify;
    margin-bottom: var(--margin_l);
    background: #000E7B55;
}
