 

:root {
 /*   use  --> var(--Name_color);  */


/*public value */
  --mask_audio	:#343746; /*blue mask */ 
  --mask_video	:#eb9500; /*orange_mask */
  
/*header value*/  
  --theme_color_header		:#10aab2;
  --theme_color_nav_item	:#ffec3c;
  --theme_color_red			:#e21e26;
 
/*content value */
  --shadow_gray			:#cccccc;/*audio & video */
  --light_gray			:#ececec;/*audio & video */
  --dark_gray 			:#444444;/*audio & video */
  --orange				:#eb9500;/*audio & video & chat*/
  --blue_roz_nevesht	:#0c7a80;/* roznevesht */
  --theme_yellow		:#ffd81a;/* roznevesht */  
  
/*footer  vlaue*/
  --footer_light_bg	:#f4f4f4; 
  --footer_dark_bg	:#005778;  

/*widget  vlaue*/
  --float_button		:#eb9500;
  --float_button_hover	:#f16100;  
  --float_button_hover	:#eb9500;  
  --progress_page		:#eb9500;
  --yellow				:#f9e14d; /*chat*/ 
  --dark_khaki			:#bdb76b;/*chat*/ 
  --dark_cyan			:#008b8b;/*chat*/ 
  --blue				:#7C93B2;/* chat & fehrest */
  --dark_purple			:#15162f;/* chat & fehrest */
  
/*responsive value */  
  --burger_color:#ffd81a;  
  --drawer_bg	:#0c7a80;
  
  --dark_white	:#ebebeb;
  --light_white	:#ffffff;
  --gray		:#888888;  
  --black		:#010101;
  --toast		:#99004d;
  --tag_p		:#222222;
  --tag_h1		:#010101;
  --tag_h2		:#000095;
  --tag_h3		:#454EF6;
  --tag_h4		:#5F1B9E;
  --tag_h5		:#950000;
  --tag_a		:#4169e1;

}



 @font-face { font-family: b_yekan; src: url('/fonts/b_yekan.ttf'); }

 

 *{
		
 		font-family:'b_yekan','B Yekan';font-weight:bold;
   
		 
 }
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;
	line-height: normal;
	font-size: 14px;
 	font-family:'b_yekan','B Yekan';font-weight:bold;
	vertical-align: baseline;
	
}
 
 
 
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	  display: flex; 
  align-items: center;
  justify-content: center;
  flex-direction:  column ;
   overflow-x: hidden;
}
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;
	outline:none;} 
 
 
 
.container_header {
	overflow: hidden;
	background-color: var(--dark_white);

/*  Prevents Flickering  */
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;

}


header {
	height: 60px;
	z-index: 2;
	background-color:  var(--drawer_bg);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
		/* starting point */
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	display:none;
}
header h1 a {
	color: var(--light_white);
	text-align: left;
	font-size: 27px;
	line-height: 60px;
	font-weight: bold;
	padding-left: 20px;
}
header h1 a:hover {color: var(--black);}
 
.header-section {margin-top: 60px;}


/* NAVIGATION ANNIMATION */
nav {
	width: 93%;
	height: 120%;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	background-color: var(--drawer_bg);
	border-radius: 8px;
	overflow-y:auto;
	/* starting point */
	opacity: .3;
	-webkit-transform: translate3d(5%,0,0)scale(.97);
	-moz-transform: translate3d(5%,0,0)scale(.97);
	transform: translate3d(5%,0,0)scale(.97);
 
}

/*Nav Expanding Open Effect*/
nav.open {
	opacity: 1;

	-webkit-transform: translate3d(0,0,0)scale(1);
	-webkit-animation: slideIn .35s ease-in-out;
	
	-moz-transform: translate3d(0,0,0)scale(1);
	-moz-animation: slideIn .35s ease-in-out;
	
	transform: translate3d(0,0,0)scale(1);
	animation: slideIn .35s ease-in-out;
}





/*Nav Shrinking Closed Effect*/
nav.close {
	opacity: 0;
	
	-webkit-transform: translate3d(5%,0,0)scale(.97);
	-webkit-animation: slideOut .3s ease-in-out;
	
	-moz-transform: translate3d(5%,0,0)scale(.97);
	-moz-animation: slideOut .3s ease-in-out;
	
	transform: translate3d(5%,0,0)scale(.97);
	animation: slideOut .3s ease-in-out;
}




/* CONTENT ANNIMATION */
.content {
	/* starting point */
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	z-index: 1;
}

