* {
  font-family: Arial !important;
}



/****************HomeSlider******************/

@media (min-width:768px) {
  .HomeSlider video {
    height: 100vh;
    object-fit: cover;
  }

  .HomeSlider {
    max-height: 100vh;
  }
}

/************************Blog Page***********************/
.Blog-List :where(.Blog-Item .Item-Info) {
  bottom: 0;
}

.Blog-List :where(.Blog-Item h2, .Blog-Item .See-More) {
  bottom: 1em;
  right: 2em;
}

.Blog-List .Blog-Item h2 {
  transition: all ease-in-out 0.3s;
}

.Blog-List .Blog-Item .See-More {
  opacity: 0;
  transition: all ease-in-out 0.3s;
}

.Blog-List .Blog-Item:hover .Plus {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.Blog-List .Blog-Item:hover h2 {
  opacity: 0;
}

.Blog-List .Blog-Item:hover .See-More {
  opacity: 1;

}

.rtl .Blog-List .Blog-Item .en-title {
  display: none;
}

.rtl .Blog-List .Blog-Item .fa-title {
  display: block;
}

.Blog-List .Blog-Item .en-title {
  display: block;
}

.Blog-List .Blog-Item .fa-title {
  display: none;
}

.Blog-List .Blog-Item .Plus {
  top: 0;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
}

.desc-article h2 {
  font-size: 1.5rem;
}

/*---------------------FAQ Accordion ---------------------*/

.FaqPages .accordion-second .item {
  list-style-type: none;
  counter-increment: item;
  transition: all ease-in-out 300ms;
  border-bottom: 0.1em solid var(--Lsilver);
  gap: 1rem;
}

.FaqPages .accordion-second .item:before {
  content: counter(item, decimal-leading-zero);
  display: inline-block;
  font-family: "Indie Flower", cursive;
  border-bottom: 0.1em solid var(--Black);
  opacity: 0.5;
  padding: 0 0.5rem;
  height: 100%;
  line-height: 4;
}

.FaqPages .accordion-second .item:after {
  content: '';
  width: 0%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  display: flex;
  border-bottom: 0.1em solid var(--Black);
  opacity: 0.5;
  transition: all ease-in-out 0.4s;
}

.FaqPages .accordion-second .item:where(:hover, :has(+.answer:not(.hideanswer))):after {
  content: '';
  width: 100%;
}

.rtl .FaqPages .accordion-second .item svg {
  transition: all ease-in-out 0.3s;
  transform: rotate(0);

}

.FaqPages .accordion-second .item svg {
  transition: all ease-in-out 0.3s;
  transform: rotate(180deg);
}

.rtl .FaqPages .accordion-second .item:has(+.answer:not(.hideanswer)) svg {
  transform: rotate(-90deg);
  display: block
}

.FaqPages .accordion-second .item:has(+.answer:not(.hideanswer)) svg {
  transform: rotate(270deg);
  display: block
}

.FaqPages .accordion-second .answer.hideanswer {
  max-height: 0;
  transition: all ease-in-out 0.3s;
  padding: 0 1em;
}

.FaqPages .accordion-second .answer {
  max-height: 14em;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1em;
}

.FaqPages .accordion-second .answer {
  border: 0.1rem solid var(--LSilver);
}

.FaqPages .accordion-second :where(h1, h2, h3, h4, h5, h6, strong) {
  font-size: 1.05rem;
  font-weight: normal;
  flex: 1 0 auto;
}

.BoxDetail,
.inner-article-blog {
  padding: 2rem;
  border: 0.1rem solid var(--Lsilver);
  border-left: 0.2rem solid var(--accent-color);
}
.rtl .BoxDetail,
.rtl .inner-article-blog {
  padding: 1rem;
  border: 0.1rem solid var(--Lsilver);
  border-right: 0.2rem solid var(--accent-color);
}

.meta-detail-blog {
  background-color: #f1f1f0;
}

.BoxDetail img {
  padding: 0.5rem;
  background-color: var(--Lsilver);

}

.DetailArticleBlog p {
  margin: 0;
}

/****************Pagetion**************/
.article_pager {
  display: inline-flex;
  padding: 0.8rem 2rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin: 3em 0;
}

.article_pager .page {
  padding: 0.5em;
  background: var(--Lsilver);
  border-radius: var(--b-radius);
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Black);
}

.article_pager .page.active {
  background: var(--Black);
  color: var(--White)
}

.CatalogItem {
  border: 0.1rem solid var(--Lsilver);
}

.CatalogItem a {
  transform: translateY(1rem);
}

@media(max-width:768px) {
  .FaqPages .accordion-second :where(h1, h2, h3, h4, h5, h6, strong) {
    flex: unset;
  }

}

.desc-article img {
  width: auto !important;
  height: auto !important;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  display: block;
  max-width: 100%;
}

.LayoutAdvice .swiper-slide {
  height: auto !important;
}

.LayoutAdvice .img-fluid {
  height: 100% !important;
  object-fit: cover !important;
}

.Blog-List .blog-box {
  margin-bottom: 3rem;
}