
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, 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, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
    font-family: iransans;
    color:var(--color-black)
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 23px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {text-decoration: none; color: var(--color-black); transition: all 0.2s;}


:root {
    --color-black: #444;
    --color-bg1: #F8F8F8;
    --color-border: #00000012;
    --colorlead: #676767;
    --colorAccent: #e8488e;
    --color-border-red: #ffdfe5;;
    --colorAccentBG: rgba(249,25,66, 0.06);
    --radius: 7px;
	--lineHeight: 23px;
    --font11px: 11px;
    --font12px: 12px;
    --font13px: 13px;
    --font14px: 14px;
    --font15px: 15px;
    --font16px: 16px;
    --font17px: 17px;
    --font18px: 18px;
    --font19px: 19px;
	--font20px: 20px;
    --font21px: 21px;
    --font22px: 22px;

}

* {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s;

}

.three-line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.two-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.one-line {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@font-face {
	font-family: iransans;
	font-style: normal;
	font-weight: 500;
	font-display: swap;

	src: url('fonts/IRANYekanXFaNum-Regular.woff2') format('woff2');
}

.region--front-page > .block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.region--front-page > .block .block__content {
    max-width: 1400px;
    position: relative;
    width: 100%;
}


#header {display: none;}