/*Content Sliding Open Effect*/
header.open,
.content.open 
{   
	-webkit-transform: translate3d(240px,0,0);
	-webkit-animation: open .5s ease-in-out;
	
	-moz-transform: translate3d(240px,0,0);
	-moz-animation: open .5s ease-in-out;
	
	transform: translate3d(240px,0,0);
	animation: open .5s ease-in-out;
}





/*Content Sliding Closed Effect*/
header.close,
.content.close 
{
	-webkit-transform: translate3d(0,0,0);
	-webkit-animation: close .3s ease-in-out;
	
	-moz-transform: translate3d(0,0,0);
	-moz-animation: close .3s ease-in-out;
	
	transform: translate3d(0,0,0);
	animation: close .3s ease-in-out;
}




	.responsive{
		background-color:var(--dark_white);
	}
	
	
	.burger {
		position: absolute;
		float: left;
		padding: 10px;
		top: 4px;
		left: 10px;
		cursor:pointer;
		
		display: none;
	}
	.burger li {
		width: 30px;
		height: 4px;
		background-color: var(--burger_color);
		border-radius: 3px;
		margin: 5px 0;
	}
	.burger.open li {background-color: var(--burger_color);}
	

.slideLeft{
	height:100%;
	display:none;
}

.header_section
{
 
 width:100%;

}
 

/***************  new navbar start ******************/

 #nav_menu {
 width:100%;
 height:auto;
 display: block; 
 
}


.nav {
  	background-color: var(--theme_color_header);
  	position: absolute;
  	right: 0;
  	top: 0;
	z-index:10;
	width:100%;
	min-height:40px;
	margin-top:0px;
	transform: translateY(0);
	 
 
}



.nav a {
  	color: var(--light_white);
  	text-decoration: none;
  	
}
 
.header_items{
	padding: 7px 15px;
} 

.nav.active {
  	background-color: var(--light_white);
  	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active a {
  	color: var(--black);
}

.nav.active .nav_items {
  padding: 10px 0;
}

.nav a.current,
.nav a:hover {
  /*color: #c0392b; disable this line red color*/
  font-weight: bold;
 
}
 
.nav_items {
 
	margin-top:5px;
  	max-width: 90%;
}

  
 
/************ logo start **************/


#logo_khengoolestan_windows{
width:50px;
height:50px;
position: relative;
right: 20px;
top: 2px;
}
 
.dandon_logo {
fill: #fff;
}

.circle_logo {
fill: #ffec3c;
}

.zabon_logo {
fill: #e21e26;
}
 

/************ logo end ****************/ 
 
 



#row_button_header_windows {
  	align-items: center;
  	position: absolute;
  	right: 80px;
	max-width:100%;
  	top: 10px;
 	display: flex;
  	justify-content: right;
 align-items: center;
	
}
 


#row_button_header_phone {
  	align-items: center;
  	position: absolute;
  	right: 70px;
	max-width:450px;
  	top: 10px;
 	display: flex;
  	justify-content: right;
 align-items: center;
	
}
  

#nav_row_buttom{
	position:absolute;
	top:10px;
	float: right;
	display: none; 
	
}


/***************  new navbar  end ******************/

  



/*************  items header start *********************/


 
.fun_btn {
  background: none transparent;
   font-size: 1.1rem;
  border-width: 0;  
  padding: 8px;
  padding-bottom:1em;
  color: var(--theme_color_nav_item);
  cursor: pointer;
  position: relative;
  outline: none;
  margin-left:2px;
  margin-right:2px;
  transition: all 150ms ease;
  font-weight: bold;
}
 
.fun_btn::before, .fun_btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  transition: all 150ms ease;
}
 
 
.fun_btn::after {
  border-top: 0.1875em dashed var(--light_white);
  height: 0.1875em;
  width: 0;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, -10%) rotate(-1.875deg);
}
 
.fun_btn:hover {
  border-width: 0;
  margin: 0.1875em;
}
.fun_btn:hover::before {
  top: 0.09375em;
  left: 0.09375em;
  transform: rotate(1.875deg);
  opacity: 0.88;
}
.fun_btn:hover::after {
  width: 75%;
}
.fun_btn:active {

  text-shadow:0px 0px 5px #fff,0px 0px 5px var(--theme_color_red);
 
}

 
.current{
  background: none transparent;
  font-size: 1.1rem;
  border-width: 0;  
  padding: 8px;
  padding-bottom:1em;
  color: var(--theme_color_nav_item);
  cursor: pointer;
  position: relative;
  outline: none;
  margin-left:2px;
  margin-right:2px;
  transition: all 150ms ease;
  font-weight: bold;
  
}  

