/* HOME */

.main_Page_Wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  margin-bottom: 88px;
}

.main_Page_Text {
  text-align: center;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.main_Page_Text h1 {
  margin-bottom: 8px;
}

.main_Page_Text strong {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.main_Page_Text strong .ezIcon {
  background: var(--primary-20);
}

.main_Page_Cards_Wrapper {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 56px;
}

.main_Page_Card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 32px;
  border-radius: 12px;
  background: var(--Gray-G100, #fff);
  box-shadow: 0 8px 40px 0 rgba(7, 15, 57, 0.08);
  position: relative;
  transition: 0.3s;
  border: 1px solid transparent;
  flex: 1;
}

.main_Page_Card:hover {
  transform: translateY(-8px) !important;
  background: var(--primary-99);
  border-color: var(--primary-95);
}

.main_Page_Card::before {
  content: "";
  background-color: var(--primary-20);
  height: 0px;
  width: 66%;
  position: absolute;
  border-radius: 0 0 12px 12px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 0;
}

.main_Page_Card:hover::before {
  height: 8px;
  bottom: -8px;
  opacity: 1;
}

.main_Page_Card .right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  justify-content: center;
}

.main_Page_Card .left button {
  background-color: var(--primary-40);
  border-radius: 8px;
  height: 48px;
  width: 48px;
  transition: all 300ms;
  z-index: -1;
}
.main_Page_Card:hover .left button {
  background-color: var(--primary-20) !important;
}

.main_Page_Card .left button .ezIcon {
  background: #fff;
}

@media (max-width: 992px) {
  .main_Page_Cards_Wrapper {
    flex-direction: column;
  }
  .main_Page_Card {
    width: 100%;
  }
}

.home_Hero {
  position: relative;
  padding-block: 2.25rem;
  z-index: 1;
}

.home_Hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
  background: linear-gradient(75deg, #add7ff 0%, #e0fffb 100%);
}

.home_Hero_Wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.home_Hero_Content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home_Hero_Img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_Hero_Img img {
  width: auto;
  height: 100%;
  max-height: 380px;
  max-width: 450px;
  object-fit: cover;
}

.personabar .personabarLogo {
  background: url(../images/logo.svg) no-repeat center center !important;
}

.home_Hero_Subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block: 0.5rem 2rem;
}

.home_Hero_Subtitle img {
  translate: -3px;
}

.home_Hero_Btn {
  margin-top: 40px;
}

.home_Hero_Description {
  max-width: 80%;
}
/* END OF HERO */

/* LEARN */

.home_Learn {
  margin-block: 80px 144px;
}

.home_Learn_Ttl {
  text-align: center;
}
.home_Learn_Desc {
  text-align: center;
  margin-block: 8px 2.375rem;
}

.home_Learn_Wrapper {
  display: flex;
  gap: 2rem;
}

.home_Learn_Item {
  flex: 1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 8px 72px 0px rgba(18, 18, 18, 0.1);
  padding-block: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.home_Learn_Item:hover {
  background: var(--mc1);
}

.home_Learn_Item_Img {
  width: 56px;
  height: 56px;
  background: var(--primary-99);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.home_Learn_Item:hover .home_Learn_Item_Img {
  background: transparent;
}

.home_Learn_Item_Img .ezIcon {
  --icon: 2.5rem;
  background: var(--primary-40);
  margin-top: 3rem;
}

.home_Learn_Item:hover .home_Learn_Item_Img .ezIcon {
  background: #fff;
}

.home_Learn_Item_Btn {
  margin-top: 1.75rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home_Learn_Item:hover .home_Learn_Item_Btn {
  color: #fff !important;
}

.home_Learn_Item:hover .home_Learn_Item_Btn .ezIcon {
  background: #fff;
}

body:not(.rtl) .home_Learn_Item_Btn .ezIcon {
  transform: rotate(180deg) !important;
}

.home_Learn_Item_Ttl {
  transition: var(--transition);
}

.home_Learn_Item:hover .home_Learn_Item_Ttl {
  color: #fff !important;
}
/* END OF LEARN */

/* MEDIA */
@media (max-width: 992px) {
  .home_Hero_Wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .home_Hero_Img img {
    max-width: 350px;
  }

  .home_Hero_Description {
    max-width: 100%;
  }

  .home_Hero_Btn {
    font-size: 12px !important;
    margin-top: 24px !important;
  }

  .home_Learn_Wrapper {
    flex-direction: column;
  }

  .home_Learn_Item_Btn {
    font-size: 14px !important;
  }
}

.p404 {
  margin-bottom: 120px;
}

.p404_Img {
  margin-bottom: 56px;
}

/* ABOUT */

.about_Hero {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about_Hero_Content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 58.33333%;
}

.about_Hero_Img {
  max-width: 41.66667%;
}

.about_Attrs {
  position: relative;
  margin-top: 120px;
  z-index: 1;
  padding-block: 1rem 144px;
  background: url(../assets/images/about-bg.svg) no-repeat center center;
  background-size: cover;
}

.about_Attrs::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: -1;
  background: #fff;
  -webkit-clip-path: ellipse(50% 60% at 50% 100%);
  clip-path: ellipse(50% 60% at 50% 100%);
  transform: rotate(180deg);
}
.about_Attrs_Wrapper {
  display: flex;
  gap: 1.5rem;
}

.about_Attrs_Ttl {
  color: var(--primary-10);
}

.about_Attrs_SubTtl {
  color: var(--primary-40);
  margin-block: 1rem 1.5rem;
}

.about_Attrs_Items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 66.66667%;
}

.about_Attrs_Item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  transition: var(--transition);
}

.about_Attrs_Item:hover {
  background: var(--primary-40);
}

.about_Attrs_Item_Icon .ezIcon {
  --icon: 3rem;
  background: var(--mc1);
}

.about_Attrs_Item:hover .about_Attrs_Item_Icon .ezIcon {
  background: #fff;
}

.about_Attrs_Item_Content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about_Attrs_Item_Ttl,
.about_Attrs_Item_Desc {
  transition: var(--transition);
}

.about_Attrs_Item:hover .about_Attrs_Item_Ttl,
.about_Attrs_Item:hover .about_Attrs_Item_Desc {
  color: #fff !important;
}

.about_Attrs_Content {
  max-width: 33.3333%;
}

@media (max-width: 992px) {
  .about_Hero {
    flex-direction: column;
    gap: 2rem;
  }

  .about_Hero_Content {
    gap: 1rem;
  }

  .about_Hero_Content,
  .about_Hero_Img {
    max-width: 100%;
  }

  .about_Attrs {
    margin-top: 60px;
    padding-block: 1rem;
  }

  .about_Attrs::before {
    display: none;
  }

  .about_Attrs_Content {
    max-width: 100%;
  }

  .about_Attrs_Wrapper {
    flex-direction: column;
  }

  .about_Attrs_Items {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about_Attrs_SubTtl {
    color: var(--primary-40);
    margin-block: 1rem;
  }

  .about_Attrs_Item {
    gap: 1rem;
  }
}

.blog_Card_Home {
  flex: 1;
  position: relative;
  z-index: 1;
}

.blog_Card_Home_Img {
  overflow: hidden;
  display: block;
  border-radius: 0.5rem;
}

.blog_Card_Home_Img img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  max-height: 288px;
  object-fit: cover;
  transition: 2s;
}

.blog_Card_Home:hover .blog_Card_Home_Img img {
  transform: scale(1.1);
}

.blog_Card_Home_Content {
  border-radius: 16px;
  background: var(--Gray-100);
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 1rem;
  width: calc(100% - 3rem);
  margin: 0 auto;
  transform: translateY(-2rem);
  transition: 0.3s;
}

.blog_Card_Home_Content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #fff;
  z-index: -1;
  transition: var(--transition);
}

.blog_Card_Home_Content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: var(
    --Gradiant,
    linear-gradient(277deg, var(--primary-50) 0, var(--primary-80) 85.89%)
  );
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.blog_Card_Home_Content_Ttl,
.blog_Card_Home_Content_Footer_Date {
  transition: var(--transition);
}

.blog_Card_Home:hover .blog_Card_Home_Content::before {
  opacity: 0;
}

.blog_Card_Home:hover .blog_Card_Home_Content::after {
  opacity: 1;
}

.blog_Card_Home:hover .blog_Card_Home_Content {
  transform: translateY(-2.5rem);
  /* background: var(--mc1); */
}

.blog_Card_Home:hover .blog_Card_Home_Content_Ttl {
  color: #fff !important;
}

.blog_Card_Home:hover .blog_Card_Home_Content_Footer_Date {
  color: var(--Gray-99) !important;
}

