@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);
    font-weight: 200;
    line-height: 250%;
    color: var(--dark);
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
    box-sizing: border-box;
    cursor: context-menu;
}

:root {
    --blue: #00ACEE;
    --purple: #7f337d;
    --pink: #e83e8c;
    --red: #ea5b5d;
    --red_hover: #e10a0d;
    --orange: #fd7e14;
    --yellow: #f5db02;
    --green: #20B2AA;
    --green_hover: #20c9a6;
    --cyan: #36b9cc;
    --office: #34CF1F;

    --white: #fff;
    --light: #F5F5F5;
    --gray: #D9D9D9;
    --gray_dark: #E6E6FA;
    --gray_dark_2: #B3B3B3;

    --primary: #373D49;
    --accsent: #4b9ba4;
    --accsent_hover: #E7F8EE;
    --secondary: #f8cf5b;
    --secondary_hover: #fdc62b;

    --purple_1: #350C5C;
    --purple_2: #410F71;
    --purple_3: #4C1284;
    --purple_4: #54089D;

    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f6c23e;
    --danger: #e74a3b;

    --black: #0c1826;
    --dark: #646464;

    --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;

    --gradiant_red: linear-gradient(to bottom, #EA5B5D, #FD4043);
    --gradiant_primary: linear-gradient(to bottom, #373D49, #315889);
    --gradiant_yellow: linear-gradient(to bottom, #ECB602, #FFD524);

    --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: IRANSans;
    --font_english: 'Google Sans';
}

json {
    display: none;
    width: 0;
    height: 0;
}

.container {
    width: calc(100% - 20px);
    max-width: 1260px;
    margin: auto;
}

.w100 {
    display: block;
    width: 100%;
}

.w50 {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 5px);
    padding-left: 15px;
    box-sizing: border-box;
}

.w33 {
    display: inline-block;
    vertical-align: top;
    width: calc(33% - 5px);
    padding-left: 15px;
    box-sizing: border-box;
}

.w25 {
    display: inline-block;
    vertical-align: top;
    width: calc(25% - 5px);
    padding-left: 15px;
    box-sizing: border-box;
}

.w75 {
    display: inline-block;
    vertical-align: top;
    width: calc(75% - 5px);
    padding-left: 15px;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.pointer {
    cursor: pointer;
}

.ltr {
    text-align: left;
    direction: ltr;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.off {
    display: none;
    width: 0;
    height: 0;
    position: absolute;
    z-index: -10000;
}

a {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--accsent);
    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;
}

.alert input,
.alert .input_span,
.alert select,
.alert textarea,
.input_span,
.input,
input,
select,
textarea {
    display: block;
    padding: var(--margin_s) var(--margin_m);
    box-sizing: border-box;
    width: 100%;
    font-family: var(--font_primary);
    caret-color: var(--primary);
    border-radius: var(--radius_15);
    background: var(--light);
    border: 1px solid var(--gray);
    color: var(--black);
    margin-bottom: var(--margin_l);
    font-weight: 200;
    line-height: 170%;
}

.alert .input_show,
.input_show {
    display: block;
    padding: var(--margin_s) var(--margin_l) var(--margin_s) var(--margin_m);
    box-sizing: border-box;
    width: 100%;
    font-family: var(--font_primary);
    border-radius: var(--radius_15);
    background: var(--white);
    color: var(--accsent);
    margin-bottom: var(--margin_l);
    box-shadow: inset -3px 0 0 var(--accsent);
    font-weight: 200;
    line-height: 170%;
}

.alert .input_span:hover,
.alert .input:hover,
.alert input:focus,
.alert select:focus,
.alert textarea:focus,
.input_span:hover,
.input:hover,
input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--accsent);
}

.alert textarea,
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    outline: none !important;
    font-weight: 200;
}

.search_result {
    display: inline-block;
    font-weight: 300;
    padding: 2px 10px;
    margin: 5px 2px;
    box-sizing: border-box;
    border: solid 1px var(--accsent);
    color: var(--accsent);
    cursor: pointer;
    border-radius: 25px;
}