.current::after{
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  transition: all 150ms ease;
  border-top: 0.1875em dashed var(--black);
  height: 0.1875em;
  width: 0;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, -10%) rotate(-1.875deg);
  width: 75%;
  
} 

 
/*************  items header end *********************/


 
	
	
	
	
	
	
@-webkit-keyframes close {
	0%      {-webkit-transform: translate3d(240px,0,0);}
	100%  {-webkit-transform: translate3d(0,0,0);}
}
@-moz-keyframes close {
	0%       {-moz-transform: translate3d(240px,0,0);}
	100%  {-moz-transform: translate3d(0,0,0);}
}
@keyframes close {
	0%       {transform: translate3d(240px,0,0);}
	100%  {transform: translate3d(0,0,0);}
}	





@-webkit-keyframes open {
	0%      {-webkit-transform: translate3d(0,0,0);}
	70%    {-webkit-transform: translate3d(260px,0,0);}
	100%  {-webkit-transform: translate3d(240px,0,0);}
}
@-moz-keyframes open {
	0%      {-moz-transform: translate3d(0,0,0);}
	70%    {-moz-transform: translate3d(260px,0,0);}
	100%  {-moz-transform: translate3d(240px,0,0);}
}
@keyframes open {
	0%      {transform: translate3d(0,0,0);}
	70%    {transform: translate3d(260px,0,0);}
	100%  {transform: translate3d(240px,0,0);}
}	



@-webkit-keyframes slideOut {
	0%      {opacity: 1;
				-webkit-transform: translate3d(0,0,0)scale(1);}
	100%  {opacity: .3;
				-webkit-transform: translate3d(5%,0,0)scale(.97);}
}
@-moz-keyframes slideOut {
	0%      {opacity: 1;
				-moz-transform: translate3d(0,0,0)scale(1);}
	100%  {opacity: .3;
				-moz-transform: translate3d(5%,0,0)scale(.97);}
}
@keyframes slideOut {
	0%      {opacity: 1;
				transform: translate3d(0,0,0)scale(1);}
	100%  {opacity: .3;
				transform: translate3d(5%,0,0)scale(.97);}
}
	
	
	
	
	

@-webkit-keyframes slideIn {
	0%       {opacity: .3;
				-webkit-transform: translate3d(5%,0,0)scale(.97);}
	100%  {opacity: 1;
				-webkit-transform: translate3d(0,0,0)scale(1);}
}
@-moz-keyframes slideIn {
	0%      {opacity: .3;
				-moz-transform: translate3d(5%,0,0)scale(.97);}
	100%  {opacity: 1;
				-moz-transform: translate3d(0,0,0)scale(1);}
}
@keyframes slideIn {
	0%      {opacity: .3;
				transform: translate3d(5%,0,0)scale(.97);}
	100%  {opacity: 1;
				transform: translate3d(0,0,0)scale(1);}
}	
	
	
/* ------- chenge header end ----- */ 
 
 
 
 
 

/* map
–––––––––––––––––––––––––––––––––––––––––––––––––– */

 
  