.blog_Card_Home_Content_Props {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.blog_Card_Home_Content_Footer_More {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: var(--Gray-99);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main__Blog {
  margin-top: 3rem;
}

.main__Blog .listItem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

.paging_Wrapper {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-block: 60px 0 !important;

  /* margin-block: 32px; */
}

.paging_Wrapper > a {
  display: none;
}

.blog__Detail__Wrapper {
  background: #fff;
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  /* border: 1px solid var(--Gray-95); */
  padding: 2rem 54px 2.5rem;
  border-radius: 1rem;
}

.blog__Detail__Header__Content {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  justify-content: space-between;
}

.blog__Detail__Date {
  position: absolute;
  left: 0;
}

.blog__Detail__Title {
  flex: auto;
  text-align: center;
}

.blog__Detail__Img {
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.blog__Detail__Img img {
  border-radius: 1rem;
}

.blog__Detail_Content p {
  font-size: var(--fz-t3) !important;
  line-height: var(--lh-t3) !important;
  font-weight: var(--fw-400) !important;
  color: var(--Gray-40) !important;
  margin-block: 0.5rem !important;
}

.video__Detail_Wrapper p {
  font-size: var(--fz-t4) !important;
}

.video__Detail_Wrapper .blog__Detail_Content {
  --main-space: 72px;
}

.blog__Detail_Content p span {
  color: var(--primary-20) !important;
}

.blog__Detail_Content h2,
.blog__Detail_Content h2 span {
  color: var(--mc1) !important;
}

.blog__Detail_Content h2 {
  font-size: var(--fz-t2) !important;
  line-height: var(--lh-t2) !important;
  font-weight: var(--fw-600) !important;
  margin-bottom: 1rem !important;
  scroll-margin-top: 7rem;
}

.blog__Detail_Content h3,
.blog__Detail_Content h4 {
  font-size: var(--fz-t3) !important;
  line-height: var(--lh-t3) !important;
  font-weight: var(--fw-600) !important;
  margin-block: 0.75rem !important;
}

.blog__Detail_Content span[style*="color:#03c1f3"],
.table_of_content_wrapper .table_of_content li a:hover,
html
  .blog__Detail_Content
  .col-lg-10
  div.pb-10.pl-20.pr-20.pt-10
  h3[style*="color"] {
  color: var(--mc1) !important;
}

.blog__Detail_Content h3 {
  color: var(--primary-60) !important;
}

.blog__Detail_Content ul > li > h3 {
  display: inline;
}

html
  .blog__Detail_Content
  .col-lg-10
  div.pb-10.pl-20.pr-20.pt-10
  span[style*="color"] {
  color: var(--primary-70) !important;
}

.blog__Detail_Content h4 {
  color: var(--primary-60) !important;
}

.blog__Detail_Content p:has(img) {
  text-align: center;
  position: relative;
}

.blog__Detail_Content p:has(img)::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  background: url(/portals/0/images/watermark.svg) center/contain no-repeat;
  width: 200px;
  height: 80px;
  opacity: 0.5;
  transform: translateX(-50%);
}

.blog__Detail_Content p :is(img, video) {
  border-radius: 1rem;
}

.blog__Detail_Content em {
  font-style: normal !important;
}

.blog__Detail_Content ol,
.blog__Detail_Content ul {
  list-style: disc inside;
}

.blog__Detail_Content :is(ul, ol) > li {
  margin-right: 0 !important;
  list-style: disc inside;
  font-size: var(--fz-t3);
  line-height: var(--lh-t3);
  font-weight: var(--fw-400);
  color: var(--Gray-40);
  margin-bottom: 0 !important;
}

.blog__Detail_Content ol > li {
  list-style: decimal inside;
}

.blog__Detail_Content :is(ul, ol) > li:has(.fa-check) {
  list-style: none;
}

.blog__Detail_Content ol li h5,
.blog__Detail_Content ol li p,
.blog__Detail_Content ul li h5,
.blog__Detail_Content ul li p {
  display: inline-block;
}

.blog__Detail_Content ol li strong,
.blog__Detail_Content ul li strong {
  font-weight: var(--fw-400);
}

.blog__Detail_Content .col-lg-10 div:is([style*="background"], .box2) {
  border-radius: 1rem;
  background-color: var(--primary-99) !important;
  padding: 1.25rem 1rem !important;
  border: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.blog__Detail_Content .col-lg-10 div.mb-20.ml-20.mr-20.mt-20 {
  background-color: var(--primary-99) !important;
}

.blog__Detail_Content .col-lg-10 div.blueBg,
.blog__Detail_Content .col-lg-10 div.box2,
.blog__Detail_Content .col-lg-10 div.mb-20.ml-20.mr-20.mt-20,
.blog__Detail_Content .col-lg-10 div.pb-10.pl-20.pr-20.pt-10,
.blog__Detail_Content .col-lg-10 div.pb-30.pt-30,
.blog__Detail_Content .col-lg-10 div.pinkBg,
.blog__Detail_Content .col-lg-10 div.whiteBg {
  display: block !important;
}

.blog__Detail_Content .col-lg-10 div.box2 .align-cen {
  flex-direction: column;
}

.blog__Detail_Content .col-lg-10 div.box2 .align-cen p {
  margin-bottom: 0.5rem !important;
  padding: 0 !important;
}

.blog__Detail_Content .col-lg-10 div.box2 .align-cen div {
  border-radius: 0 !important;
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.blog__Detail_Content .col-lg-10 div p {
  margin-bottom: 0 !important;
}

.blog__Detail_Content .col-lg-10 div a {
  font-size: var(--fz-t3);
  line-height: var(--lh-t3);
  font-weight: var(--fw-600);
  color: var(--mc1);
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  position: relative;
}

.blog__Detail_Content .col-lg-10 div a.am-btn-03,
.blog__Detail_Content .col-lg-10 div a.am-btn-04 {
  --btn-accent: #fff;
  --btn-bak: var(--mc1);
  background-color: var(--btn-bak);
  padding: 0.5rem 1rem;
  transition: var(--transition);
  white-space: nowrap;
  color: var(--btn-accent) !important;
  --icon-color: var(--btn-accent);
  border: solid 1px var(--btn-accent);
  border-radius: 1rem;
  margin: 1rem 0.25rem 0 !important;
  display: inline-block;
}

.blog__Detail_Content .col-lg-10 div a::before {
  content: "";
  display: none;
  position: absolute;
  background: url(/portals/_default/skins/ez-skin/assets/icons/arrow.svg)
    center/contain no-repeat;
  left: -0.25rem;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 1.5rem;
  height: 1.5rem;
}

.blog__Detail__Related {
  background: var(--primary-40);
  padding: calc(var(--main-space) * 0.5) 0;
  margin: calc(var(--main-space) * 0.5) 0;
  border-radius: 16px !important;
  margin-inline: 12px;
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07) !important;
}

.blog__Detail__Related__Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog__Detail__Related__Slider .blog__Card_Related {
  margin: 0 0.5rem;
}

.blog__Detail__Related .slick-arrow {
  background: #fff !important;
  --arrow-accent: var(--mc1) !important;
}

.blog__Detail__Related .slick-arrow:hover {
  background: var(--mc1) !important;
  --arrow-accent: #fff !important;
}

.blog__Detail__Comment__Ttl {
  text-align: center;
  margin-bottom: 2rem;
}

.blog__Detail__Comment__Post input[type="text"],
.blog__Detail__Comment__Post textarea {
  width: 100% !important;
  max-width: 100%;
  border: solid 1px var(--primary-40) !important;
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: var(--fz-t5);
  transition: var(--transition);
  min-height: 48px;
  color: var(--Gray-40);
  resize: none;
  /* margin-bottom: 1rem; */
}

.blog__Detail__Comment__Item__Reply,
.blog__Detail__Comment__Post input[type="button"] {
  width: fit-content;
  column-gap: calc(var(--gap) * 2);
  color: var(--btn-accent) !important;
  --icon-color: var(--btn-accent);
  display: flex;
  white-space: nowrap;
  transition: var(--transition);
}

.blog__Detail__Comment__Post input[type="button"] {
  --btn-accent: #fff;
  --btn-bak: var(--mc1);
  background-color: var(--btn-bak);
  padding: 0.625rem 2rem;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--btn-accent);
  border-radius: 0.75rem;
  margin: 0 auto;
}

.blog__Detail__Comment__Post #Notify {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.blog__Detail__Comment__Post #Notify span.Normal {
  display: flex;
  align-items: center;
  /* margin-bottom: 2rem; */
}

.blog__Detail__Comment__Post #Notify span.Normal input {
  margin: 0 0 0 0.5rem;
}

.blog__Detail__Comment__Post {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  padding: 2rem 0;
  margin-block: 2.5rem;
}

.blog__Detail__Comments {
  margin-bottom: calc(var(--main-space) * 1.75);
}

.blog__Detail__Comment__Post .col-lg-8 div.Normal img {
  border-radius: 0.75rem;
}

.blog__Detail__Comment__Post .col-lg-8 div.Normal div {
  margin: 0.375rem 0;
  color: var(--Gray-30);
  font-size: var(--fz-t5);
  line-height: var(--lh-t5);
  font-weight: var(--fw-400);
}

.blog__Detail__Comment__Post .col-lg-8 div.Normal {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  width: 100%;
}

.blog__Detail__Comment__Post .col-lg-8 div.Normal input {
  width: 130px !important;
  min-height: 2.5rem !important;
  height: 2.5rem !important;
  margin-bottom: 0 !important;
}

