:root {
  --primary-color: #385e9d;
  --color-three: #313131;
  --dark-color: #181818;
  --light-text: #f7f4f4;
  --low-opacity: #ffffffc2;
}

/*****************body******************/
body {
  font-family: "IRANSans_Regular";
  background-image: url("../img/bg.jpg");
  background-position: top;
  background-size: cover;
  direction: rtl;
  min-height: 100vh;
}

img {
  filter: brightness(0.9);
  -webkit-filter: brightness(0.9);
}
img:hover {
  filter: grayscale(1);
}
/*****************header****************/
.indexBox {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  margin: 50px 0;
}
.indexBoxf {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  margin: 50px 0;
}
.indexBoxfilm {
  width: 100%;
  border-radius: 20px;
  margin: 50px 0;
}
.topRow {
  background-color: var(--dark-color);
  width: 100%;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
}
.topRowMnu {
  display: flex;
  align-items: center;
  justify-content: start;
}
.topRowMnu li {
  margin-left: 8px;
}
.topRowMnu li a {
  font-size: 13px;
  color: var(--light-text);
  margin-left: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.topRowMnu li a:hover {
  color: #ffb81c;
}
.topRowMnu li span {
  color: #fff;
}
.headerSotial {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.headerSotial p {
  font-size: 13px;
  color: var(--light-text);
  margin-left: 15px;
}
.headerSotial ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.headerSotial li {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}
.headerSotial a {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.headerSotial a img {
  width: 100%;
  height: 100%;
  filter: none;
  -webkit-filter: none;
}
.headerSotial a:hover {
  opacity: 0.7;
}
.headerRow {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.headerRow .hdrMnuSide {
  display: flex;
  align-items: center;
  justify-content: start;
}
.headerRow .hdrMnuSide .hderLogo {
  width: 130px;
  height: max-content;
  display: block;
  margin-left: 15px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.headerRow .hdrMnuSide .hderLogo img {
  width: 100%;
  height: auto;
  filter: none;
  -webkit-filter: none;
}
.headerRow .hdrMnuSide .hderLogo:hover {
  opacity: 0.8;
}
.headerRow .openMnu {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.headerRow .closeMnu {
  color: red;
  font-size: 25px;
  margin: 15px auto 0 15px;
  display: none;
  cursor: pointer;
  width: max-content;
}
.headerRow .hdrMnuBox .hdrMnuUL {
  display: flex;
  align-items: center;
  justify-content: start;
}
.headerRow .hdrMnuBox .hdrMnuLi {
  margin-left: 12px;
  position: relative;
  text-align: right;
}
.headerRow .hdrMnuBox .mnuSubLink,
.headerRow .hdrMnuBox .hdrMnuLink {
  font-size: 15px;
  color: var(--light-text);
  text-align: right;
  width: 100%;
  min-width: max-content;
  padding: 5px;
  cursor: pointer;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.headerRow .hdrMnuBox .mnuSubLink::after {
  position: absolute;
  display: none;
  content: "";
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #fff;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
.headerRow .hdrMnuBox .hdrMnuLink:hover,
.headerRow .hdrMnuBox .mnuSubLink.active {
  background: #fff;
  color: var(--color-three);
}
.headerRow .hdrMnuBox .mnuSubLink.active::after {
  display: block;
}
.headerRow .hdrMnuBox .hdrSubOne,
.headerRow .hdrMnuBox .hdrSubTwo {
  position: absolute;
  min-width: 170px;
  background: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: none;
  z-index: 2;
  box-shadow: 2px 2px 5px #0000005b;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.headerRow .hdrMnuBox .hdrSubOne {
  top: 42px;
}
.headerRow .hdrMnuBox .hdrSubTwo {
  top: 5px;
  left: -175px;
}
.headerRow .hdrMnuBox .haveSubLink ul {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.headerRow .hdrMnuBox .haveSubLink .subLiTwo:first-child,
.headerRow .hdrMnuBox .haveSubLink .subLiTwo:first-child a,
.headerRow .hdrMnuBox .haveSubLink .subLiTwo:first-child p,
.headerRow .hdrMnuBox .subLiThree:first-child,
.headerRow .hdrMnuBox .subLiThree:first-child a,
.headerRow .hdrMnuBox .subLiThree:first-child p {
  border-radius: 8px 8px 0 0 !important;
  -webkit-border-radius: 8px 8px 0 0 !important;
  -moz-border-radius: 8px 8px 0 0 !important;
  -ms-border-radius: 8px 8px 0 0 !important;
  -o-border-radius: 8px 8px 0 0 !important;
}
.headerRow .hdrMnuBox .haveSubLink .subLiTwo:last-child,
.headerRow .hdrMnuBox .haveSubLink .subLiTwo:last-child a,
.headerRow .hdrMnuBox .haveSubLink .subLiTwo:last-child p,
.headerRow .hdrMnuBox .subLiThree:last-child,
.headerRow .hdrMnuBox .subLiThree:last-child a,
.headerRow .hdrMnuBox .subLiThree:last-child p {
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}
.headerRow .hdrMnuBox .hdrSubOne li {
  position: relative;
}
.headerRow .hdrMnuBox .hdrSubOne a,
.headerRow .hdrMnuBox .hdrSubOne p {
  width: 100%;
  display: block;
  height: 100%;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-three);
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.headerRow .hdrMnuBox .hdrSubOne a.active,
.headerRow .hdrMnuBox .hdrSubOne p.active,
.headerRow .hdrMnuBox .hdrSubOne a:hover,
.headerRow .hdrMnuBox .hdrSubOne p:hover {
  background: var(--primary-color);
  color: var(--light-text);
}
.hdrBnnrSide {
  display: flex;
  align-items: center;
  justify-content: end;
}
.hdrBnnrSide .hdrBnnrBx {
  width: 400px;
  height: 60px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.hdrBnnrSide img {
  width: 100%;
  height: 100%;
  filter: none;
  -webkit-filter: none;
}
.hdrBnnrSide .hdrBnnrBx:hover {
  scale: 1.02;
}
.hdrBnnrSide .hdrSrchTheme {
  width: 36px;
  min-width: 36px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.btnSwitch,
.hdrBnnrSide .hdrSrchLnk {
  cursor: pointer;
  width: 100%;
  height: 36px;
  border-radius: 5px;
  background-color: rgb(33, 33, 33);
  border: 1px solid rgb(33, 33, 33);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  color: #fff;
}
.hdrBnnrSide .hdrSrchLnk {
  margin-bottom: 2px;
}
.btnSwitch:hover,
.hdrBnnrSide .hdrSrchLnk:hover {
  color: rgb(33, 33, 33);
  background: var(--light-text);
}
.hdrSrchLnk a{
	color:#fff;
}
.btnSwitch {
  margin-top: 2px;
}
.btnSwitch span {
  font-size: 22px;
  display: none;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.btnSwitch span.active {
  display: block;
}

/********************indexMain*******************/
.indexMain {
  padding: 15px 25px 50px 25px;
}
.filmIndex {
  background: #313131;
  padding: 15px 15px;
}
.indexMain .headline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  min-height: 58px;
  background: #fff;
  box-shadow: 0px 6px 12px 0px rgba(227, 231, 235, 0.35);
}
.indexMain .headline .hedlineTitl {
  display: flex;
  align-items: center;
  justify-content: start;
  background: #;
  position: relative;
  z-index: 0;
  padding: 10px 15px;
  height: 58px;
  width: 195px;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
}
.indexMain .headline .hedlineTitl img {
  position: absolute;
  right: 10px;
  z-index: 1;
  width: 98px;
  height: auto;
  opacity: 0.4;
}
.indexMain .headline .hedlineTitl p {
  z-index: 2;
  color: #fff;
  font-size: 15px;
  text-align: right;
  font-family: "IRANSans_Medium";
}
.indexMain .headline .hedlineTitl i {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 58px solid #fff;
  border-right: 28px solid transparent;
}
.indexMain .headline .hedlineTxt {
  width: calc(100% - 195px);
  height: 58px;
}
.indexMain .headline .hedlineTxt .swiper-container {
  width: 100%;
  height: 100%;
}
.indexMain .headline .hedlineTxt .swiper-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
}
.indexMain .headline .hedlineTxt .swiper-slide {
  width: 100%;
  padding: 5px 5px 5px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
}
.indexMain .headline .hedlineTxt p {
  font-size: 14px;
  font-family: "IRANSans_Medium";
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--dark-color);
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.indexMain .headline .hedlineTxt span {
  font-size: 13px;
  font-family: "IRANSans_Light";
  color: #b4b4b4;
  min-width: max-content;
  margin-right: 5px;
}
.indexMain .headline .hedlineTxt .swiper-slide:hover > p {
  color: #ffb81c;
}

/*******************sectionTop********************/
.sectionTop {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 20px;
}
.sectnTopBx {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 6px 12px 0px rgba(227, 231, 235, 0.35);
}
.sectionTop .secTopRight {
  width: 70%;
  padding-left: 15px;
}
.sectionTop .secTopRight .firstNewsSlidr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sectionTop .secTopRight .firstNewsBx {
  width: 60%;
  padding-left: 10px;
  direction: ltr;
  height: 380px;
}
.sectionTop .firstNewsBx .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.sectionTop .firstNewsBx .swiper-wrapper {
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.sectionTop .firstNewsBx .swiper-slide {
  background: var(--dark-color);
  display: block;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  position: relative;
  z-index: 0;
}
.sectionTop .firstNewsBx .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.sectionTop .firstNewsBx .visulNwsCvr {
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    0deg,
    rgb(49, 49, 49) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33 33 33) 0%,
    rgb(33 33 33 / 0%) 100%
  );
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  z-index: 2;
}
.sectionTop .firstNewsBx .visulNwsTxt {
  position: absolute;
  z-index: 3;
  padding: 20px 15px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: max-content;
  text-align: right;
  direction: rtl;
}
.sectionTop .firstNewsBx .visulNwsTxt p {
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--dark-color);
  background: #ffb81c;
  line-height: 1.2;
  padding: 5px;
  width: max-content;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.sectionTop .firstNewsBx .visulNwsTxt h2 {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
.sectionTop .firstNewsBx .swiper-button-prev,
.sectionTop .firstNewsBx .swiper-button-next {
  top: 35px;
  width: 25px;
  height: 25px;
  background: #ffb81c;
  border-radius: 40%;
  -webkit-border-radius: 40%;
  -moz-border-radius: 40%;
  -ms-border-radius: 40%;
  -o-border-radius: 40%;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .firstNewsBx .swiper-button-prev:after,
.sectionTop .firstNewsBx .swiper-button-next:after {
  font-size: 12px;
  color: #fff;
}
.sectionTop .firstNewsBx .swiper-button-next,
.sectionTop .firstNewsBx .swiper-container-rtl .swiper-button-prev {
  right: auto;
  left: 45px;
}
.sectionTop .firstNewsBx .swiper-button-prev:hover,
.sectionTop .firstNewsBx .swiper-button-next:hover {
  background: #ffae00;
}
.sectionTop .secTopRight .selectedNews {
  padding: 15px;
  position: relative;
  overflow: hidden;
}
.sectionTop .selectedNews .slctdNewsTtl {
  display: flex;
  align-items: center;
  justify-content: start;
}
.sectionTop .selectedNews .slctdNewsTtl img {
  margin-left: 5px;
  width: 17px;
  height: 14px;
}
.sectionTop .selectedNews .slctdNewsTtl h3 {
  font-size: 16px;
  font-family: "IRANSans_Bold";
  color: #000;
}
.sectionTop .selectedNews .swiper-container {
  width: 100%;
  height: 300px;
  margin-top: 35px;
}
.sectionTop .selectedNews .swiper-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
}
.sectionTop .selectedNews .swiper-slide {
  border-bottom: 1px solid #979696fb;
  width: 100%;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 5px;
}
.sectionTop .selectedNews .swiper-slide img {
  width: 9px;
  height: 10px;
  margin-left: 5px;
}
.sectionTop .selectedNews .swiper-slide h2 {
  color: var(--dark-color);
  font-size: 13px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sectionTop .selectedNews .swiper-slide h2:hover {
  color: #ffae00;
}
.sectionTop .discussionBx .swiper-button-prev,
.sectionTop .discussionBx .swiper-button-next,
.sectionTop .selectedNews .swiper-button-prev,
.sectionTop .selectedNews .swiper-button-next {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #f2f2f2;
  border-radius: 40%;
  -webkit-border-radius: 40%;
  -moz-border-radius: 40%;
  -ms-border-radius: 40%;
  -o-border-radius: 40%;
  left: 15px;
  right: auto;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .discussionBx .swiper-button-prev:after,
.sectionTop .discussionBx .swiper-button-next:after,
.sectionTop .selectedNews .swiper-button-prev:after,
.sectionTop .selectedNews .swiper-button-next:after {
  font-size: 12px;
  color: #b3b3b3;
}
.sectionTop .discussionBx .swiper-container-rtl .swiper-button-prev,
.sectionTop .selectedNews .swiper-container-rtl .swiper-button-prev {
  right: auto;
  left: 0;
}
.sectionTop .discussionBx .swiper-button-prev,
.sectionTop .selectedNews .swiper-button-prev {
  top: 60px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.sectionTop .discussionBx .swiper-button-next,
.sectionTop .selectedNews .swiper-button-next {
  top: 30px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.sectionTop .discussionBx .swiper-button-prev:hover,
.sectionTop .discussionBx .swiper-button-next:hover,
.sectionTop .selectedNews .swiper-button-prev:hover,
.sectionTop .selectedNews .swiper-button-next:hover {
  background: #ffb81c;
}
.sectionTop .discussionBx .swiper-button-prev:hover:after,
.sectionTop .discussionBx .swiper-button-next:hover:after,
.sectionTop .selectedNews .swiper-button-prev:hover:after,
.sectionTop .selectedNews .swiper-button-next:hover:after {
  color: #fff;
}

.sectionTop .secTopRight .difrntNews {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}
.sectionTop .difrntNews .newsArchive {
  width: 56%;
  padding: 10px;
}
.sectionTop .difrntNews .newsArchive li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  background-color: rgb(252, 252, 252);
  box-shadow: 0px 3px 0px 0px rgba(227, 231, 235, 0.004);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 14px;
  border-bottom: 3px solid #e3e7eb;
}
.sectionTop .difrntNews .newsArchive li:hover {
  box-shadow: 5px 5px 5px 5px rgba(227, 231, 235, 0.2);
}
.sectionTop .difrntNews .newsArchive img {
  width: 130px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.sectionTop .difrntNews .newsArchvInfo {
  padding-right: 15px;
  width: calc(100% - 143px);
  text-align: right;
}
.sectionTop .difrntNews .newsArchvInfo div {
  display: flex;
  align-items: center;
  justify-content: start;
}
.sectionTop .difrntNews .newsArchvInfo div i {
  width: 8px;
  height: 8px;
  display: block;
  margin-left: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sectionTop .difrntNews .newsArchvInfo div strong {
  display: block;
  margin-left: 12px;
  font-size: 14px;
  font-family: "IRANSans_Medium";
}
.sectionTop .difrntNews .newsArchvInfo div span {
  font-size: 12px;
  color: #606060;
  font-family: "IRANSans_Light";
  display: block;
}
.sectionTop .difrntNews .newsArchvInfo h2 {
  font-size: 13px;
  font-family: "IRANSans_Medium";
  line-height: 1.5;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sectionTop .difrntNews .newsArchvInfo a {
  margin: 5px auto 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #4467a3;
}
.sectionTop .dayNoteBx .dayNoteMore span,
.sectionTop .difrntNews .newsArchive a span {
  font-size: 13px;
  font-family: "IRANSans_Medium";
  margin-left: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .dayNoteBx .dayNoteMore i,
.sectionTop .difrntNews .newsArchive a i {
  font-size: 14px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .dayNoteBx .dayNoteMore:hover span,
.sectionTop .difrntNews .newsArchive a:hover span {
  color: #ffb81c;
}
.sectionTop .dayNoteBx .dayNoteMore:hover i,
.sectionTop .difrntNews .newsArchive a:hover i {
  color: #ffb81c;
  transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -o-transform: translateX(-2px);
}
.sectionTop .dayNoteBx .dayNoteMore,
.sectionTop .difrntNews .newsArchvLnk {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #777777;
  margin: 25px auto 10px 0;
}
.sectionTop .difrntNews .difrntLeft {
  width: 44%;
  padding-right: 10px;
}
.sectionTop .difrntLeft .dayNoteBx {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 15px;
}
.sectionTop .difrntLeft .dayNoteTtl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.sectionTop .difrntLeft .dayNoteTtl img {
  width: 17px;
  height: 14px;
  margin-left: 5px;
}
.sectionTop .difrntLeft .dayNoteTtl h3 {
  color: #000;
  font-family: "IRANSans_Light";
  font-size: 16px;
}
.sectionTop .dayNoteBx li {
  margin-bottom: 10px;
  width: 100%;
  height: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.sectionTop .dayNoteBx .dayNoteImg {
  width: 60px;
  height: 60px;
  padding: 2px;
  background-image: url(../img/Ellipse01.png);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sectionTop .dayNoteBx .dayNoteImg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.sectionTop .dayNoteBx .dayNoteInfo {
  padding-right: 10px;
  text-align: right;
}
.sectionTop .dayNoteBx .dayNoteInfo p {
  color: #7b7b7b;
  font-size: 10px;
}
.sectionTop .dayNoteBx .dayNoteInfo h2 {
  color: #000;
  font-size: 13px;
  font-family: "IRANSans_Medium";
  line-height: 1.5;
  margin-top: 5px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sectionTop .dayNoteBx .dayNoteInfo h2:hover {
  color: #2256a1;
}
.sectionTop .dayNoteBx .dayNoteInfo a {
  color: #b7b7b7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sectionTop .dayNoteBx .dayNoteInfo a span {
  font-size: 10px;
  margin-left: 5px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .dayNoteBx .dayNoteInfo a i {
  font-size: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .dayNoteBx .dayNoteInfo a:hover i {
  transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -o-transform: translateX(-2px);
  color: #ffb81c;
}
.sectionTop .dayNoteBx .dayNoteInfo a:hover span {
  color: #ffb81c;
}
.sectionTop .difrntLeft .discussionBx {
  width: 100%;
  height: 429px;
  padding: 15px;
  position: relative;
}
.sectionTop .discussionBx .swiper-container {
  width: 100%;
  height: 349px;
  margin-top: 35px;
}
.sectionTop .discussionBx .swiper-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
}
.sectionTop .discussionBx .swiper-slide {
  width: 100%;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 3px;
}
.sectionTop .discussionBx .swiper-slide img {
  width: 20%;
  background-color: #000;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .discussionBx .swiper-slide div {
  text-align: right;
  padding-right: 10px;
}
.sectionTop .discussionBx .swiper-slide p {
  color: #808080;
  font-size: 12px;
  font-family: "IRANSans_Light";
  margin-bottom: 3px;
}
.sectionTop .discussionBx .swiper-slide h2 {
  color: var(--dark-color);
  font-size: 13px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
  height: 42px;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .discussionBx .swiper-slide:hover img {
  filter: none;
  -webkit-filter: none;
}
.sectionTop .discussionBx .swiper-slide:hover h2 {
  color: #ffb81c;
}

.sectionTop .secTopLeft {
  width: 30%;
}
.secTopLeft .advrtsngBx {
  padding: 0 10px 10px 10px;
  margin-bottom: 20px;
}
.secTopLeft .advrtsngBx h3 {
  text-align: center;
  font-size: 16px;
  color: #fff;
  padding: 5px 10px;
  background: #;
  width: max-content;
  margin: 0 auto 15px auto;
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
}
.secTopLeft .advrtsngBx h3:hover {
  background-color: #feb638;
}
.secTopLeft .advrtsngBx a {
  width: 100%;
  height: 140px;
  display: block;
  margin-top: 10px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.secTopLeft .advrtsngBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secTopLeft .advrtsngBx a:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.sectionTop .lastNewsTtl {
  padding: 15px 10px;
  margin-bottom: 20px;
}
.sectionTop .lastNewsTtl div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.sectionTop .pressCountr .prssCntrTtl img,
.sectionTop .lastNewsTtl img {
  width: 17px;
  height: 14px;
  display: block;
}
.sectionTop .pressCountr .prssCntrTtl h3,
.sectionTop .lastNewsTtl h3 {
  margin-right: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-color);
}
.sectionTop .lastNewsTtl a {
  border-radius: 5px;
  border-right: 4px solid #;
  display: block;
  margin-bottom: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 0 12px;
}
.sectionTop .lastNewsTtl h2 {
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
  font-family: "IRANSans_Bold";
  color: var(--dark-color);
}
.sectionTop .lastNewsTtl h2:hover {
  color: var(--primary-color);
}
.sectionTop .pressCountr {
  padding: 8px 15px;
}
.sectionTop .pressCountr .prssCntrTtl {
  display: flex;
  align-items: center;
  justify-content: start;
}
.sectionTop .newspprSlidr .newspprSldrBx {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  z-index: 1;
}
.sectionTop .newspprSlidr .newspprSldrDiv {
  z-index: 2;
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 86px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: var(--primary-color);
}
.sectionTop .newspprSlidr .swiper-container {
  position: relative;
  width: 100%;
  height: 240px;
  padding: 10px;
  z-index: 3;
}
.sectionTop .newspprSlidr .swiper-wrapper {
  align-items: center;
}
.sectionTop .newspprSlidr .swiper-slide {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  border-radius: 12px;
}
.sectionTop .newspprSlidr .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #eee;
}
.sectionTop .pressCountr .newspprArchve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 2px;
  margin-top: 20px;
  border-radius: 5px;
  border-right: 4px solid var(--primary-color);
}
.sectionTop .pressCountr .newspprArchve h2 {
  text-align: right;
  font-size: 12px;
  line-height: 1;
  font-family: "IRANSans_Medium";
  color: var(--dark-color);
}
.sectionTop .pressCountr .newspprArchve a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--dark-color);
}
.sectionTop .pressCountr .newspprArchve a i {
  font-size: 12px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .pressCountr .newspprArchve a span {
  margin-left: 8px;
  font-family: "IRANSans_Light";
  font-size: 10px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.sectionTop .pressCountr .newspprArchve a:hover span {
  color: #ffb81c;
}
.sectionTop .pressCountr .newspprArchve a:hover i {
  transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -o-transform: translateX(-2px);
  color: #ffb81c;
}

/********************advrtsngSec*****************/
.advrtsngSec {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.advrtsngSec a {
  width: 39%;
  max-width: 450px;
}
.advrtsngSec a img {
  width: 100%;
  filter: none;
  -webkit-filter: none;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.advrtsngSec div {
  width: 180px;
  border: 1px dashed #313131;
  border-bottom: 0;
  position: relative;
  margin: 0 15px;
  text-align: center;
  color: #a0a0a0;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.advrtsngSec div span {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background: #fff;
  height: 12px;
  width: 80px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.advrtsngSec div p {
  font-size: 11px;
}
.advrtsngSec div strong {
  display: block;
  font-family: "IRANSans_Medium";
}
.advrtsngSec a:hover img {
  scale: 1.03;
}

/*******************relatdPostsSec***************/
.reltdPostsSec {
  padding: 20px 15px;
  margin-top: 20px;
}
.reltdPostsTtl {
  justify-content: space-between;
  margin-bottom: 25px;
}
.reltdPostsTtl,
.reltdPostsTtl h3,
.reltdPostsTtl a {
  display: flex;
  align-items: center;
}
.reltdPostsTtl h3 {
  justify-content: start;
}
.reltdPostsTtl h3 img {
  margin-left: 5px;
  width: 17px;
  height: 14px;
  display: block;
}
.reltdPostsTtl h3 i {
  margin-right: 8px;
  font-size: 16px;
  font-family: "IRANSans_Medium";
  color: var(--primary-color);
}
.reltdPostsTtl a {
  padding: 2px 5px;
  color: var(--dark-color);
}
.reltdPostsTtl a i {
  font-size: 14px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.reltdPostsTtl a span {
  font-size: 13px;
  margin-left: 8px;
  font-family: "IRANSans_Light";
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.reltdPostsTtl a:hover span {
  color: #ffb81c;
}
.reltdPostsTtl a:hover i {
  transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -o-transform: translateX(-2px);
  color: #ffb81c;
}
.reltdPostsSec .relatedSldr .swiper-container {
  position: relative;
  width: 100%;
}
.reltdPostsSec .relatedSldr .swiper-wrapper {
  align-items: center;
}
.reltdPostsSec .relatedSldr .swiper-slide {
  width: 185px;
  margin: 8px;
  display: block;
  transition: all 0.6s;
  background-color: #fff;
  box-shadow: 0px 4px 1px 0px rgba(227, 231, 235, 0.4);
  border-radius: 8px;
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.reltdPostsSec .relatedSldr .swiper-slide img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.reltdPostsSec .relatedSldr .swiper-slide h2 {
  font-size: 13px;
  font-family: "IRANSans_Medium";
  text-align: right;
  color: var(--dark-color);
  margin: 10px;
}
.reltdPostsSec .relatedSldr .swiper-slide:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.reltdPostsSec .relatedSldr .swiper-button-prev,
.reltdPostsSec .relatedSldr .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #b4b4b48a;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.reltdPostsSec .relatedSldr .swiper-button-prev:after,
.reltdPostsSec .relatedSldr .swiper-button-next:after {
  font-size: 17px;
  color: #fff;
}

/***********************othrNewsSec************/
.othrNewsSec {
  margin-top: 20px;
  padding: 20px 15px;
}
.othrNewsSec .othrNewsTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.othrNewsSec .othrNewsTop .othrNewsBx {
  width: 50%;
  height: 290px;
  display: block;
  z-index: 0;
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.othrNewsSec .othrNewsTop .othrNewsBx:first-child {
  margin-left: 8px;
}
.othrNewsSec .othrNewsTop .othrNewsBx:last-child {
  margin-right: 8px;
}
.othrNewsSec .othrNewsTop .othrNewsBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.othrNewsSec .othrNewsTop .othrNewsCvr {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;

  background-image: linear-gradient(
    0deg,
    rgb(49, 49, 49) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33, 33, 33) 0%,
    rgba(33, 33, 33, 0) 100%
  );
}
.othrNewsSec .othrNewsTop .othrNewsTxt {
  z-index: 3;
  position: absolute;
  padding: 3px 10px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  height: max-content;
  text-align: right;
  color: #fff;
  border-right: 5px solid #ffb81c;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.othrNewsSec .othrNewsTop .othrNewsTxt p {
  font-size: 12px;
  margin-bottom: 8px;
}
.othrNewsSec .othrNewsTop .othrNewsTxt h2 {
  font-size: 15px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
}
.othrNewsSec .othrNewsTop .othrNewsBx:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.othrNewsSec .othrNewsBtm {
  margin-top: 15px;
}
.othrNewsSec .othrNewsLst {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.othrNewsSec .othrNewsLst li {
  width: 24%;
  margin: 5px;
  padding: 10px;
  max-width: 280px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: rgb(252, 252, 252);
  box-shadow: 0px 3px 0px 0px rgba(227, 231, 235, 0.4);
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.othrNewsSec .othrNewsLst img {
  width: 100%;
  margin: auto;
  background-color: var(--dark-color);
  height: 160px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.othrNewsSec .othrNewsLst .othrNewsBdy {
  padding: 10px 2px 2px 2px;
}
.othrNewsSec .othrNewsLst .othrNewsBdy h2 {
  text-align: right;
  font-size: 15px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
  color: var(--dark-color);
}
.othrNewsSec .othrNewsLst .othrNewsBdy div {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.othrNewsSec .othrNewsLst .othrNewsBdy p {
  text-align: right;
  color: #606060;
  font-size: 12px;
}
.othrNewsSec .othrNewsLst .othrNewsBdy a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #4467a3;
  border-bottom: 3px solid #e3e7eb;
}
.othrNewsSec .othrNewsLst .othrNewsBdy a span {
  margin-left: 8px;
  font-size: 13px;
  display: block;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.othrNewsSec .othrNewsLst .othrNewsBdy a i {
  font-size: 14px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.othrNewsSec .othrNewsLst .othrNewsBdy a:hover span {
  color: #ffb81c;
}
.othrNewsSec .othrNewsLst .othrNewsBdy a:hover i {
  transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -o-transform: translateX(-2px);
  color: #ffb81c;
}
.othrNewsSec .othrNewsLst li:hover {
  box-shadow: 5px 5px 5px 5px rgba(227, 231, 235, 0.4);
}

/********************sprtNewsSec***************/
.sprtNewsSec {
  margin-top: 20px;
  padding: 20px 15px;
}
.sprtNewsSec .sprtNewsBdy {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.sprtNewsSec .sprtNewsTop {
  width: 40%;
  height: 362px;
  z-index: 0;
  position: relative;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.sprtNewsSec .sprtNewsTop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.sprtNewsSec .sprtNewsTop .sprtNewsCvr {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;

  background-image: linear-gradient(
    0deg,
    rgb(49, 49, 49) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33 33 33 / 0%) 100%
  );
}
.sprtNewsSec .sprtNewsTop .sprtNewsTxt {
  position: absolute;
  z-index: 3;
  padding: 3px 15px;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: max-content;
  text-align: right;
  color: #fff;
}
.sprtNewsSec .sprtNewsTop .sprtNewsTxt p {
  font-size: 12px;
}
.sprtNewsSec .sprtNewsTop .sprtNewsTxt h2 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
}
.sprtNewsSec .sprtNewsList .sprtNewsInfo div,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.sprtNewsSec .sprtNewsList .sprtNewsInfo p,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt div small {
  text-align: right;
  font-size: 12px;
  color: #a0a0a0;
}
.forBourse .forBorsList .forBorsInfo a,
.forBourse .forBourseBdy .bursTopBdy a,
.sprtNewsSec .sprtNewsList .sprtNewsInfo a,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt div a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #4467a3;
}
.lastSection .visulNwsTtl a span,
.forBourse .forBorsList .forBorsInfo a span,
.forBourse .forBourseBdy .bursTopBdy a span,
.sprtNewsSec .sprtNewsList .sprtNewsInfo span,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt a span {
  font-size: 13px;
  font-family: "IRANSans_Medium";
  margin-left: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.lastSection .visulNwsTtl a i,
.forBourse .forBorsList .forBorsInfo a i,
.forBourse .forBourseBdy .bursTopBdy a i,
.sprtNewsSec .sprtNewsList .sprtNewsInfo i,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt a i {
  font-size: 14px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.lastSection .visulNwsTtl a:hover span,
.forBourse .forBorsList .forBorsInfo a:hover span,
.forBourse .forBourseBdy .bursTopBdy a:hover span,
.sprtNewsSec .sprtNewsList .sprtNewsInfo a:hover span,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt a:hover span {
  color: #ffb81c;
}
.lastSection .visulNwsTtl a:hover i,
.forBourse .forBorsList .forBorsInfo a:hover i,
.forBourse .forBourseBdy .bursTopBdy a:hover i,
.sprtNewsSec .sprtNewsList .sprtNewsInfo a:hover i,
.sprtNewsSec .sprtNewsTop .sprtNewsTxt a:hover i {
  color: #ffb81c;
  transform: translateX(-2px);
  -webkit-transform: translateX(-2px);
  -moz-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  -o-transform: translateX(-2px);
}
.sprtNewsSec .sprtNewsList {
  width: 60%;
  padding-right: 10px;
}
.sprtNewsSec .sprtNewsList ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sprtNewsSec .sprtNewsList li {
  width: 48%;
  margin-bottom: 8px;
  margin-right: 8px;
  background-color: rgb(252, 252, 252);
  box-shadow: 0px 3px 0px 0px rgba(227, 231, 235, 0.004);
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-bottom: 3px solid #e3e7eb;
}
.sprtNewsSec .sprtNewsList li img {
  width: 110px;
  height: 95px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.sprtNewsSec .sprtNewsList .sprtNewsInfo {
  width: calc(100% - 110px);
  padding-right: 15px;
}
.sprtNewsSec .sprtNewsList .sprtNewsInfo h2 {
  font-size: 14px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
  text-align: right;
}
.sprtNewsSec .sprtNewsList .sprtNewsInfo h2:hover {
  color: #38609a;
}
/******************forBourse*******************/
.forBourse {
  margin-top: 20px;
  padding: 20px 15px;
}
.forBourse .forBourseBdy {
  display: flex;
  align-items: flex-start;
  justify-content: start;
}
.forBourse .forBourseBdy .forBoursTop {
  width: 45%;
  padding: 12px;
  border-radius: 8px;
  background-color: rgb(252, 252, 252);
  box-shadow: 0px 5px 0px 0px rgba(255, 184, 28, 0.6);
  /* border-bottom: 5px solid #ffb81c; */
}
.forBourse .forBourseBdy .forBoursTop img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.forBourse .forBourseBdy .bursTopBdy div {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 4px;
  margin-bottom: 5px;
}
.forBourse .forBourseBdy .bursTopBdy div i {
  display: block;
  background: #3c7bc3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.forBourse .forBourseBdy .bursTopBdy div strong {
  color: #3c7bc3;
  margin-left: 5px;
  margin-right: 2px;
}
.forBourse .forBourseBdy .bursTopBdy div small {
  color: #6060607e;
  display: block;
  margin-left: 4px;
  font-family: "IRANSans_UltraLight";
  font-size: 14px;
}
.forBourse .forBourseBdy .bursTopBdy div span {
  font-size: 12px;
  color: #606060;
  font-family: "IRANSans_Light";
}
.forBourse .forBourseBdy .bursTopBdy h2 {
  text-align: right;
  font-family: "IRANSans_Bold";
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-color);
}
.forBourse .forBourseBdy .bursTopBdy p {
  color: #646464;
  font-size: 12px;
  font-family: "IRANSans_Light";
  text-align: right;
  margin-top: 8px;
}
.forBourse .forBourseBdy .bursTopBdy a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 10px auto 5px auto;
}
.forBourse .forBourseBdy .forBorsList {
  width: 55%;
  padding-right: 15px;
}
.forBourse .forBourseBdy .forBorsList li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  background-color: rgb(252, 252, 252);
  box-shadow: 0px 3px 0px 0px rgba(227, 231, 235, 0.004);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 10px;
  border-bottom: 3px solid #e3e7eb;
}
.forBourse .forBourseBdy .forBorsList img {
  width: 170px;
  height: 106px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.forBourse .forBorsList .forBorsInfo {
  padding-right: 15px;
  width: calc(100% - 170px);
  text-align: right;
}
.forBourse .forBorsList .forBorsInfo div {
  display: flex;
  align-items: center;
  justify-content: start;
}
.forBourse .forBorsList .forBorsInfo div i {
  width: 8px;
  height: 8px;
  display: block;
  margin-left: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.forBourse .forBorsList .forBorsInfo div strong {
  display: block;
  margin-left: 12px;
  font-size: 14px;
  font-family: "IRANSans_Medium";
}
.sectionTop .difrntNews .newsArchvInfo .redStatus i,
.forBourse .forBorsList .forBorsInfo .redStatus i {
  background: #de0e28;
}
.sectionTop .difrntNews .newsArchvInfo .redStatus strong,
.forBourse .forBorsList .forBorsInfo .redStatus strong {
  color: #de0e28;
}
.sectionTop .difrntNews .newsArchvInfo .prpulStatus i,
.forBourse .forBorsList .forBorsInfo .prpulStatus i {
  background: #8f3cc3;
}
.sectionTop .difrntNews .newsArchvInfo .prpulStatus strong,
.forBourse .forBorsList .forBorsInfo .prpulStatus strong {
  color: #8f3cc3;
}
.sectionTop .difrntNews .newsArchvInfo .blueStatus i,
.forBourse .forBorsList .forBorsInfo .blueStatus i {
  background: #3c7bc3;
}
.sectionTop .difrntNews .newsArchvInfo .blueStatus strong,
.forBourse .forBorsList .forBorsInfo .blueStatus strong {
  color: #3c7bc3;
}
.forBourse .forBorsList .forBorsInfo div span {
  font-size: 12px;
  color: #606060;
  font-family: "IRANSans_Light";
  display: block;
}
.forBourse .forBorsList .forBorsInfo h2 {
  font-size: 14px;
  font-family: "IRANSans_Medium";
  line-height: 1.5;
  margin-top: 5px;
}
.forBourse .forBorsList .forBorsInfo a {
  margin: 5px auto 0 0;
}

/*****************lastSection******************/
.lastSection {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}
.lastSection .visualNewsBx,
.lastSection .videoGalryBx {
  border-radius: 5px;
  background: var(--dark-color);
  box-shadow: 0px 6px 12px 0px rgba(227, 231, 235, 0.35);
  padding: 10px;
}
.lastSection .visualNewsBx {
  width: 53.5%;
  margin-left: 1.5%;
}
.lastSection .visulNwsTtl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.lastSection .visulNwsTtl h3 {
  display: flex;
  align-items: center;
  justify-content: start;
}
.lastSection .visulNwsTtl h3 img {
  width: 17px;
  height: 14px;
  margin-left: 5px;
}
.lastSection .visulNwsTtl h3 i {
  font-size: 16px;
  font-family: "IRANSans_UltraLight";
  color: #fff;
}
.lastSection .visulNwsTtl a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.lastSection .visulNwsTtl a span,
.lastSection .visulNwsTtl a i {
  color: #fff;
}
.lastSection .visualNewsBx .visulNwsBdy {
  width: 100%;
  direction: ltr;
  height: 423px;
}
.lastSection .visulNwsBdy .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.lastSection .visulNwsBdy .swiper-wrapper {
  align-items: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.lastSection .visulNwsBdy .swiper-slide {
  background: var(--dark-color);
  display: block;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  position: relative;
  z-index: 0;
}
.lastSection .visulNwsBdy .AdSwiper2 .swiper-slide {
  border: 0px solid #fff;
}
.lastSection .visulNwsBdy .AdSwiper2 {
  height: 76%;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 18px;
}
.lastSection .visulNwsBdy .AdSwiper1 {
  height: 24%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 5px 10px 5px;
}
.lastSection .visulNwsBdy .AdSwiper1 .swiper-slide {
  width: 24%;
  height: 100%;
}
.lastSection .visulNwsBdy .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.lastSection .visulNwsBdy .visulNwsCvr {
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(
    2deg,
    rgb(49, 49, 49) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33 33 33 / 22%) 100%
  );
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  z-index: 2;
}
.lastSection .visulNwsBdy .visulNwsTxt {
  position: absolute;
  border-right: 3px solid #ffb81c;
  z-index: 3;
  padding: 3px 10px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  height: max-content;
  text-align: right;
  color: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  direction: rtl;
}
.lastSection .visulNwsBdy .visulNwsTxt p {
  font-size: 12px;
  margin-bottom: 8px;
}
.lastSection .visulNwsBdy .visulNwsTxt h2 {
  font-size: 14px;
  line-height: 1.5;
}
.lastSection .visulNwsBdy .AdSwiper1 .visulNwsTxt {
  padding: 1px 5px;
  bottom: 9px;
}
.lastSection .visulNwsBdy .AdSwiper1 .visulNwsTxt p {
  font-size: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lastSection .visulNwsBdy .AdSwiper1 .visulNwsTxt h2 {
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lastSection .visulNwsBdy .swiper-button-prev,
.lastSection .visulNwsBdy .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #b4b4b4d3;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.lastSection .visulNwsBdy .swiper-button-prev:after,
.lastSection .visulNwsBdy .swiper-button-next:after {
  font-size: 17px;
  color: #fff;
}

.lastSection .videoGalryBx {
  width: 45%;
}
.lastSection .videoGlryBdy .topVideoBx {
  position: relative;
  z-index: 0;
  max-height: 290px;
}
.lastSection .videoGlryBdy .topVideoBx .video-js {
  z-index: 1;
  height: 290px;
  max-height: 290px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.lastSection .videoGlryBdy .topVideoBx .my-player-1-dimensions.vjs-fluid {
  padding-top: 0;
}
.lastSection .topVideoBx .video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.lastSection
  .topVideoBx
  .video-js
  .vjs-big-play-button
  .vjs-icon-placeholder:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.lastSection .topVideoBx .topVideoTxt {
  position: absolute;
  left: 0;
  z-index: 2;
  background: linear-gradient(
    336deg,
    rgb(49, 49, 49) 0%,
    rgb(33, 33, 33) 0%,
    rgb(33, 33, 33) 0%,
    rgba(33, 33, 33, 0) 100%
  );
  width: 100%;
  height: max-content;
  bottom: 0;
  padding: 30px 15px 20px 15px;
  color: #fff;
  text-align: right;
}
.lastSection .topVideoBx .topVideoTxt.hide {
  display: none;
  z-index: -1;
  opacity: 0;
}
.lastSection .topVideoBx .topVideoTxt p {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 5px;
}
.lastSection .topVideoBx .topVideoTxt p span {
  font-size: 20px;
}
.lastSection .topVideoBx .topVideoTxt p i {
  margin-right: 5px;
  font-size: 12px;
  font-family: "IRANSans_Bold";
}
.lastSection .topVideoBx .topVideoTxt h2 {
  font-size: 13px;
  line-height: 1.5;
  font-family: "IRANSans_Medium";
}
.lastSection .vidGlryList ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 15px;
  flex-wrap: wrap;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
  height: 120px;
  width: 100%;
}
.lastSection .vidGlryList ul::-webkit-scrollbar {
  width: 10px;
  height: 7px;
  background-color: #282828;
  border-radius: 1px;
  z-index: 1;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}
.lastSection .vidGlryList ul::-webkit-scrollbar-thumb {
  border-radius: 1px;
  background-color: #ffb81c;
  -webkit-box-shadow: inset 1px 1px 0 #ffb81c, inset 0 -1px 0 #ffb81c;
  z-index: 2;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}
.lastSection .vidGlryList ul .videoListCvr {
  position: sticky;
  bottom: -2px;
  left: 0;
  width: 100%;
  border-radius: 4px;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(49, 49, 49) 0%,
    rgb(49, 49, 49) 0%,
    rgb(0, 0, 0) 0%,
    rgba(49, 49, 49, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(49, 49, 49) 0%,
    rgb(49, 49, 49) 0%,
    rgb(0, 0, 0) 0%,
    rgba(49, 49, 49, 0) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(49, 49, 49) 0%,
    rgb(49, 49, 49) 0%,
    rgb(0, 0, 0) 0%,
    rgba(49, 49, 49, 0) 100%
  );
  height: 53px;
}
.lastSection .vidGlryList li {
  width: 46%;
  margin-bottom: 10px;
}
.lastSection .vidGlryList li:nth-child(2n) {
  margin-left: 5px;
}
.lastSection .vidGlryList li:nth-child(2n + 1) {
  margin-right: 5px;
}
.lastSection .vidGlryList li a {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: start;
  background: var(--dark-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
.lastSection .vidGlryList .numberBx {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 100%;
  border-radius: 0 8px 8px 0;
  -webkit-border-radius: 0 8px 8px 0;
  -moz-border-radius: 0 8px 8px 0;
  -ms-border-radius: 0 8px 8px 0;
  -o-border-radius: 0 8px 8px 0;
  background-color: rgba(60, 60, 60, 0.4);
  color: #fff;
  font-size: 18px;
  font-family: "IRANSans_Medium";
}
.lastSection .vidGlryList .videoLstImg {
  background-color: rgb(14, 14, 14);
  width: 74px;
  min-width: 74px;
  height: 55px;
  position: relative;
  border-radius: 8px 0 0 8px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
}
.lastSection .vidGlryList .videoLstImg img {
  width: 100%;
  height: 100%;
  border-radius: 8px 0 0 8px;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  -ms-border-radius: 8px 0 0 8px;
  -o-border-radius: 8px 0 0 8px;
}
.lastSection .vidGlryList .videoLstImg i {
  position: absolute;
  color: #cbcbcbbf;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.lastSection .vidGlryList .videoLstInfo {
  padding: 2px 8px 2px 2px;
  overflow: hidden;
  text-align: right;
  color: #fff;
  width: calc(100% - 102px);
}
.lastSection .vidGlryList .videoLstInfo span {
  font-size: 8px;
  font-family: "IRANSans_Light";
}
.lastSection .vidGlryList .videoLstInfo h2 {
  font-size: 9px;
  font-family: "IRANSans_Medium";
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lastSection .vidGlryList .videoLstInfo p {
  padding: 2px 5px;
  line-height: 1;
  background: var(--primary-color);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 11px;
  font-family: "IRANSans_Light";
  width: max-content;
  margin-bottom: 2px;
}
.lastSection .vidGlryList li a:hover {
  background: var(--primary-color);
}

/*******************footer********************/
footer {
  padding: 20px 25px 30px 25px;
  background: var(--dark-color);
  border-radius: 0 0 20px 20px;
  -webkit-border-radius: 0 0 20px 20px;
  -moz-border-radius: 0 0 20px 20px;
  -ms-border-radius: 0 0 20px 20px;
  -o-border-radius: 0 0 20px 20px;
}
footer .footerRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .fotrAbout {
  margin-left: 15px;
}
footer .fotrAbout a {
  display: block;
  width: 120px;
  height: max-content;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
footer .fotrAbout a img {
  width: 100%;
  height: auto;
  filter: none;
  -webkit-filter: none;
}
footer .fotrAbout p {
  text-align: right;
  font-size: 12px;
  color: var(--low-opacity);
  margin-top: 10px;
  font-family: "IRANSans_Light";
  max-width: 300px;
}
footer .fotrAbout a:hover {
  opacity: 0.8;
}
footer .ftrQuikAccss {
  text-align: right;
  margin-left: 15px;
}
footer .ftrPrmisins strong,
footer .fortSocial strong,
footer .ftrQuikAccss strong {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}
footer .ftrQuikAccss div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .ftrQuikAccss ul {
  margin-left: 15px;
  margin-top: 15px;
}
footer .ftrQuikAccss li {
  margin-bottom: 6px;
}
footer .ftrQuikAccss a {
  font-size: 12px;
  color: var(--low-opacity);
  font-family: "IRANSans_Light";
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  min-width: max-content;
  display: block;
}
footer .ftrQuikAccss a:hover {
  color: #fff;
}
footer .ftrPrmisins {
  margin-left: 15px;
  width: 250px;
}
footer .ftrPrmisins div {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  margin-top: 15px;
}
footer .ftrPrmisins a {
  width: 78px;
  height: 96px;
  display: block;
  margin-left: 10px;
  opacity: 0.7;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
footer .ftrPrmisins img {
  width: 100%;
  height: 150px;
  padding: 3px;
}
footer .ftrPrmisins a:hover {
  opacity: 1;
}
footer .fortSocial {
  text-align: right;
}
footer .fortSocial p {
  font-size: 12px;
  color: var(--low-opacity);
  margin-top: 10px;
  font-family: "IRANSans_Light";
}
footer .fortSocial ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 18px;
}
footer .fortSocial li {
  border-radius: 5px;
  width: 26px;
  height: 26px;
  margin-right: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .fortSocial li a {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

footer .fortSocial li img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  filter: none;
  -webkit-filter: none;
}
footer .fortSocial li a:hover {
  opacity: 0.7;
}
footer .ftrBtmRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid #ffffff80;
  padding: 20px 0 15px 0;
}
footer .ftrBtmRow div {
  text-align: right;
  color: #fff;
}
footer .ftrBtmRow span {
  display: block;
  font-size: 12px;
  font-family: "IRANSans_Light";
}
footer .ftrBtmRow p {
  font-size: 12px;
  margin-top: 10px;
}
footer .ftrBtmRow p:hover {
  color: #feb638;
}
footer .ftrBtmRow .eng_logo {
  width: 220px;
  height: max-content;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
}
footer .ftrBtmRow .eng_logo img {
  width: 100%;
  height: auto;
  filter: none;
  -webkit-filter: none;
}
footer .ftrBtmRow .eng_logo:hover {
  opacity: 0.8;
}

/*******************darkTheme******************************/
.darkTheme .indexMain .single_boxs {
  background: var(--dark-color);
}
.darkTheme .short_desck_body {
  background: var(--dark-color);
}
.darkTheme .ads_bt_box {
  background: var(--dark-color);
}
.darkTheme .tarlanweb_center {
  background: var(--dark-color);
}
.darkTheme .indexMain .headline,
.darkTheme .sectnTopBx {
  background: #000;
  box-shadow: 0px 6px 12px 0px rgb(0 0 0 / 83%);
}
.darkTheme .headerRow .hdrMnuBox .hdrSubOne,
.darkTheme .headerRow .hdrMnuBox .hdrSubTwo,
.darkTheme .forBourse .forBourseBdy .forBorsList li,
.darkTheme .sprtNewsSec .sprtNewsList li,
.darkTheme .othrNewsSec .othrNewsLst li,
.darkTheme .reltdPostsSec .relatedSldr .swiper-slide,
.darkTheme .sectionTop .difrntNews .newsArchive li {
  background: var(--dark-color);
  box-shadow: 0px 6px 12px 0px rgb(0 0 0 / 83%);
}
.darkTheme .forBourse .forBourseBdy .forBoursTop {
  background: var(--dark-color);
}
.darkTheme .advrtsngSec div span {
  background: #000;
}
.darkTheme .lastSection .visualNewsBx,
.darkTheme .lastSection .videoGalryBx {
  box-shadow: 0px 6px 12px 0px rgb(0 0 0 / 83%);
}
.darkTheme .indexMain .headline .hedlineTitl i {
  border-top-color: #000;
}
.darkTheme .sectionTop .discussionBx .swiper-button-prev,
.darkTheme .sectionTop .discussionBx .swiper-button-next,
.darkTheme .sectionTop .selectedNews .swiper-button-prev,
.darkTheme .sectionTop .selectedNews .swiper-button-next {
  background: var(--color-three);
}
.darkTheme .advrtsngSec div {
  border-color: var(--light-text);
}
.darkTheme .forBourse .forBourseBdy .bursTopBdy p {
  color: var(--light-text);
}
.darkTheme .sectionTop .discussionBx .swiper-slide h2,
.darkTheme .headerRow .hdrMnuBox .hdrSubOne a,
.darkTheme .headerRow .hdrMnuBox .hdrSubOne p,
.darkTheme .sectionTop .difrntLeft .dayNoteTtl h3,
.darkTheme .sectionTop .difrntLeft .dayNoteTtl h3,
.darkTheme .sectionTop .pressCountr .prssCntrTtl h3,
.darkTheme .sectionTop .lastNewsTtl h3,
.darkTheme .forBourse .forBorsList .forBorsInfo h2,
.darkTheme .sprtNewsSec .sprtNewsList .sprtNewsInfo h2,
.darkTheme .othrNewsSec .othrNewsLst .othrNewsBdy h2,
.darkTheme .reltdPostsTtl a,
.darkTheme .reltdPostsSec .relatedSldr .swiper-slide h2,
.darkTheme .sectionTop .pressCountr .newspprArchve a,
.darkTheme .sectionTop .pressCountr .newspprArchve h2,
.darkTheme .sectionTop .lastNewsTtl h2,
.darkTheme .sectionTop .lastNewsTtl h2,
.darkTheme .sectionTop .dayNoteBx .dayNoteInfo h2,
.darkTheme .sectionTop .difrntNews .newsArchvInfo h2,
.darkTheme .sectionTop .selectedNews .swiper-slide h2,
.darkTheme .forBourse .forBourseBdy .bursTopBdy h2,
.darkTheme .sectionTop .selectedNews .slctdNewsTtl h3,
.darkTheme .news_article_body p,
.darkTheme .articleHeader h1,
.darkTheme .articleHeader ul li span,
.darkTheme .hed_title,
.darkTheme .short_desck_body p,
.darkTheme  .reltdPostsTtl h3 i,
.darkTheme .indexMain .headline .hedlineTxt p {
  color: #fff;
}
.darkTheme .headerRow .hdrMnuBox .hdrMnuLink:hover,
.darkTheme .headerRow .hdrMnuBox .mnuSubLink.active {
  background: var(--dark-color);
  color: #fff;
}
.darkTheme .headerRow .hdrMnuBox .mnuSubLink::after {
  border-top-color: #000;
}
.darkTheme footer {
  background: #000;
}
/******************media*********************/
@media (max-width: 1199px) {
  .headerRow .hdrMnuSide .hderLogo {
    width: 110px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .headerRow .hdrMnuBox .mnuSubLink,
  .headerRow .hdrMnuBox .hdrMnuLink {
    font-size: 14px;
  }
  .hdrBnnrSide .hdrBnnrBx {
    width: 300px;
  }
  .indexMain .headline .hedlineTxt p {
    font-size: 13px;
  }
  .advrtsngSec a {
    width: 37%;
  }
  .othrNewsSec .othrNewsLst li {
    margin: 4px;
  }
  .sprtNewsSec .sprtNewsList li img {
    width: 98px;
  }
  .sprtNewsSec .sprtNewsList .sprtNewsInfo h2 {
    height: 44px;
    overflow: hidden;
  }
  .sprtNewsSec .sprtNewsList .sprtNewsInfo div {
    margin-top: 3px;
    flex-direction: column;
    align-items: flex-start;
  }
  .sprtNewsSec .sprtNewsList .sprtNewsInfo p {
    margin-bottom: 5px;
  }
  .forBourse .forBorsList .forBorsInfo h2 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .indexMain .headline .hedlineTxt {
    padding: 5px;
  }
  footer .footerRow {
    flex-wrap: wrap;
  }
  footer .ftrQuikAccss,
  footer .fotrAbout,
  footer .fortSocial,
  footer .ftrPrmisins {
    margin-bottom: 30px;
  }
  .sectionTop {
    flex-direction: column;
  }
  .sectionTop .secTopRight {
    width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .sectionTop .secTopLeft {
    width: 100%;
  }
  .headerRow {
    flex-direction: column;
  }
  .hdrBnnrSide,
  .headerRow .hdrMnuSide {
    justify-content: space-between;
    width: 100%;
  }
  .hdrBnnrSide {
    margin-top: 15px;
  }
  .othrNewsSec .othrNewsLst {
    flex-wrap: nowrap;
    justify-content: start;
    overflow: auto;
    padding-bottom: 15px;
  }
  .othrNewsSec .othrNewsLst li {
    min-width: 210px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .headerRow .hdrMnuBox .hdrSubTwo {
    left: auto;
    right: -175px;
  }
  .lastSection,
  .forBourse .forBourseBdy,
  .sprtNewsSec .sprtNewsBdy {
    flex-direction: column;
  }
  .lastSection .videoGalryBx,
  .forBourse .forBourseBdy .forBoursTop,
  .sprtNewsSec .sprtNewsTop {
    width: 100%;
  }
  .forBourse .forBourseBdy .forBorsList,
  .sprtNewsSec .sprtNewsList {
    width: 100%;
    padding-right: 0;
    padding-top: 20px;
  }
  .lastSection .visualNewsBx {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .othrNewsSec .othrNewsTop .othrNewsBx {
    height: 250px;
  }
  .indexMain .headline .hedlineTxt span {
    font-size: 12px;
  }
  .headerRow .hdrMnuBox .hdrMnuLi {
    margin-left: 0;
    margin-right: 12px;
  }
  .advrtsngSec div {
    width: 140px;
    padding: 8px 5px;
    margin: 0 10px;
  }
  .advrtsngSec a {
    width: 36%;
  }
}
@media (max-width: 767px) {
  .headerRow .hdrMnuBox .hdrMnuLi {
    margin-left: 0;
  }
  .indexMain {
    padding: 15px 15px 50px 15px;
  }
  .headerRow .closeMnu,
  .headerRow .openMnu {
    display: block;
  }
  .headerRow .hdrMnuBox {
    position: fixed;
    height: 100%;
    z-index: 10;
    width: 230px;
    right: -230px;
    top: 0;
    background: #fff;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
  }
  .headerRow .hdrMnuBox.open {
    right: 0;
    box-shadow: -20px 9px 17px 9px #0000006c;
  }
  .headerRow .hdrMnuBox .hdrMnuUL {
    display: block;
    margin-top: 30px;
  }
  .headerRow .hdrMnuBox .mnuSubLink,
  .headerRow .hdrMnuBox .hdrMnuLink {
    color: var(--dark-color);
    padding: 8px 15px;
    width: 100%;
    display: block;
  }
  .headerRow .hdrMnuBox .hdrSubOne,
  .headerRow .hdrMnuBox .hdrSubTwo {
    position: relative;
    top: 0;
    right: 0;
    left: auto;
    box-shadow: none;
    padding-right: 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  .headerRow .hdrMnuBox .hdrSubOne {
    height: 0;
    display: block;
    opacity: 0;
    background: #f1f1f1;
  }
  .headerRow .hdrMnuBox .hdrSubTwo {
    background: #d9d9d9;
    height: 0;
    display: block;
    opacity: 0;
    z-index: 3;
  }
  .headerRow .hdrMnuBox .hdrSubTwo.open,
  .headerRow .hdrMnuBox .hdrSubOne.open {
    height: max-content;
    opacity: 1;
  }
  .headerRow .hdrMnuBox .hdrSubOne a.active,
  .headerRow .hdrMnuBox .hdrSubOne p.active,
  .headerRow .hdrMnuBox .hdrSubOne a:hover,
  .headerRow .hdrMnuBox .hdrSubOne p:hover {
    background: transparent;
    color: var(--primary-color);
  }
  .advrtsngSec div {
    margin: 15px auto;
  }
  .sprtNewsSec .sprtNewsList li {
    width: 100%;
    margin-right: 0;
  }
  .lastSection,
  .forBourse .forBourseBdy,
  .advrtsngSec,
  .sprtNewsSec .sprtNewsBdy,
  .othrNewsSec .othrNewsTop,
  .sectionTop .secTopRight .difrntNews,
  .sectionTop .secTopRight .firstNewsSlidr {
    flex-direction: column;
  }
  .sectionTop .secTopRight .firstNewsBx {
    width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .lastSection .videoGalryBx,
  .forBourse .forBourseBdy .forBoursTop,
  .advrtsngSec a,
  .sprtNewsSec .sprtNewsTop,
  .othrNewsSec .othrNewsTop .othrNewsBx,
  .sectionTop .difrntNews .newsArchive,
  .sectionTop .secTopRight .selectedNews {
    width: 100%;
  }
  .forBourse .forBourseBdy .forBorsList,
  .sprtNewsSec .sprtNewsList,
  .sectionTop .difrntNews .difrntLeft {
    width: 100%;
    padding-right: 0;
    padding-top: 20px;
  }
  .lastSection .visualNewsBx {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .othrNewsSec .othrNewsTop .othrNewsBx:first-child {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .othrNewsSec .othrNewsTop .othrNewsBx:last-child {
    margin-right: 0;
  }
  .headerSotial ul {
    display: none;
  }
  .headerSotial p {
    margin-left: 0;
  }
  .indexMain .headline .hedlineTxt span {
    font-size: 11px;
  }
  .indexBox {
    margin: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  .editContainer {
    padding-left: 0;
    padding-right: 0;
  }
  .editRow {
    margin-left: 0;
    margin-right: 0;
  }
  .editCol {
    padding-left: 0;
    padding-right: 0;
  }
  .topRow,
  footer {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .indexMain .headline .hedlineTitl {
    width: 180px;
  }
  .indexMain .headline .hedlineTitl p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .lastSection .visualNewsBx .visulNwsBdy {
    height: 372px;
  }
  .sprtNewsSec .sprtNewsTop {
    height: 250px;
  }
  .othrNewsSec .othrNewsTop .othrNewsBx {
    height: 220px;
  }
  .sprtNewsSec .sprtNewsTop .sprtNewsTxt h2,
  .othrNewsSec .othrNewsTop .othrNewsTxt h2 {
    height: 43px;
    overflow: hidden;
  }
  .forBourse .forBourseBdy .forBorsList li,
  .sprtNewsSec .sprtNewsList li,
  .sectionTop .difrntNews .newsArchive li {
    flex-direction: column;
  }
  .forBourse .forBourseBdy .forBorsList img,
  .sprtNewsSec .sprtNewsList li img,
  .sectionTop .difrntNews .newsArchive img {
    width: 100%;
  }
  .forBourse .forBorsList .forBorsInfo,
  .sprtNewsSec .sprtNewsList .sprtNewsInfo,
  .sectionTop .difrntNews .newsArchvInfo {
    width: 100%;
    padding-right: 0;
    padding-top: 10px;
  }
  .sectionTop .secTopRight .firstNewsBx {
    height: 300px;
  }
  .headerSotial p,
  .indexMain .headline {
    display: none;
  }
  .lastSection .vidGlryList li {
    width: 100%;
    margin-right: 0;
  }
  footer .ftrBtmRow {
    flex-direction: column;
  }
  footer .fortSocial ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer .fortSocial li {
    margin: 0 0 8px 8px;
  }
  footer .ftrBtmRow div {
    text-align: center;
  }
  footer .ftrBtmRow .eng_logo {
    margin-top: 20px;
  }
}

.center_404{text-align: center;}