/* map end 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  


body {
	  font-family:'B Yekan','Arial';font-weight:normal;
}

.site-section {
  text-align: center;
  padding: 50px 0 0px;
}

#welcome p {
  font-size: 16px;
  margin: 0 auto;
}


#about_us_svg{
width:300px;
height:120px;	
position:absolute;
top:-54px;
right:40px;
background-color:#fff;
z-index:5;
overflow-y:hidden;
}

#team_creator{
width:200px;
height:120px;	
position:absolute;
top:-112px;
left:40px;
background-color:#fff;
z-index:1;
overflow-y:hidden;
}

 


#creator {
position:relative;	
width:96%; 
max-width:500px;
border-radius:20px 20px 20px 20px;
border:solid rgba(0,0,0,1);
border-width:4px 4px 4px 4px; 

margin-top:200px;
margin-left:3%;
margin-right:3%;
padding-top:50px;
padding-bottom:50px;

}

#creator p {
 z-index:2;

}
.programer{
  position: relative;
  animation: glitch 1s infinite;	
}

@keyframes glitch {
  0% {
    clip: rect(98px, 9999px, 56px, 0);
  }
  5% {
    clip: rect(63px, 9999px, 37px, 0);
  }
  10% {
    clip: rect(69px, 9999px, 76px, 0);
  }
  15% {
    clip: rect(96px, 9999px, 23px, 0);
  }
  20% {
    clip: rect(1px, 9999px, 40px, 0);
  }
  25% {
    clip: rect(34px, 9999px, 32px, 0);
  }
} 
   


#welcome {
	
width:96%; 
border-radius:20px 20px 20px 20px;
border:dashed rgba(0,0,0,1);
border-width:2px 2px 2px 2px; 

margin-top:200px;
margin-left:3%;
margin-right:3%;

}

.desc_text{
	opacity:0.6;
}

.box_effect {
  max-width:500px;
  background-color: #fff;
  position: relative;
}
.box_effect::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 50%;
  background-image: linear-gradient(
    90deg,
    rgba(58, 175, 180, 0.2) 0%,
    rgba(158, 52, 147, 0.7) 11%,
    rgba(202, 41, 92, 0.1041509433962259) 29%,
    rgba(253, 29, 29, 0.8) 50%,
    rgba(253, 103, 49, 0.8) 75%,
    rgba(55, 107, 253, 0.7) 83%,
    rgba(246, 132, 40, 0.0367924528301883) 90%,
    rgba(69, 221, 252, 0.3) 100%
  );
  z-index: -1;
  filter: blur(10px);
  animation: rands 20s infinite linear;
}
@keyframes rands {
  0% {
    transform: rotate(0deg) scale(0.98);
  }
  50% {
    transform: rotate(180deg) scale(1.02) skewX(1deg) skewY(1deg)
      translateX(4px) translateY(-2px);
  }
  100% {
    transform: rotate(360deg) scale(0.98);
  }
}






#user_of_day{

width:96%;
max-width:400px;
margin-left:3%;
margin-right:3%;	
border-radius:20px 20px 20px 20px;
border:dashed #0c7a19;
border:dashed rgba(12,122,25,1);
border-width:2px 2px 2px 2px;
margin:20px 20% 20px 20%;

padding-bottom:40px;
	
}

.site-section h1 {
	font-size:18px;

  font-weight: bold;
  margin-bottom: 30px;
}

#roast{
	position:relative;
	margin-top:100px;
}

#roast .item i {
  font-size: 40px;
}

#roast .item {
  margin-top: 36px;
}

#roast .item h2 {
  font-weight: normal;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 24px;
}

.light-section {
  /*background: rgb(109, 188, 221);*/
  background:rgba(255,255,255,1);
}

.light-section a {
	
	color : #8c1f79;
	
}

.light-section a:hover {
	
	color : #db34be;
	
}

 
.light-section blockquote 
{
	
border-radius:20px 20px 20px 20px;
border:solid rgba(0,0,0,1);
border-width:5px 5px 5px 5px; 
font-size:15px;
font-family:'B Yekan';
font-weight:normal;
font-style:normal;
color:#333333;
text-align:center;
text-decoration:none;
margin-top:0px;
margin-left:0px;
margin-right:0px;
margin-bottom:0px;
padding-top:10px;
padding-left:10px;
padding-right:10px;
padding-bottom:10px;
 

}




.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: #1e1e6a;
}






/*fotter
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.6;
  font-size: 13px;
  margin-top: 50px;
}

 



#button-div, #world_map, .footer-dark .copyright, .footer-dark .item.social, .site-section {
    text-align: center;
}



.o-icon {
  display: block;
  width: 70px;
  height: 70px;
  	margin:auto;

   color: #15162f;
}

.o-icon--wink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(4px at calc(50% + 9px) calc(50% - 8px), #15162f, #15162f 99%, transparent 100%);
}
.o-icon--wink::before, .o-icon--wink::after {
  content: '';
  display: block;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  will-change: transform;
}
.o-icon--wink::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #15162f;
  -webkit-transform: translate(-9px, -8px) scaleY(1);
          transform: translate(-9px, -8px) scaleY(1);
}
.o-icon--wink::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 55%;
  border: 4px solid transparent;
  border-bottom-color: #15162f;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -70%) rotate(0);
          transform: translate(-50%, -70%) rotate(0);
  -webkit-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
}

.o-icon--wink:hover::before {
  -webkit-transform: translate(-9px, -8px) scaleY(0.3);
          transform: translate(-9px, -8px) scaleY(0.3);
}
.o-icon--wink:hover::after {
  -webkit-transform: translate(-50%, -70%) rotate(16deg);
          transform: translate(-50%, -70%) rotate(16deg);
}

 



 