.blog__Detail__Comment__Item {
  border-radius: 1.25rem;
  background: var(--primary-99);
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  padding: 2rem;
  margin-bottom: 2rem !important;
}

.blog__Cats__Ttl,
.blog__Detail__Comment__Item__Content {
  margin-bottom: 1rem;
}

.blog__Detail__Comment__Item__Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.blog__Detail__Comment__Item__Btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog__Detail__Comment__Item__Reply {
  --btn-accent: var(--mc1);
  --btn-bak: #fff;
  background-color: var(--btn-bak);
  padding: 2px 2.375rem;
  align-items: center;
  justify-content: center;
  border: none !important;
  border-radius: 0.75rem;
}

.blog__Detail__Comments .paginationjs-pages ul {
  display: flex;
  gap: 1rem;
}

.blog__Detail__NoComment {
  border-radius: 1.25rem;
  background: var(--primary-99);
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
  padding: 2rem;
}

.blog__Detail__NoComment__Txt img {
  margin-left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}

.table_of_content_wrapper {
  background-color: var(--primary-99);
  padding: 16px;
  border-radius: 12px;
}

.table_of_content_wrapper .table_of_content_title {
  color: var(--mc1);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--mc1);
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.table_of_content_wrapper .table_of_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.table_of_content_wrapper .table_of_content li {
  list-style-type: none !important;
  position: relative;
  padding-right: 24px;
}

.table_of_content_wrapper .table_of_content li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--Gray-40) !important;
}

.table_of_content_wrapper .table_of_content li::before {
  content: ".";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(0);
  width: 1.5rem;
  height: 1.5rem;
  background: var(--Gray-50);
  mask: url(/portals/_default/skins/ez-skin/assets/icons/chevron.svg) no-repeat
    center;
  mask-size: cover;
  -webkit-mask: url(/portals/_default/skins/ez-skin/assets/icons/chevron.svg)
    no-repeat center;
  -webkit-mask-size: cover;
}

.blog__Detail__Comment__Post_Form p:first-child {
  width: calc(50% - 12px);
}

.blog__Detail__Comment__Post_Form p:nth-child(2) {
  width: calc(50% - 12px);
}

.blog__Detail__Comment__Post_Form p:nth-child(3) {
  width: 100%;
}

.blog__Detail__Comment__Post_Form p:nth-child(4) {
  width: 100%;
}

.blog__Detail__Comment__Post_Form p:last-child {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog__Detail__Cat {
  position: absolute;
  right: 0;
}

.blog__Cats {
  text-align: center;
}

.blog__Cats__List {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--Gray-95);
  white-space: nowrap;
  overflow-x: auto;
}

.blog__Cats__List__Item {
  position: relative;
  flex: 1;
}

.blog__Cats__List__Item.active::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 100%);
  border-radius: 1.25rem;
  background: var(--mc1);
  height: 3px;
  width: 60%;
}

.blog__Cats__List::-webkit-scrollbar {
  width: 1px;
}

.blog__Cats__List::-webkit-scrollbar-track {
  background: var(--Gray-99);
}

.blog__Cats__List::-webkit-scrollbar-thumb {
  transition: var(--transition);
  background: var(--primary-70);
}

#articleSearchFormSmall {
  width: 100%;
  height: 3rem;
  margin-top: 2rem;
}

#articleSearchFormSmall input[type="text"] {
  width: 100%;
  height: 36px;
  line-height: normal;
  color: var(--Gray-40);
  font-size: var(--fz-t5);
  font-weight: var(--fw-400);
  padding-inline-start: 0.75rem;
  /* border-radius: 0 8px 8px 0; */
  border-end-start-radius: 8px;
  border-start-start-radius: 8px;
  border: 1px solid var(--Gray-95) !important;
}

#articleSearchFormSmall input[type="submit"] {
  background-color: var(--mc1);
  background-image: url(/portals/_default/skins/ez-skin/assets/icons/search-2.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  -webkit-appearance: none;
  border: none;
  font-size: 0 !important;
  border-radius: 8px 0 0 8px;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem 1.5rem;
  /* transform: translateX(0.5rem); */
}

body:not(.rtl) #articleSearchFormSmall input[type="submit"] {
  transform: translateX(-0.5rem);
}

#dnn_ctr438_NewsSearch_pnlSearch,
#dnn_ctr616_NewsSearch_pnlSearch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.custom_Tabs .livetabsflatfilledred .ui-state-active,
.custom_Tabs .livetabsflatfilledred .ui-widget-content .ui-state-active {
  background-color: var(--primary-30) !important;
}

.custom_Tabs .livetabsflatfilledred .ui-state-default,
.custom_Tabs .livetabsflatfilledred .ui-widget-content .ui-state-default {
  background-color: transparent;
  transition: var(--transition);
  /* padding-right: 32px; */
  /* border-bottom: 1px solid var(--Gray-95); */
}

.custom_Tabs .livetabsflatfilledred .ui-tabs .ui-tabs-nav li a {
  padding: 14px 24px !important;
}

