@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------------------------------------------------*/
/*كلسات الاخبار*/
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(../gov/font/ElMessiri-VariableFont_wght.ttf) format('woff2');
  unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC, U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.cardnewsside{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	direction: rtl;
}
.cardnewsside .reveal{
	transition: all 1.5s ease;
	transform: translateY(50%);
	opacity: 0;
}
.cardnewsside .reveal.active{
	transform: translateY(0%);
	opacity: 1;
}
.cardnews{
	position: relative;
	width: 370px;
	height: 555px;
	background: #fff;
	margin: 10px;
	box-shadow: 0 10px 20px -10px rgba(0,0,0,0.75);
}
.cardnews .imgnewsside{
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #fff;
}
.cardnews .imgnewsside .newstype{
	width: 70px;
	height: 40px;
	background: #285d93;
	position: absolute;
	max-width: 33%;
	z-index: 7;
	border-radius: 2px;
	top: 7px;
	right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cardnews .imgnewsside .newstype pre{
	color: white;
	font-size: 20px;
	padding: 5px 10px;
	font-family: 'El Messiri', sans-serif;
}
.cardnews .imgnewsside img{
	transform: scale(1,1);
	width: auto;
	max-width: 100%;
	height: auto;
	min-height: 100%;
	-webkit-animation-name: zoomoutp;
	-webkit-animation-duration: 2s;
	animation-name: zoomoutp;
	animation-duration: 2s;
}
.cardnews:hover .imgnewsside img{
	transform: scale(1.2,1.2);
	-webkit-animation-name: zoominp;
	-webkit-animation-duration: 2s;
	animation-name: zoominp;
	animation-duration: 2s;
}
@-webkit-keyframes zoominp{
	from{transform: scale(1,1);}
	to{transform: scale(1.2,1.2);}
}
@keyframes zoominp{
	from{transform: scale(1,1);}
	to{transform: scale(1.2,1.2);}
}
@-webkit-keyframes zoomoutp{
	from{transform: scale(1.2,1.2);}
	to{transform: scale(1,1);}
}
@keyframes zoomoutp{
	from{transform: scale(1.2,1.2);}
	to{transform: scale(1,1);}
}
@media(max-width:390px){
	.cardnews{
		width: 90%;
	}
	.titlenewse h1{
		font-size: 14px;
	}
	.textnews pre{
		font-size: 12px;
	}
}
.cardnews .date{
	width: 100%;
	height: 20px;
	display: flex;
	margin: 2px 0;
	padding: 0 0 5px;
	border-bottom: 1px solid rgba(0,0,0,0.10);
}
.cardnews .date .day,.cardnews .date .time{
	width: auto;
	margin-right: 10px;
	margin-left: 5px;
}
.cardnews .date .day pre,.cardnews .date .time pre{
	font-size: 12px;
}
.textfornews{
	width: 100%;
	height: 180px;
	overflow: hidden;
}
.titlenewse{
	width: 100%;
	height: auto;
}
.titlenewse h1{
	font-size: 18px;
	margin: 10px 15px;
	text-align: justify;
	max-height: 75px;
	overflow: hidden;
}
.textnewse {
	width: 100%;
	height: auto;
}
.textnewse pre{
	font-size: 13px;
	margin: 10px 15px;
	text-align: justify;
	white-space: pre-line;
	max-height: 118px;
	overflow: hidden;
}
.footercard{
	width: 100%;
	height: 70px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.footercard .action{
	width: 33%;
	height: 100%;
	border-top: 1px solid rgba(0,0,0,0.10);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.footercard .action a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-decoration: none;
	color: gray;
}
.footercard .action p{
	font-size: 14px;
	color: gray;
	font-weight: 900;
	cursor: pointer;
}
.footercard .action:hover p,.footercard .action:hover a{
	color: #285D93;
}
.footercard .action .fa-regular{
	font-size: 20px;
}
.write{
	width: 100%;
	height: 25px;
	overflow: hidden;
}
.write pre{
	font-size: 14px;
	margin-right: 10px;
	color: gray;
}
.write .fa-regular{
	font-size: 16px;
}