.search_result:hover {
    color: #ffffff;
    background: var(--accsent);
}

.btn_primary {
    display: inline-block;
    text-align: center;
    color: var(--light);
    box-sizing: border-box;
    padding: var(--margin_s) var(--margin_xl);
    margin: var(--margin_s);
    border-radius: var(--radius_15);
    background: var(--primary);
    cursor: pointer;
}

.btn_primary i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_primary:hover {
    color: var(--light);
    background: var(--accsent);
}

.btn_primary_gray {
    background: var(--gray_dark_2);
}

.btn_primary_gray:hover {
    background: var(--dark);
}

.btn_primary_green {
    background: var(--green);
}

.btn_primary_green:hover {
    background: var(--green_hover);
}

.btn_primary_red {
    background: var(--red);
}

.btn_primary_red:hover {
    background: var(--danger);
}

.btn_secondary {
    display: inline-block;
    text-align: center;
    color: var(--light);
    box-sizing: border-box;
    padding: var(--margin_s) var(--margin_l);
    margin: var(--margin_s);
    border-radius: var(--radius_15);
    background: var(--secondary);
    cursor: pointer;
    font-weight: 300;
}

.btn_secondary i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_secondary:hover {
    background: var(--primary);
    color: var(--light);
}

.btn_normal {
    display: inline-block;
    text-align: center;
    background: #7034AC;
    color: var(--secondary);
    border-radius: 12px;
    font-size: 8pt;
    cursor: pointer;
}

.btn_normal i {
    display: inline-block;
    vertical-align: middle;
    width: var(--xl);
}

.btn_normal:hover {
    background-color: #7034ACaa;
    color: var(--secondary);
}

.post_holder .blog_item .text_hold .text img,
.post_holder .blog_item .text_hold .text audio,
.post_holder .blog_item .text_hold .text video {
    display: block;
    width: calc(100% - 20px);
    max-width: 800px;
    margin: var(--margin_m) auto;
    object-fit: cover;
    border-radius: var(--radius_20);
    overflow: hidden;
}

.post_holder .blog_item .text_hold .text .aparat {
    display: block;
    width: calc(100% - 20px);
    max-width: 800px;
    min-height: 500px;
    margin: var(--margin_m) auto;
}

.post_holder .blog_item .text_hold .text .aparat iframe {
    min-height: 500px;
    border-radius: var(--radius_20);
    overflow: hidden;
}

.post_holder .blog_item .text_hold .text h1 {
    display: block;
    margin-top: var(--margin_x);
    margin-bottom: var(--margin_s);
    font-size: var(--font_xl);
    color: var(--secondary);
    font-weight: bold;
}

.post_holder .blog_item .text_hold .text h2 {
    display: block;
    margin-top: var(--margin_x);
    margin-bottom: var(--margin_s);
    font-size: var(--font_x);
    color: var(--secondary);
    font-weight: bold;
}

.post_holder .blog_item .text_hold .text h3 {
    display: block;
    margin-top: var(--margin_x);
    margin-bottom: var(--margin_s);
    font-size: var(--font_l);
    color: var(--secondary);
    font-weight: bold;
}

.post_holder .blog_item .text_hold .text h4,
.post_holder .blog_item .text_hold .text h5,
.post_holder .blog_item .text_hold .text h6 {
    display: block;
    margin-top: var(--margin_x);
    margin-bottom: var(--margin_s);
    color: var(--secondary);
    font-weight: bold;
}

.post_holder .blog_item .text_hold .text ul,
.post_holder .blog_item .text_hold .text ol {
    display: block;
    margin: 0 var(--margin_xl);
}

.post_holder .blog_item .text_hold .text blockquote {
    display: block;
    padding: var(--margin_m);
    background: var(--gray);
    color: var(--primary);
    border-right: 5px solid var(--primary);
    border-radius: var(--radius_5);
}