.custom_Tabs .main__Blog {
  margin-top: 0;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li a {
  font-size: 14px;
  transition: var(--transition);
  /* padding-right: 60px !important; */
  position: relative;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li a::before {
  content: "";
  background-color: var(--Gray-50);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  height: var(--icon, 30px);
  width: var(--icon, 30px);
  min-width: var(--icon, 30px);
  min-height: var(--icon, 30px);
  mask: var(--tab-icon, url(../assets/icons/tab1.svg)) no-repeat center /
    var(--icon-inner, cover);
  -webkit-mask: var(--tab-icon, url(../assets/icons/tab1.svg)) no-repeat
    center / var(--icon-inner, cover);
  transition: all var(--transition);
  -webkit-transition: all var(--transition);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.custom_Tabs .mright.ui-tabs .mright.ui-tabs-nav {
  width: 14% !important;
  border: none;
  margin-left: 12px !important;
}

.custom_Tabs .livetabsflatfilledred.mleft .mleft.ui-tabs .mleft.ui-tabs-nav {
  width: 14% !important;
  border: none;
  margin-right: 12px !important;
}

.custom_Tabs
  .livetabsflatfilledred.mleft
  .mleft.ui-tabs
  .mleft.ui-tabs-nav
  li.mleft {
  border-radius: 8px !important;
}

.custom_Tabs .mright.ui-tabs .mright.ui-tabs-panel,
.custom_Tabs .livetabsflatfilledred.mleft .mleft.ui-tabs .mleft.ui-tabs-panel {
  width: 85% !important;
  border-radius: 16px !important;
}

.custom_Tabs
  .livetabsflatfilledred.mbottom
  .mbottom.ui-tabs
  .mbottom.ui-tabs-nav {
  bottom: -90px !important;
}

.custom_Tabs
  .livetabsflatfilledred.mright
  .mright.ui-tabs
  .mright.ui-tabs-nav
  li.mright {
  border-radius: 8px !important;
  margin-left: 12px !important;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li.ui-state-active a::before {
  background-color: #fff;
}
.custom_Tabs .mright.ui-tabs .mright.ui-tabs-nav li a {
  font-family: "YekanBakh";
  font-size: 14px !important;
}

.custom_Tabs .livetabsflatfilledred .ui-tabs .ui-tabs-nav {
  border: none !important;
  margin-bottom: 20px;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li:hover a::before {
  background-color: var(--primary-30);
}

.custom_Tabs .ui-tabs .ui-tabs-nav li.ui-state-active:hover a::before {
  background-color: #fff;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li:first-child a::before {
  --tab-icon: url(../assets/icons/notebook.svg);
}

.custom_Tabs .ui-tabs .ui-tabs-nav li:nth-child(2) a::before {
  --tab-icon: url(../assets/icons/checklist.svg);
}

.custom_Tabs .ui-tabs .ui-tabs-nav li:nth-child(3) a::before {
  --tab-icon: url(../assets/icons/news.svg);
}

.deputy_Tabs .ui-tabs .ui-tabs-nav li:first-child a::before {
  --tab-icon: url(../assets/icons/news.svg) !important;
}

.deputy_Tabs .ui-tabs .ui-tabs-nav li:nth-child(3) a::before {
  --tab-icon: url(../assets/icons/law.svg) !important;
}

.deputy_Tabs .ui-tabs .ui-tabs-nav li:nth-child(4) a::before {
  --tab-icon: url(../assets/icons/quote.svg) !important;
}

.deputy_Tabs .ui-tabs .ui-tabs-nav li:nth-child(5) a::before {
  --tab-icon: url(../assets/icons/links.svg) !important;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li {
  position: relative;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li:hover::before {
  left: 20px;
}

.custom_Tabs .ui-tabs .ui-tabs-nav li:hover a {
  color: var(--primary-40);
}

.custom_Tabs .livetabsflatfilledred .ui-state-active a {
  color: #fff !important;
}
.custom_Tabs .livetabsflatfilledred .ui-tabs .ui-tabs-panel {
  background: var(--Gray-G100, #fff);
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07) !important;
  border: none !important;
  padding: 32px 24px !important;
  border-radius: 16px;
}

.rtl .custom_Tabs .livetabsflatfilledred .ui-tabs .ui-tabs-nav li {
  border-radius: 8px;
  margin-inline-end: 6px;
}

.custom_Tabs {
  margin-bottom: 104px;
}

@media (max-width: 992px) {
  .custom_Tabs .ui-tabs .ui-tabs-panel {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .custom_Tabs .ui-tabs .ui-tabs-nav {
    /* width: max-content !important; */
    /* margin-bottom: 32px !important; */
  }
  .custom_Tabs .livetabsflatfilledred .ui-tabs .ui-tabs-nav li {
    width: max-content !important;
    margin-left: 0 !important;
  }
  .custom_Tabs .ui-tabs .ui-tabs-panel img {
    height: unset;
  }
}
.blog-top-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  width: 600px;
  height: 1000px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .blog-top-right {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: auto;
  }

  .blog-top-right > * {
    grid-area: unset !important;
    width: 100%;
    margin-top: 20px;
  }

  .blog-card .image-wrapper {
    width: 100%;
    height: auto;
  }
  .blog-card .category {
    position: absolute;
    bottom: 30% !important;
  }
  .blog-card {
    height: 340px;
  }
  .blog-tabs .ui-tabs-nav {
    width: 400px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
@media (min-width: 1200px) {
  .blog-top-right > :nth-child(1) {
    grid-area: 1 / 1 / 3 / 3;
    margin-top: 0 !important;
    height: 440px;
    line-height: 34px;
    align-items: right;
    justify-content: start !important;
  }

  .blog-top-right > :nth-child(1) .image-wrapper {
    width: 600px !important;
    height: 360px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }
  .blog-card .image-wrapper {
    width: 288px !important;
    height: 172.6px;
  }
  .blog-top-right > :nth-child(1) .title {
    font-size: 18px;
    padding-right: 8px;
    margin-top: 8px;
  }

  .blog-top-right > :nth-child(1) .category {
    position: absolute;
    bottom: 22%;
    right: 3%;
    font-weight: 600;
    font-size: 14px;
    color: white;
    z-index: 10;
  }

  .blog-top-right > :nth-child(2) {
    grid-area: 3 / 1 / 4 / 2;
  }

  .blog-top-right > :nth-child(3) {
    grid-area: 3 / 2 / 4 / 3;
    align-items: flex-end;
  }

  .blog-top-right > :nth-child(4) {
    grid-area: 4 / 2 / 5 / 3;
    align-items: flex-end;
  }

  .blog-top-right > :nth-child(5) {
    grid-area: 4 / 1 / 5 / 2;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  justify-content: space-between;
  margin-top: 15px;
  line-height: 28px;
}

.blog-card .image-wrapper {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .category {
  position: absolute;
  bottom: 40%;
  right: 6%;
  font-weight: 600;
  font-size: 14px;
  color: white;
  z-index: 10;
}

.blog-card .title {
  color: #4f4f4f;
  font-weight: 600;
  font-size: 14px;
  padding-right: 16px;
  transition: all 300ms;
}

.blog-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 8px;
}

.blog-card .date-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card .date {
  color: #959595;
  font-size: 11px;
}

.blog-card .more {
  display: flex;
  align-items: center;
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

.blog-card:hover .more {
  opacity: 1 !important;
}
.blog-card:hover .title {
  color: #007a6b;
}

.blog-card .more span {
  color: #007a6b;
  font-size: 14px;
  margin-left: 4px;
  font-weight: 600;
}
.blog-tabs .header {
  color: var(--Primary-P10, #004940);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 200% */
  position: relative;
  padding-right: 16px;
  margin: 60px 0 25px 0;
}
.blog-tabs .ui-tabs {
  padding: 0;
}
.blog-tabs .header::after {
  content: "";
  height: 40px;
  width: 2px;
  background: #0f1d71;
  position: absolute;
  right: 0;
}
.blog-tabs .ui-tabs-nav li {
  background: none !important;
  border: none !important;
  display: flex !important;
  height: 40px !important;
  padding: 8px !important;
  justify-content: center !important;
  align-items: center !important;
  transition: all 300ms;
  border-radius: 8px !important;
}
.blog-tabs .ui-tabs-nav li:hover {
  background: white !important;
}
.blog-tabs .ui-tabs-nav li:hover a {
  color: #007a6b !important;
}

.blog-tabs .ui-tabs-nav {
  background: none !important;
  padding: 0 !important;
  border: none !important;
  display: flex !important;
  gap: 24px !important;
}
.blog-tabs .ui-widget-content {
  border: none !important;
  background: none !important;
}
.blog-tabs .ui-tabs-nav .ui-state-active {
  background: var(--Primary-P40, #008a7a) !important  ;
  color: var(--Gray-G100, #fff) !important;
}

.blog-tabs .ui-tabs-nav .ui-state-active a {
  color: var(--Gray-G100, #fff) !important;
}
.blog-tabs .ui-tabs-nav .ui-state-active:hover a {
  color: var(--Gray-G100, #fff) !important;
}
.blog-tabs .ui-tabs-nav .ui-state-active:hover {
  background: var(--Primary-P40, #008a7a) !important  ;
}
.blog-tabs .ui-tabs-nav li a {
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 28px !important; /* 200% */
  transition: all 300ms;
  padding: 0 !important;
}
.blog-tabs .ui-tabs-panel {
  padding: 46px 0 !important;
}
.article-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .article-container .article-card {
    width: 400px !important;
    height: 280px !important;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
  }
  .article-container .article-card .article-image {
    width: 100% !important;
  }
}
/* ==== Article Card ==== */
.article-container .article-card {
  width: 600px;
  height: 137px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #d1d1d1;
  transition: all 0.3s ease;
}

/* ==== Content Area ==== */
.article-container .article-card .article-content {
  display: flex;
  flex-direction: column;
  width: 392px;
  padding-left: 20px;
}

/* ==== Title ==== */
.article-container .article-card .article-content .article-title {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  transition: color 0.3s ease;
}

.article-container .article-card:hover .article-content .article-title {
  color: #007a6b;
}

/* ==== Description ==== */
.article-container .article-card .article-content .article-description {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 24px;
  margin-top: 8px;
}

/* ==== Footer ==== */
.article-container .article-card .article-content .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 15px;
  margin-top: 16px;
}

/* ==== Date Box ==== */
.article-container .article-card .article-content .footer .date-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-container .article-card .article-content .footer .date-box .date {
  color: #959595;
  font-size: 11px;
}

/* ==== More Link ==== */
.article-container .article-card .article-content .footer .more {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.article-container .article-card .article-content .footer .more span {
  color: #007a6b;
  font-size: 14px;
  margin-left: 4px;
}

/* ==== Image Box ==== */
.article-container .article-card .article-image {
  width: 184px;
  height: 121px;
  overflow: hidden;
  border-radius: 8px;
}

.article-container .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 25px;
  justify-content: center;
  margin-top: 32px;
  place-items: center;
}
.articles-wrapper {
  padding-block: 52px;
}
.articles-wrapper .header {
  color: var(--Primary-P10, #004940);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 200% */
  position: relative;
  padding-right: 16px;
}
.articles-wrapper .header::after {
  content: "";
  height: 40px;
  width: 2px;
  background: #0f1d71;
  position: absolute;
  right: 0;
}
@media (min-width: 640px) {
  .articles-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}

@media (min-width: 1024px) {
  .articles-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}

/* ===== Article Card ===== */
.articles-container .article-card {
  width: 392px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid transparent;

  padding-bottom: 21px;
}

.articles-container .article-card:hover {
  box-shadow: 0 4px 56px 0 rgba(18, 18, 18, 0.12);
  background: #fff;
  border: 1px solid #e4e4e4;
}

/* ===== Image ===== */
.articles-container .article-card .article-image {
  width: 100%;
  height: 234px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease;
}

.articles-container .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* ===== Title ===== */
.articles-container .article-card .article-title {
  width: 360px;
  color: #4f4f4f;
  font-weight: 600;
  margin-top: 15px;
  text-decoration: none;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Footer ===== */
.articles-container .article-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 15px;
  margin-top: 20px;
}

/* ===== Date Box ===== */
.articles-container .article-card .footer .date-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.articles-container .article-card .footer .date-box .date {
  color: #959595;
  font-size: 11px;
}

/* ===== More Link ===== */
.articles-container .article-card .footer .more {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.articles-container .article-card .footer .more span {
  color: #007a6b;
  font-size: 14px;
  margin-left: 4px;
}
.costum-bg {
  width: 100%;
  background-color: #f9f9f9;
}

@media (max-width: 1199px) {
  /* ===== Card ===== */
  .bh-article__card {
    position: relative;
    width: 400px !important;
    height: 300px !important;
  }
  .bh-article__card-title {
    bottom: 64px !important;
    width: 390px !important;
    height: auto !important;
  }

  /* ===== Footer ===== */
  .bh-article__card-footer {
    position: absolute;
    bottom: 28px;
    width: 390px !important;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1 !important;
    transition: all 0.5s ease 0.2s;
  }
}
/* ===== Base container ===== */
.bh-article {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== Article List ===== */
.bh-article__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-block: 80px;
}

/* ===== Card ===== */
.bh-article__card {
  position: relative;
  width: 496px;
  height: 355px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease;
}

.bh-article__card:hover .bh-article__card-image {
  transform: scale(1.05);
}

.bh-article__card:hover .bh-article__card-title {
  bottom: 64px;
}

.bh-article__card:hover .bh-article__card-footer {
  opacity: 1;
}

/* ===== Image ===== */
.bh-article__card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}

/* ===== Gradient overlay ===== */
.bh-article__card-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(to bottom, transparent, #121212);
  z-index: 10;
}

/* ===== Title ===== */
.bh-article__card-title {
  position: absolute;
  bottom: 24px;
  z-index: 10;
  width: 432px;
  height: 64px;
  overflow: hidden;

  color: #ffffff;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  text-overflow: ellipsis;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.7s ease;
}

/* ===== Footer ===== */
.bh-article__card-footer {
  position: absolute;
  bottom: 28px;
  width: 432px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

/* ===== Date Section ===== */
.bh-article__card-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bh-article__card-date-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== "More" Section ===== */
.bh-article__card-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccece9;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .blog-weekly-card {
    width: 400px !important;
    height: 650px !important;
    padding: 32px 20px !important;
  }
  .blog-weekly-card__article {
    height: 500px !important;
  }
  .blog-weekly-card__image-wrapper {
    width: 358px !important;
    height: 260px !important;
  }
  .blog-weekly-card__title {
    width: 355px !important;
  }

  .blog-weekly-card__description {
    width: 355px !important;

    margin: 16px 8px 0 0;
  }

  .blog-weekly-card__footer {
    width: 355px !important;
    margin-top: 20px !important;
  }
  .blog-weekly-card__category {
    bottom: 252px !important;
  }
}

.blog-weekly-card {
  width: 730px;
  height: 734px;
  padding: 32px 52px;
  border-radius: 24px;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  box-shadow: 0 4px 56px 0 rgba(18, 18, 18, 0.06);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-block: 80px;
}

.blog-weekly-card__header {
  position: relative;
  color: #004940;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-align: right;
  padding-right: 16px;
}

.blog-weekly-card__header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 40px;
  background-color: #0f1d71;
}

.blog-weekly-card__article {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 558px;
  flex-shrink: 0;
  margin-top: 24px;
  position: relative;
}

.blog-weekly-card__image-wrapper {
  width: 600px;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  position: relative;
}

.blog-weekly-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-weekly-card__gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(to bottom, transparent, #121212);
  z-index: 10;
}

.blog-weekly-card__category {
  position: absolute;
  bottom: 222px;
  right: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  z-index: 10;
}

.blog-weekly-card__title {
  width: 583px;
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  text-align: right;
  margin: 16px 8px 0 0;
  display: block;
}

.blog-weekly-card__description {
  width: 583px;
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: right;
  margin: 16px 8px 0 0;
  display: block;
}

.blog-weekly-card__footer {
  width: 583px;
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
}

.blog-weekly-card__date-box {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-weekly-card__date {
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  color: #626262;
  opacity: 0.7;
}
@media (max-width: 1199px) {
  .blog-weekly-card .append-arrow-Wrapper {
    right: 121px !important;
  }
}
.blog-weekly-card .append-arrow-Wrapper {
  position: absolute !important;
  bottom: 24px !important;
  width: 158px !important;
  height: 40px !important;
  z-index: 20 !important;
  left: 273px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.blog-weekly-card .append-arrow-Wrapper .slick-arrow:hover {
  background: none !important;
  border: none !important;
}
.blog-weekly-card .slick-arrow {
  filter: brightness(0) saturate(100%) invert(29%) sepia(81%) saturate(2112%)
    hue-rotate(155deg) brightness(104%) contrast(101%) !important;
  top: auto !important;
}

body.rtl .blog-weekly-card .append-arrow-Wrapper .slick-prev {
  transform: rotate(90deg) !important;
  left: 140px !important;
}

body.rtl .blog-weekly-card .append-arrow-Wrapper .slick-next {
  transform: rotate(90deg) !important;
  right: 140px !important;
}
.blog-weekly-card .append-arrow-Wrapper ul button {
  width: 4px !important;
  height: 4px !important;
  border-radius: 100% !important;
  background: #a6ded8 !important;
}
.blog-weekly-card .append-arrow-Wrapper li {
  display: flex !important;
  align-items: center !important;
}
.blog-weekly-card .append-arrow-Wrapper ul .slick-active button {
  width: 6px !important;
  height: 6px !important;
  border-radius: 100% !important;
  background: #26b0a0 !important;
}
/* parent wrapper */
.pm-wrapper {
  width: 1264px;
  height: 442px;
  flex-shrink: 0;
  margin-bottom: 104px;
}

/* title */
.pm-wrapper .pm-title {
  position: relative;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  color: #004940;
  padding-right: 16px;
  margin-bottom: 32px;
}

.pm-wrapper .pm-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 2px;
  background-color: #0f1d71;
}
@media (max-width: 1200px) {
  .pm-wrapper .pm-cards {
    width: 400px !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    justify-content: flex-start !important;
    scroll-behavior: smooth !important;
  }

  .pm-wrapper .pm-card {
    scroll-snap-align: center;
  }
}

/* cards container */
.pm-wrapper .pm-cards {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* each card */
.pm-wrapper .pm-card {
  width: 288px;
  height: 370px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid #e4e4e4;
  background-color: #fff;
  box-shadow: 0 2px 40px 0 rgba(18, 18, 18, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* image section */
.pm-wrapper .pm-card__image-wrapper {
  width: 100%;
  height: 172px;
  position: relative;
  display: block;
}

.pm-wrapper .pm-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-wrapper .pm-card__gradient {
  height: 33%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, #121212);
  z-index: 10;
}

/* category badge */
.pm-wrapper .pm-card__category {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  position: absolute;
  z-index: 10;
  bottom: 214px;
  right: 24px;
}

/* content section */
.pm-wrapper .pm-card__content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
}

/* title text */
.pm-wrapper .pm-card__title {
  width: 256px;
  overflow: hidden;
  color: #3d3d3d;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

/* description */
.pm-wrapper .pm-card__desc {
  width: 256px;
  flex-shrink: 0;
  overflow: hidden;
  color: #959595;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-overflow: ellipsis;
}
@media (max-width: 1199px) {
  /* parent wrapper */
  .pf-wrapper {
    width: 400px !important;
    height: 400px !important;
    flex-flow: wrap;
    padding-inline: 20px;
  }

  /* each card */
  .pf-wrapper .pf-card {
    width: 155px !important;
    height: 155px !important;
  }
}
/* parent wrapper */
.pf-wrapper {
  display: flex;
  width: 1264px;
  height: 288px;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  margin-block: 104px;
}

/* each card */
.pf-wrapper .pf-card {
  width: 288px;
  height: 288px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* image fills the card */
.pf-wrapper .pf-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* parent wrapper */
.pmid-wrapper {
  width: 1264px;
  height: 151px;
  flex-shrink: 0;
  overflow: hidden;
  margin-bottom: 80px;
}

/* image covers the full wrapper */
.pmid-wrapper .pm-wrapper__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1199px) {
  /* main container */
  .pt-wrapper {
    width: 400px !important;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
    margin-top: 72px;
  }

  /* image box wrapper */
  .pt-wrapper .pt-wrapper__image-box {
    width: 100% !important;
    height: 50px !important;
    overflow: hidden;
  }
  /* parent wrapper */
  .pmid-wrapper {
    width: 400px !important;
    height: 60px !important;
    flex-shrink: 0;
    overflow: hidden;
    margin-bottom: 80px;
  }

  /* image covers the full wrapper */
  .pmid-wrapper .pm-wrapper__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
/* main container */
.pt-wrapper {
  width: 1264px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  margin-top: 72px;
}

/* image box wrapper */
.pt-wrapper .pt-wrapper__image-box {
  width: 600px;
  height: 74px;
  overflow: hidden;
}

/* image styling */
.pt-wrapper .pt-wrapper__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leqa .tag_btn li:hover {
  background: #e7e7e7 !important;
}
.leqa .tag_btn li {
  transition: all 300ms;
  cursor: pointer !important;
  border-radius: 4px;
}
.leqa .tag_btn li:hover a {
  color: #2b2b2b !important;
}
.leqa .tag_btn li a {
  color: #2b2b2b;
  transition: all 300ms;
}
.convo .hm_1 .home-content {
  margin-block: 25px;
  height: 160px;
  display: flex;
  align-items: center;
  position: relative;
}

.convo .hm_1 .home-content::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #dadada;
  position: absolute;
  bottom: 0;
}
.convo .hm_1 .home-content:last-child::after {
  content: "";
  width: 100%;
  height: 1px;
  background: white;
}
.site-map .SubLi {
  background: white !important;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08) !important;
  padding: 20px !important;
  min-width: 225px;
}
.site-map .SiteMapFooter {
  display: none;
}
.site-map .SubLi:first-child {
  display: none;
}

.site-map .ul {
  display: flex !important;
  position: relative;
}
.site-map .SubLi .SubItem {
  font-weight: normal;
}

.site-map .SubLi .SubUl {
  padding-top: 20px;
}
.site-map .SubLi .SubUl li::marker {
  border-radius: 100% !important;
}
.login-info-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-info {
  border-radius: 24px;
  border: 1px solid var(--secondary-100, #e6e7ee);
  background: var(--gray-color-100, #fff);
  box-shadow: 0 4px 56px 0 rgba(18, 18, 18, 0.08);
  min-height: 476px;
  height: auto;
  margin-inline: 100px;
  margin-block: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding-inline: 56px;
}
.login-info .info-box .user-text {
  color: var(--Gray-G30, #4f4f4f);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 200% */
}
.login-info .info-box .user {
  border-radius: 4px;
  border: 1px solid #d7d7d7;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  position: relative;
}
.login-info .info-box .pass {
  border-radius: 4px;
  border: 1px solid #d7d7d7;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  position: relative;
}
.login-info .info-box .pass-text {
  color: var(--Gray-G30, #4f4f4f);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 200% */
}
.login-info .info span {
  color: var(--Primary-P20, #006156);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 200% */
}
.login-info .info {
  border-radius: 8px;
  background: var(--Background, #f9f9f9);
  padding: 16px 32px 32px 32px;
  width: 100%;
}
.login-info .info .lable {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--Background, #f9f9f9);
  padding-inline: 10px;
}
.login-info .info p {
  color: var(--Gray-G60, #959595);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 200% */
  margin-top: 8px;
}

.info-box {
  display: flex;
  gap: 2rem;
  font-family: sans-serif;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .info-box {
    flex-flow: column;
  }
  .login-info {
    padding-inline: 20px;
    margin-inline: 20px;
    padding-block: 20px;
  }
  .login-info .desc span {
    font-size: 16px !important;
    line-height: 40px; /* 181.818% */
  }
  .login-info .desc p {
    font-size: 14px !important;
    line-height: 30px; /* 187.5% */
  }
}
.info-box .copy-popup {
  position: absolute;
  top: -28px;
  background: #00a28f;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.info-box .copy-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.info-box button {
  background: none;
  border: none;
  cursor: pointer;
}

.login-info .desc span {
  color: var(--Primary-P20, #006156);
  text-align: right;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 181.818% */
}
.login-info .desc p {
  color: var(--Gray-G40, #626262);
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}

.contact_Form #dnn_ctr427_Feedback_cmdSend {
  background: var(--primary-40) !important;
  color: var(--Gray-100) !important;
  box-shadow: unset !important;
  border: unset !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 8px;
}

.contact_Form .dnnActions {
  display: flex;
  justify-content: center;
}
.contact_Form .dnnForm.NarrowFeedbackForm .dnnFormItem INPUT {
  width: 100% !important;
}
.contact_Form .dnnFormItem input[type="text"],
.contact_Form .dnnFormItem input[type="password"],
.contact_Form .dnnFormItem input[type="email"],
.contact_Form .dnnFormItem input[type="tel"],
.contact_Form .dnnFormItem select,
.contact_Form .dnnFormItem textarea {
  max-width: 100% !important;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #c9c9c9;
  box-shadow:
    0px 1px 0px 0px rgba(255, 255, 255, 0.8),
    inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 12px;
}
.contact_Form .dnnForm.NarrowFeedbackForm .dnnFormItem TEXTAREA {
  width: 100% !important;
  max-width: 100% !important;
}
.contact_Form #dnn_ctr427_Feedback_hFeedback {
  display: none !important;
}
.contact_Form .dnnForm fieldset {
  margin-bottom: 0 !important;
}
.contact_Form .dnnActions li {
  float: unset !important;
  margin: unset !important;
}
.wrapper_Massage_Comment .dnnFormMessage {
  background-color: var(--primary-95) !important;
  border-radius: 8px;
  border: 0.1rem solid var(--primary-60);
  box-sizing: 0px 8px 40px 0px rgba(18, 18, 18, 0.07) !important;
}
.contact_Form .Feedback_CharCount {
  display: flex;
  align-items: center;
}

/* Projects Listing */

body:not(.personabar-visible) #dnn_ctr2398_ModuleContent > table:first-child {
  display: none;
}

.project_Cards_Wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

.project_Card {
  flex: 0 0 calc(33% - 14px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 40px 0 rgba(18, 18, 18, 0.08);
  position: relative;
}

.project_Card::before {
  height: 8px;
  background: var(--mc2);
  border-radius: 0 0 20px 20px;
  width: 100%;
  position: absolute;
  left: 0;
  content: "";
  display: block;
  bottom: 0;
  transform: translateY(100%);
  transition: var(--transition);
}

.project_Card:hover::before {
  transform: translateY(0);
}

.project_Card_Image,
.project_Card_Image a,
.project_Card_Image a img {
  width: 100%;
  height: 230px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  transition: ease 0.6s;
}

.project_Card_Image a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project_Card:hover .project_Card_Image a img {
  transform: scale(1.04);
}

.project_Card_Data {
  padding: 0px 24px 34px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project_Card_Title {
  height: 60px;
  font-size: 16px;
  text-align: justify;
  font-weight: 700;
  line-height: 30px;
  color: var(--Gray-30) !important;
}

.project_Card_Data_Bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date_Wrap {
  height: max-content;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.date_Wrap .date {
  transform: translateY(2px);
}

.project_Card_Data_Bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--mc1);
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
}

.project_Card_Data_Bottom a .ezIcon {
  --icon: 16px;
  background: var(--mc1);
  transition: var(--transition);
}

.project_Card_Data_Bottom a:hover .ezIcon {
  transform: translateX(-4px);
}

.improvement_Rate {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  font-weight: 600;
  background-color: var(--mc2);
  padding: 2px 20px;
  border-radius: 16px;
}

.project_Inner_Progress_Wrapper {
  margin-block: 60px;
}

.project_Inner_Progress_Wrapper h2 {
  font-size: 18px;
  color: var(--mc1);
  font-weight: 700;
  margin-bottom: 40px;
}

.project_Inner_Progress {
  height: 44px;
}

.project_Inner_Progress .progress-bar {
  background-color: var(--mc2);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .project_Cards_Wrapper {
    flex-direction: column;
  }
  .project_Card {
    width: 100%;
  }
}

/* Projects Inner */

.project_Inner_Wrapper {
  border-radius: 16px;
  background: var(--Gray-G100, #fff);
  box-shadow: 0 8px 40px 0 rgba(23, 43, 71, 0.1);
  padding: 64px 100px 89px;
}

.project_Inner_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--mc1);
  line-height: 36px;
  margin-bottom: 40px;
}

.project_Inner_Wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--Gray-40);
  margin-bottom: 98px;
}

.project_Inner_Gallery,
.project_Inner_Gallery table {
  width: 100%;
}

.project_Inner_Gallery table a {
  height: 100%;
  width: 100%;
}

.project_Inner_Gallery table a img {
  width: 100%;
}

.project_Inner_Card_Title,
.project_Inner_Card_Desc {
  margin-bottom: 0 !important;
}

.project_Inner_Cards_Wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  direction: ltr;
  margin-top: 84px;
  column-gap: 24px;
  justify-content: center;
  row-gap: 58px;
}

.project_Inner_Card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 16px 32px 16px 32px;
  border: 1px solid var(--Gray-G95, #e4e4e4);
  background: var(--Gray-G100, #fff);
  box-shadow: 0 4px 48px 0 rgba(23, 43, 71, 0.1);
  padding: 16px 42px;
  width: 170px;
}

.project_Inner_Card img {
  width: 88px;
  height: 88px;
}

.project_Inner_Card_Title {
  white-space: nowrap;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 38px !important;
  color: var(--mc1) !important;
  max-width: 144px;
  text-align: center;
  height: 64px;
}

.project_Inner_Card_Desc {
  font-size: 14px !important;
  color: var(--Gray-30) !important;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
  white-space: nowrap;
  direction: rtl;
}

@media (max-width: 992px) {
  .project_Inner_Wrapper {
    padding: 20px 32px;
  }
  .project_Inner_Wrapper p {
    text-align: justify;
  }
  .project_Inner_Cards_Wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .project_Inner_Card {
    width: 100%;
  }
  .project_Inner_Card_Title {
    height: unset;
  }
}

/* Project Search */

.project_Search_Wrapper tbody {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead {
  border: none;
  background: #fff;
  /* height: 300px !important; */
  /* overflow: hidden; */
  box-shadow: 0 4px 40px 0 rgba(18, 18, 18, 0.08);
  border-radius: 20px;
  padding: 32px 16px 32px 16px;
  min-width: 100%;
}

/* .project_Search_Wrapper table#tblPropertySearchSmall tbody tr:first-child {
  margin-bottom: 56px;
} */

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead > label {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: var(--mc1);
  margin-bottom: 36px;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody,
.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody tr {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody tr {
  padding-left: 16px;
  margin-bottom: 0;
}

/* body:not(.personabar-visible) .property_Wrapper > div > table {
  display: none;
} */

.property_Wrapper .CommandButton {
  background: var(--mc2);
  border-radius: 8px;
  padding: 12px 24px;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: 0.3s !important;
}

.property_Wrapper .CommandButton:hover {
  background: var(--mc1) !important;
}

/* .property_Wrapper .Normal{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 90px;
  font-size: 18px;
  font-weight: 700;
  color: var(--Gray-30);
} */

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody tr td {
  direction: ltr;
  display: flex;
  align-items: center;
  height: 56px;
  /* padding-inline-end: 56px; */
  position: relative;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr
  td
  table
  tbody
  td {
  border-bottom: 1px solid #e4e4e4;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr
  td
  table
  tbody
  tr:last-child
  td:last-child {
  border-color: transparent !important;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td
  table
  tbody
  tr:last-child
  td:last-child,
.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(4)
  td
  table
  tbody
  tr:last-child
  td:last-child {
  display: none;
}
.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:last-child
  td
  table
  td {
  padding-inline-end: 0;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:last-child
  td
  table
  tbody
  td::before,
.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td
  table
  tbody
  tr:last-child
  td:last-child::before {
  display: none;
}

/* .project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  tbody
  tr
  td::before {
  content: "";
  background-image: var(--iconurl, url(../assets/icons/logo-main.svg));
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:first-child
  td:first-child::before {
  --iconurl: url(/portals/3/images/state-icons/aalishahr.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:first-child
  td:nth-child(2)::before {
  --iconurl: url(/portals/3/images/state-icons/alavi.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:first-child
  td:nth-child(3)::before {
  --iconurl: url(/portals/3/images/state-icons/shirinshahr.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:first-child
  td:nth-child(4)::before {
  --iconurl: url(/portals/3/images/state-icons/baharestan.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(2)
  td:first-child::before {
  --iconurl: url(/portals/3/images/state-icons/sahand.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(2)
  td:nth-child(2)::before {
  --iconurl: url(/portals/3/images/state-icons/ramshar.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(2)
  td:nth-child(3)::before {
  --iconurl: url(/portals/3/images/state-icons/andisheh.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(2)
  td:nth-child(4)::before {
  --iconurl: url(/portals/3/images/state-icons/binalood.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(3)
  td:nth-child(1)::before {
  --iconurl: url(/portals/3/images/state-icons/amirkabir.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(3)
  td:nth-child(2)::before {
  --iconurl: url(/portals/3/images/state-icons/pardis.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(3)
  td:nth-child(3)::before {
  --iconurl: url(/portals/3/images/state-icons/parand.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(3)
  td:nth-child(4)::before {
  --iconurl: url(/portals/3/images/state-icons/eyvanekey.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(4)
  td:nth-child(1)::before {
  --iconurl: url(/portals/3/images/state-icons/sadra.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(4)
  td:nth-child(2)::before {
  --iconurl: url(/portals/3/images/state-icons/golbahar.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(4)
  td:nth-child(3)::before {
  --iconurl: url(/portals/3/images/state-icons/tis.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(4)
  td:nth-child(4)::before {
  --iconurl: url(/portals/3/images/state-icons/fooladshahr.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(5)
  td:nth-child(1)::before {
  --iconurl: url(/portals/3/images/state-icons/ramin.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(5)
  td:nth-child(2)::before {
  --iconurl: url(/portals/3/images/state-icons/majlesi.svg);
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tbody
  tr:nth-child(3)
  td.SubHead
  table
  tbody
  tr:nth-child(5)
  td:nth-child(3)::before {
  --iconurl: url(/portals/3/images/state-icons/mehestan.svg);
} */

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  input[type="checkbox"] {
  appearance: none;
  /* width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #eee; */
  background-image: url(../assets/icons/not-checked.svg);
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  input[type="checkbox"]:checked {
  background-image: url(../assets/icons/checked.svg);
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  tbody
  tr
  td
  label {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #000;
}

.project_Search_Wrapper .CommandButton {
  height: 48px;
  width: 100%;
  border: 1px solid var(--mc1);
  border-style: solid !important;
  transition: var(--transition);
  color: var(--mc1);
  border-radius: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}

/* body:not(.personabar-visible) #dnn_ctr766_ModuleContent table {
  display: none;
} */

.project_Search_Wrapper .CommandButton:hover {
  background-color: var(--mc1);
  color: #fff;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden !important;
  scrollbar-width: auto !important;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  tbody::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  display: block !important;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  tbody::-webkit-scrollbar-track {
  background: #f1f1f1; /* Track background */
  border-radius: 6px;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  tbody::-webkit-scrollbar-thumb {
  background-color: var(--mc1); /* Scroll thumb color */
  border-radius: 6px;
  border: 3px solid #f1f1f1; /* Creates padding around thumb */
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr
  td.SubHead
  tbody::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Hover effect */
}

.project_Search_Wrapper
  table
  tbody
  tr:first-child
  td
  table
  tbody
  tr:last-child
  td:last-child,
.project_Search_Wrapper
  table
  tbody
  tr:nth-child(2)
  td
  table
  tbody
  tr:last-child
  td:last-child {
  display: none !important;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody tr {
  width: 258px !important;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody td {
  display: flex;
  justify-content: space-between;
}

.project_Search_Wrapper select {
  border: none;
  background: #fff;
  height: 300px !important;
}

.project_Search_Wrapper select:focus {
  border-color: transparent;
  box-shadow: 0 4px 40px 0 rgba(18, 18, 18, 0.08);
}

@media (max-width: 992px) {
  .project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead {
    width: 416px;
  }
  .project_Search_Wrapper table#tblPropertySearchSmall tr td.SubHead tbody tr {
    width: 376px;
  }
  .project_Search_Wrapper {
    margin-bottom: 40px;
  }
}

/* Propery Agent */

body:is(.personabar-visible) {
  .DNNModuleContent.ModPropertyAgentC {
    /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    margin: 20px 0;

    /* Header Section */
    .ModPropertyAgentC > table:first-of-type {
      width: 100%;
      margin-bottom: 20px;
      /* border-bottom: 1px solid #f1f5f9; */
      padding-bottom: 16px;
    }

    .NormalBold {
      font-weight: 600;
      color: #1e293b;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .NormalBold:hover {
      color: #3b82f6;
    }

    /* Action Buttons */
    #PropertyAgentButtons {
      display: flex;
      gap: 12px;
      justify-content: flex-end;
    }

    .CommandButton {
      display: inline-block;
      padding: 10px 20px;
      background: var(--mc2);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 500;
      font-size: 13px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--mc2);
      cursor: pointer;
    }

    .CommandButton:hover {
      /* transform: translateY(-2px); */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      background: var(--mc1);
    }

    /* Sort Section */
    #dnn_ctr2398_Default_ViewType_divSort {
      background: #f8fafc;
      padding: 16px;
      border-radius: 8px;
      margin-bottom: 20px;
      border: 1px solid #e2e8f0;
    }

    .SubHead {
      font-weight: 600;
      color: #374151;
      margin-right: 12px;
      font-size: 14px;
    }

    .NormalTextBox {
      padding: 8px 12px;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      font-size: 13px;
      background: white;
      transition: all 0.3s ease;
      margin: 0 8px;
    }

    .NormalTextBox:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .DNNModuleContent.ModPropertyAgentC {
        padding: 16px;
        margin: 10px;
      }

      #PropertyAgentButtons {
        flex-direction: column;
        gap: 8px;
      }

      .CommandButton {
        text-align: center;
      }

      #dnn_ctr2398_Default_ViewType_divSort {
        text-align: center;
      }

      .NormalTextBox {
        margin: 8px 4px;
        width: calc(50% - 8px);
      }
    }
  }
}

.home_Wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* margin-bottom: 160px; */
}

.news_Itm_Wrapper:first-child {
  grid-area: 1 / 1 / 2 /2;
}

.news_Itm_Wrapper:nth-child(2) {
  grid-area: 2 / 1 / 3 / 2;
}

.news_Itm_Wrapper:nth-child(3) {
  grid-area: 1 / 2 / 3 / 4;
  height: 629px;
  margin-bottom: -68px;
}

.news_Itm_Wrapper:nth-child(4) {
  grid-area: 1 / 4 / 2 / 5;
}

.news_Itm_Wrapper:nth-child(5) {
  grid-area: 2 / 4 / 3 / 5;
}

.news_Itm_Wrapper .news_Itm > a {
  overflow: hidden;
  border-radius: 20px;
}

.news_Itm_Wrapper .news_Itm > a img {
  transition: 1s;
}

.news_Itm_Wrapper .news_Itm:hover > a img {
  transform: scale(1.04);
}

.news_Itm_Wrapper:not(:nth-child(3)) .news_Itm > a {
  height: 200px;
}

.news_Itm_Wrapper:is(:nth-child(3)) .news_Itm > a {
  height: 478px !important;
}

.news_Itm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.news_Itm_Summary,
.news_Itm_Date {
  display: none;
}

@media (max-width: 992px) {
  .home_Wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .news_Itm_Wrapper:is(:nth-child(3)) .news_Itm > a {
    height: 200px !important;
  }
  .news_Itm_Wrapper:nth-child(3) {
    height: unset;
    margin-bottom: 0;
  }
  .logo__Title_Center .title {
    margin-bottom: 20px;
  }
}

.current_Projects_Wrapper > table > tbody {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 24px;
  flex-wrap: wrap;
}

.current_Projects_Item table tr td img {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 40px 0 rgba(18, 18, 18, 0.08);
  padding: 32px 16px;
}

/* .current_Projects_Item table.album-frame {
  display: none;
} */

/* .project_Inner_Gallery table#dnn_ctr2398_Default_ViewProperty_ctl00 > tbody > tr > td:first-child{
  display: none;
} */

.project_Inner_Gallery {
  position: relative;
}

.project_Inner_Gallery
  table#dnn_ctr2398_Default_ViewProperty_ctl00
  > tbody
  > tr
  > td {
  max-width: 200px !important;
}

.project_Inner_Gallery .slick-slide {
  height: max-content;
}

body.rtl .gallery_Arrows .slick-arrow {
  background-color: var(--mc2) !important;
  box-shadow: none !important;
}

body.rtl .gallery_Arrows .slick-arrow:hover {
  background-color: var(--mc1) !important;
}

body.rtl .gallery_Arrows .slick-arrow::before {
  background-color: #fff !important;
}

body.rtl .gallery_Arrows .slick-arrow.slick-prev {
  right: -80px !important;
}

body.rtl .gallery_Arrows .slick-arrow.slick-next {
  right: unset !important;
  left: -80px !important;
}

@media (max-width: 992px) {
  body.rtl .gallery_Arrows .slick-arrow.slick-prev {
    bottom: -70px !important;
    top: unset !important;
    right: 70px !important;
  }
  body.rtl .gallery_Arrows .slick-arrow.slick-next {
    bottom: -70px !important;
    top: unset !important;
    left: 70px !important;
  }
}

.current_Projects_Item
  table#dnn_ctr2417_Latest_ctl00_ctl00_0
  > tbody
  > tr
  > td:not(:first-child),
.current_Projects_Item
  table#dnn_ctr2419_Latest_ctl00_ctl00_0
  > tbody
  > tr
  > td:not(:first-child) {
  display: none;
}

#dnn_ctr2398_Default_ViewType_divSearch {
  display: none;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr:first-child,
.project_Search_Wrapper table#tblPropertySearchSmall tr:nth-child(2) {
  position: relative;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr {
  width: 300px !important;
}

.project_Search_Wrapper table#tblPropertySearchSmall tr:first-child td.SubHead,
.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr:nth-child(2)
  td.SubHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 44px;
}

.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr:first-child
  td.SubHead
  > label,
.project_Search_Wrapper
  table#tblPropertySearchSmall
  tr:nth-child(2)
  td.SubHead
  > label {
  margin-bottom: 0;
}

/* ----------------------- Current ----------------------- */

.current_Projects_Wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 40px;
}

.current_Project_Card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 30px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 40px 0 rgba(18, 18, 18, 0.08);
  transition: 0.3s;
}

.current_Project_Card:hover {
  border-color: var(--mc1);
}
.rtl .SiteMap-Default .Default,
.rtl .SiteMap-Default .Default>ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: end;
  width: 100%;
}
@media (max-width: 768px) {
  .rtl .SiteMap-Default .Default,
  .rtl .SiteMap-Default .Default>ul {
    justify-content: center;
  }

  .rtl .SiteMap-Default .Default,
.rtl .SiteMap-Default .Default>ul {
  grid-template-columns: repeat(1, 1fr);
}
}

.SiteMap-Default .SubLi:first-child {
  display: none !important;
}

.SiteMap-Default .SubLi > .SubItem {
  font-size: 16px !important;
  font-weight: 600;
}

.site-map .SubLi .SubUl {
  display: flex;
  flex-flow: column !important;
  gap: 5px;
}
.rtl .SiteMap-Default .SubLi {
  height: max-content;
  display: flex;
  flex-flow: column !important;
  gap: 5px;
}

@media (min-width: 992px) {
  #dnn_ctr766_ContentPane .PagingTable {
    position: absolute;
    left: 50%;
    transform: translateX(-95%) !important;
    margin-top: 40px;
  }
}

/* #dnn_ctr766_ContentPane .CommandButton{
  color: #FFF !important;
} */
/***************************************Count Down**********************************************/
.wrapper_Countdown {
  background-color: #fff;
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07) !important;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.box_Content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box_Content > div {
  width: 100%;
}

.dnnCheckbox {
  width: max-content;
}

.Normal.cats td {
  display: flex;
}
/******************************************Advance  search Demo Blog*********************************************/
.archive_Search_Link {
  background-color: var(--primary-50);
  padding: 8px 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  border-radius: 6px;
  position: relative;
  transition: 0.3s;
}

.archive_Search_Link:hover {
  background-color: var(--primary-40);
}

.archive_Search_Link img {
  filter: brightness(3) saturate(0) contrast(2);
  height: 24px;
  width: 24px;
}

.archive_Search_Wrapper input {
  border-radius: 0px 6px 6px 0px;
  height: 36px !important;
  border: none !important;
}

.archive_Search_Wrapper #articleSearchFormSmall input[type="submit"] {
  border-radius: 6px 0 0 6px;
  background: #fff !important;
  mask: url(/DesktopModules/DnnForge%20-%20NewsArticles/Templates/Standard/Images/search-tool.png)
    no-repeat center center / 25px !important;
  position: absolute;
  left: -0.4rem;
  top: 0;
  z-index: 1;
}

.archive_Search_Wrapper {
  position: relative;
  background: #fff;
  border-radius: 6px;
  height: 56px;
}

.archive_Search_Wrapper::before {
  content: "";
  background-color: var(--primary-50);
  height: 36px;
  width: 36px;
  position: absolute;
  left: 0;
  top: 0;

  border-radius: 6px;
  z-index: 1;
}

.archive_Search_Wrapper .ModDnnForgeNewsSearchC {
  height: 56px;
  display: flex;
  align-items: center;
}

.archive_Search_Wrapper #articleSearchFormSmall {
  height: 56px;
  position: relative;
  margin: 0 !important;
}

.archive_Search_Wrapper #articleSearchFormSmall > div {
  height: 36px;
}

.DnnModule-DnnForge-NewsSearch:has(.archive_Search_Wrapper) .dnntitle h3 {
  height: 70px !important;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .archive_Search_Wrapper #articleSearchFormSmall::before {
    left: 36px;
  }

  .archive_Search_Wrapper #articleSearchFormSmall input[type="text"] {
    width: 92%;
  }
}

.wrapper_Search_Sidebar {
  background: #fff;
  padding: 20px 20px;

  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0px 8px 40px 0px rgba(18, 18, 18, 0.07);
}
.wrapper_Search_AdvaneceNewsArticle {
  margin-top: 5rem;
}
.dnnFormItem input[type="submit"],
.dnnPrimaryAction {
  background-color: var(--primary-60) !important;
}
@media (max-width: 1024px) {
  .news_Related_Wrapper {
    overflow: auto;
  }
}
@media (max-width: 768px) {
  .trancparency__filter_Wrapper,
  .transparency__Charts_Wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) and (min-width: 600px) {
  .main__Blog .listItem {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog_Card_Home {
    margin-bottom: 2rem;
  }
}
@media (max-width: 599px) {
  .main__Blog .listItem {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog_Card_Home {
    margin-bottom: 2rem;
  }
  main:not(.loginMain) {
    padding-block: 30px;
  }
  .news_Related_Wrapper {
    overflow: auto;
  }
  .news_Related_Item {
    flex: 1 0 75% !important;
  }
  .blog__Detail__Comment__Post .col-lg-8 div.Normal {
    flex-direction: column;
  }
  .leqa .home-content .DisplayName {
    margin-block: 1rem;
    position: unset !important;
    height: unset !important;
    min-width: unset !important;
    width: 100%;
  }
}
.demo_Dirctory {
  margin-bottom: 0 !important;
}
.home_Main #dnn_ctr778_ViewCalendarAndEvent_ctlAjax {
  margin-block: 0 !important;
}
.category__Wrapper a.tag {
  background-color: var(--Gray-99);
  color: var(--Gray-30);
}
.category__Wrapper a.tag:hover {
  background-color: var(--primary-40);
  color: var(--white) !important;
}
@media (max-width: 576px) {
  .ClassyCountdown-wrapper {
    flex-wrap: wrap;
  }
  .countdown_row {
    flex-wrap: wrap;
    padding-inline: 0.5rem;
  }
}
