@charset "utf-8";
/* CSS Document */
.sidebigimg{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.70);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000000;
	opacity: 0;
	visibility: hidden;
}
.sidebigimg.open{
	visibility: visible;
	opacity: 1;
}
.bigimg{
	width: auto;
	max-width: 80%;
	height: auto;
	max-height: 80%;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.bigimg img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border: 1px solid #fff;
}
.pop-close-icon{
	position: absolute;
	height: 25px;
	width: 25px;
	text-align: center;
	color: #fff;
	font-size: 25px;
	line-height: 20px;
	right: 5px;
	top: 5px;
	cursor: pointer;
}
@media screen and (max-width: 1100px){
	.titlenews pre{
		font-size: 30px;
	}
	.morenews{
		display: none;
	}
}
@media screen and (max-width: 800px){
	.titlenews pre{
		font-size: 26px;
	}
	.hedernews{
		background-attachment: local;
		background-position: top;
		height: 250px;
	}
	.bigimg{
		width: auto;
		min-width: 90%;
		max-width: 100%;
		height: auto;
		max-height: 80%;
	}
}
@media screen and (max-width: 650px){
	.titlenews pre{
		font-size: 20px;
	}
	.multiimg img{
		height: auto;
		max-width: 95%;
	}
}
@media screen and (max-width: 510px){
	.titlenews pre{
		font-size: 20px;
	}
}
.newspage{
	direction: rtl;
	width: 100%;
	height: auto;
	min-height: 100vh;
	display: flex;
	justify-content: space-around;
}
.newspage .newspageside{
	width: calc(100% - 80px);
	height: auto;
	display: flex;
	justify-content: center;
}
.newspage .newspageside .newspagesidenews{
	width: 99%;
	height: auto;
	margin: 40px auto;
	min-height: 100px;
	display: flex;
	padding: 5px;
	background: #F3F3F3;
	flex-direction: column;
}
.newspage .newspageside .newspagesidenews .detales{
	width: 100%;
	height: 30px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 2px 0 5px 0;
}
.newspage .newspageside .newspagesidenews .detalese{
	margin-left: 10px;
}
.newspage .newspageside .newspagesidenews .detalese a{
	text-decoration: none;
	color: gray;
}
.newspage .newspageside .newspagesidenews .detalese a:hover{
	color: blue;
}
.newspage .newspageside .newspagesidenews .detalese a .fa-solid{
	font-size: 20px;
	color: gray;
}
.newspage .newspageside .newspagesidenews .detalese a:hover .fa-solid{
	color: blue;
}
.newspage .newspageside .newspagesidenews .detalese:nth-child(3){
	margin-right: 20px;
}
.newspage .newspageside .newspagesidenews .detalese:last-child{
	margin: auto auto auto 10px;
}
.newspage .newspageside .newspagesidenews .titlenews{
	width: 100%;
	height: auto;
	margin: 20px auto;
}
.newspage .newspageside .newspagesidenews .titlenews pre{
	font-size: 25px;
	white-space: pre-line;
}
.newspage .newspageside .newspagesidenews .newsimg{
	width: 100%;
	height: auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.newspage .newspageside .newspagesidenews .newsimg img{
	width: 100%;
	height: auto;
}
.newspage .newspageside .newspagesidenews .newstextside{
	width: 95%;
	height: auto;
	overflow: hidden;
	margin: 30px 2.5%;
}
.newspage .newspageside .newspagesidenews .newstextside pre{
	white-space: pre-line;
	text-align: justify;
	font-size: 20px;
}
.newspage .newspageside .newspagesidenews .slidenewsimgside{
	width: 100%;
	height: 70vh;
}
.swiper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.swiper-slide img {
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.swiper-slide video {
	width: auto;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100000000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */


.comentside{
	width: calc(40% - 10px);
	height: auto;
	margin: 40px auto;
}
.hedercoment{
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F3F3F3;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.hedercoment h2{
	color: gray;
	font-size: 20px;
}
.bodycoment{
	
	width: 100%;
	height: auto;
	min-height: 580px;
	background: #F3F3F3;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	display: flex;
	justify-content: center;
	align-items: center;
}
.coments{
	width: calc(100% - 6px);
	min-height: calc(580px - 6px);
	background: #fff;
}
.coment{
	width: 100%;
	height: auto;
	min-height: 80px;
	display: flex;
	margin: 15px auto;
}
.imgpersonside{
	width: 80px;
	height: 80px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.imgperson{
	width: calc(100% - 5px);
	height: calc(100% - 5px);
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
}
.textcoment{
	width: auto;
	max-width: calc(100% - 140px);
	overflow: hidden;
	margin: 0;
	border-radius: 20px;
	background: #F3F3F3;
	padding: 20px 10px;
}
.textcoment p{
	font-size: 16px;
	font-weight: 800;
}
.textcoment pre{
	white-space: pre-line;
	font-size: 15px;
	text-align: justify;
}
.fotercoment{
	width: 100%;
	height: 90px;
	background: #F3F3F3;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.userimg{
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
	background: #fff;
	margin: 0 8px;
}
.userimg img{
	width: 100%;
	height: auto;
}
.writeside{
	width: calc(100% - 115px);
	height: auto;
	max-height: calc(100% - 8px);
}
.writeside textarea{
	width: calc(100% - 16px);
	height: auto;
	max-height: 100%;
	border-radius: 10px;
	border: none;
	padding: 8px;
	overflow: auto;
	resize: none;
}
.btnside{
	width: 40px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.btnside button{
	border: none;
}
.btnside .fa-regular{
	font-size: 26px;
	color: gray;
}
.massage{
	width: 340px;
	height: 45px;
	background: radial-gradient(circle at top left,#AFB81D 0,#1A9C5A 100%);
	position: fixed;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.massage h6{
	font-size: 18px;
	color: white;
}
@media only screen and (max-width: 1024px){
	.newspage{
		flex-direction: column;
	}
	.newspage .newspageside{
		width: calc(100% - 0px);
	}
	.newspage .comentside{
		width: 100%;
		margin: 40px 0;
	}
}
@media only screen and (max-width: 700px){
	.imgpersonside{
		width: 55px;
		height: 55px;
	}
	.modal-content {
		width: 100%;
	}
	.textcoment{
		max-width: calc(100% - 90px);
	}
	.textcoment p{
		font-size: 14px;
	}
	.textcoment pre{
		font-size: 13px;
	}
}
.mass{
	width: 310px;
	height: 200px;
	background: rgba(0,0,0,0.60);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 99999;
	border-radius: 10px;
	display: none;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
}
.tex{
	color: white;
	font-size: 20px;
}
.but button{
	padding: 5px 10px;
	border-radius: 2px;
	font-weight: 500;
	color: white;
	border: none;
	background: radial-gradient(circle at top left,#AFB81D 0,#1A9C5A 100%);
	font-size: 20px;
}