/* #region Primary */

:root{
    --darckFont:#282828;
    --detailsFont:rgba(40, 40, 40);
    --fontActive: #000300;
    --mainBorder: 1px solid rgba(40, 40, 40);
    --boxBorder: 1px solid #E0E0E0;
    --iconinput:#E0E0E0;
    --mainColor:#4AAA97;
    --bgAccent: #C2F0E5 ;
    --accentColor:#3C9FF0;
    --ligth:#ffff;
    --danger: #ff444e;
    --redMain: #DF315D;
    --background : #F9F9F9 ;
    --backgroundLight : #E9E9E9;
    --radius:8px;
    --gray: #28282880;
    --lightGray: #00030080;
    --darkGray: #979797;
    --textGray:#6B6B6B;
    --tran: 0.3s all ease;
}

*
{
    margin: 0;
    padding: 0;
    line-height: 1.5;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    font-family: 'iranYekan';
}

body {
    background-color:var(--background) ;
    overflow-x: hidden;
    color: var(--darckFont);
}

.wrapper {
    display: flow-root;
    max-width: 1280px;
    padding: 0px 16px;
    margin: 0 auto;
    box-sizing: border-box;
}


a:hover{
    text-decoration: none;
}

.flexCenterBet {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineClamp{
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.num {
  direction: ltr;
}

.vector {
    display: inline-block;
    width: max-content;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: var(--tran);
}

.vectorPrimary , .vectorPrimary:before, .vectorPrimary:after{
  background-color: var(--mainColor);
}

.vectorAccent , .vectorAccent:before, .vectorAccent:after  {
  background-color: var(--bgAccent);
}

.vector:before, .vector:after {
    content: '';
    display: flow-root;
    width: 21px;
    height: 85%;
    -webkit-mask-image: url(View/1014/icon/btn-vector-fill.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    position: absolute;
    top: 50%;
    transition: var(--tran);
}

.vector:before {
    left: 5px;
    transform: translate(-100%, -50%);
}

.vector:after {
    transform: translate(100%, -50%) rotate(180deg);
    right: 5px;
}

/* #endregion */

/* #region Fonts */

@font-face {
  font-family: 'iranYekan';
  src: url('View/1014/font/IRANYekanXVFaNumVF.woff2');
}

.peyda400 {
    font-family: 'iranYekan';
    font-weight: 400;
}

.peyda600 {
     font-family: 'iranYekan';
     font-weight: 600;
}

.peyda700 {
    font-family: 'iranYekan';
    font-weight: 700;
}

.peyda800 {
    font-family: 'iranYekan';
     font-weight: 800;
}

.fontTitle {
    font-size: 32px;
}

.fontBig {
    font-size: 28px;
}

.fontHMed {
    font-size: 20px;
}

.fontMed {
    font-size: 18px;
}

.fontSmall {
    font-size: 14px;
}

.fontLight {
    color: var(--ligth);
}

.fontPrimary {
    color: var(--mainColor);
}

.fontDark {
  color: var(--darckFont);
}

.fontGray {
    color: var(--gray);
}

.fontLightGray {
    color: var(--lightGray);
}

.fontDarkGray {
    color: var(--darkGray);
}


/* #endregion */

/* #region Header */

.hamburger {
    width: 50% ;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--background);
    padding: 10px 34px;
    display: none;
    z-index: 1000;
}

.hamburger .closeIcon{
    content: '';
    -webkit-mask-image: url(View/1014/icon/closeIcon.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    background-color: var(--darckFont);
    width: 12px;
    height: 12px;
    display: flow-root;
    cursor: pointer;
}

.hamburger .links {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}

.hamburger.showMenu {
    animation: showMenu 0.5s forwards;
}

.hamburger.hideMenu {
    animation: hideMenu 0.5s forwards;
}

@keyframes showMenu {
    0%{
        right: -100%;
    }
    100%{
        right: 0;
    }
}
@keyframes hideMenu {
    0%{
        right: 0;
    }
    100% {
        right: -100%;
    }
}

backward{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    z-index: 999;
}

header {
  background-color: var(--ligth);
}

header .menu {
    background-image: url(View/1014/icon/menu.svg);
    background-size: cover;
    width: 20px;
    height: 16px;
    display: inline-block;
    display: none;
}

header .headerTop {
  background-color: var(--fontActive);
}

header .headerTop .headerNums {
  display: flex;
  gap: 32px;
  color: var(--ligth);
  padding-block: 8px;
  align-items: center;
}

header .headerTop .headerNums .num {
  direction: ltr;
}

header .headerTop .headerNums .num::before {
  content: '';
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
  -webkit-mask-image: url(View/1014/icon/calling.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--ligth);
}

/* header .webbar .logo {
  cursor: pointer;
} */

header .webbar .links {
  display: flex;
  gap: 32px;
}

header .webbar .webbarMenu {
    display: flex;
    align-items: center;
    gap: 18px;
}

header .webbar .links a.active {
  color: var(--fontActive);
}

.logoMenu img {
    width: 68px;
   height: 60px;
}

/* #endregion */

/* #region paging */
paging{
    justify-content: flex-end;
    /* margin-top: 48px; */
    position: relative;
    display: flex;
    direction: ltr;
    align-content: center;
}

paging a{
    display: flex;
    width: 32px !important;
    height: 32px !important;
    line-height: 1;
    margin: 0 4px;
    cursor: pointer;
    /* display: inline-flex; */
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all ease-in-out 0.2s;
    background-color: #FFFFFF;
    /* background-color: #00B38A; */
    color: var(--default);
    font-size: 10pt;
    text-align: center;
    padding: 6px 0;
    align-content: center;
}

paging a.active {
    display: flex;
}

paging a:hover {
    transform: scale(1.2);
}

paging a.Current{
    width: 32px;
    text-decoration: unset;
    font-size: 10pt;
    background: #4AAA97;
    color: white;
    display: block;
    /* background: var(--grdAccent);
    color: var(--light); */
    transform: scale(1.2);
    align-content: center;
}   

list paging {
  width: 100%;
  display: flex;
  /* justify-content: flex-start; می‌فرستش سمت راست */
  order: 999;
  padding-top: 20px;
}

paging a .icon{
    display: block;
    position: absolute;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 24px;
    width: 24px;
    height: 24px;
    /* background: var(--accent); */
    /* background: #00B38A !important; */
    /* background: black; */
    left: 0;
    color: var(--black);
}
/* a.paging.icon{
    background: #00B38A;

} */

paging a.icon img{
      margin-top: 0px !important;
}

.first-page .icon{
    background-image: url('View/1014/icon/First.svg');
    -webkit-mask-image: url('View/1014/icon/First.svg');
    /* background: var(--grdAccent); */
    /* background: #00B38A; */
    background: black;
    top: 0px;
    left: -1px;
}

.icon.prevPage:before{
    -webkit-mask-image: url('View/1014/icon/prev.svg');
    /* -webkit-transform: scaleX(-1); */
    /* transform:rotate(0deg); */
    /* background: #00B38A; */
    /* background: var(--grdAccent); */
    background: black;
    top: 1px;
    left: 0;
}

.icon.firstPage:before , .icon.lastPage:before {
    -webkit-mask-image: url('View/1014/icon/First.svg');
    /* -webkit-transform: scaleX(-1); */
    /* transform:rotate(-180deg); */
    /* background: var(--grdAccent); */
    background: black;
    top: 1px;
    left: 0;
}

.icon.lastPage:before {
    transform: rotate(180deg);
}

.last-page .icon{
    mask-image: url('View/1014/icon/last.svg');
    -webkit-mask-image: url('View/1014/icon/last.svg');
    /* background: var(--grdAccent); */
    background: black;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    width: 100%;
    height: 100%;
    top: 1px;
    left: 1px;
}

.icon.nextPage:before{
    -webkit-mask-image: url('View/1014/icon/next.svg');
    /* transform: rotate(0deg); */
    /* background:#00B38A; */
    /* background: var(--grdAccent); */
    background: black;
    top: 1px;
    left: 1px;
}

page-text {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(4%, 25%);
    font-size: 10pt;
}

/* #endregion */

/* #region Footer */


footer {
  background-color: var(--darckFont);
}

/* footer .footerMain {
  padding-block: 46px 77px ;
} */

footer .footerMain .footerSections {
    gap: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 46px 77px ;
    border-bottom: 1px solid var(--ligth);
}

footer .footerMain .footerSections .footerParent1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 90px;
}

footer .footerMain .footerSections .footerParent2 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 177px;
}

footer .footerMain .footerSections .footerTitle{
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ligth);
}

footer .footerMain .footerSections .footerLabel {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .footerMain .footerSections .footerSection1 h3 {
  margin-bottom: 30px;
} 

footer .footerMain .footerSections .footerSection2 .footerLabel {
  gap: 10px;
}

footer .footerMain .footerSections .footerSection4 {
  display: flex;
  gap: 26px;
  align-items: end;
  margin-bottom: 10px;
}

footer .footerMain .arrowSection {
  position: relative;
}

footer .footerMain .arrowSection.active img {
    transform: rotate(360deg);
}

footer .footerMain .arrowSection img {
    width: 16px;
    cursor: pointer;
    transition: var(--tran);
    position: absolute;
    left: 0;
    top: 6px;
    display: none;
    transform: rotate(180deg);
}

/* footer .footerMain .footerSections .footerLabel a {
  padding-top: 16px;
} */

footer .footerMain .footerCopyright {
  padding-block: 16px;
}

footer .footerMain .footerCopyright .socialSection {
  display: flex;
  gap: 30px;
}

footer .footerMain .socialIcons {
  display: flex;
  gap: 16px;
}

footer .footerMain .footerSections .socialSection1 {
  display: none;
}

/* #endregion */

 /* require labels */
 .require-lbl::after{
     content: "*";
     position: relative;
    color: red;
    right: 3px;
    top: -2px;
 }@media screen and (min-width: 600px) and (max-width: 1024px) {
.hamburger {
    display: flow-root;
    padding: 0 16px;
}

.authorize {
    margin-left: 12px;
}


header .headerTop {
    display: none;
}

header .webbar .links {
    display: none;
}

header .webbar .menu {
    display: inline-block;
}

header .webbar .logo {
    width: 70px;
    height: 62px;
}

footer .footerMain .footerSections {
    padding: 40px 4px;
}

footer .num {
    place-self: baseline;
}

footer .footerMain .footerSections .socialSection1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

footer .footerMain .socialSection2 {
    display: none!important;
}

footer .footerMain .footerSections .footerParent2 {
    gap: 60px;
}

footer .footerMain .footerSections .footerSection4 {
    justify-content: center;
}

footer .footerMain .arrowSection img {
    display: inline-block;
}

.grid {
    grid-template-columns: 1fr !important;
}

.fontTitle {
    font-size: 28px;
}

.fontBig {
    font-size: 24px;
}

.fontHMed {
    font-size: 19px;
}

.fontMed {
    font-size: 17px;
}

.fontSmall {
    font-size: 14px;
}}@media screen and (min-width: 0) and (max-width: 600px) {
.hamburger {
    display: flow-root;
    padding: 0 16px;
}

.authorize {
    margin-left: 12px;
}

header .headerTop {
    display: none;
}

header .webbar .links {
    display: none;
}

header .webbar .menu {
    display: inline-block;
}

header .webbar .logo {
    width: 56px;
    height: 52px;
}

footer .footerMain .footerSections {
    padding: 40px 4px;
}

footer .num {
    place-self: baseline;
}

footer .footerMain .footerSections .socialSection1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

footer .footerMain .socialSection2 {
    display: none!important;
}

footer .footerMain .footerSections .footerParent2 {
    gap: 60px;
}

footer .footerMain .footerSections .footerSection4 {
    justify-content: center;
}

footer .footerMain .arrowSection img {
    display: inline-block;
}

.grid {
    grid-template-columns: 1fr !important;
}

.fontTitle {
    font-size: 23px;
}

.fontBig {
    font-size: 20px;
}

.fontHMed {
    font-size: 17px;
}

.fontMed {
    font-size: 15px;
}

.fontSmall {
    font-size: 13px;
}}
/* * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    } */

    .container-top {
      width: 100%;
      /* max-width: 1440px; */
      margin: 0 auto;
      /* padding: 20px; */
      /* background: white; */
    }
    .container-bottom {
      width: 100%;
      /* max-width: 1440px; */
      margin: 0 auto;
      /* padding: 0 20px; */
    }

    /* Hero Section */
    .hero-section {
      background-color: white;
      border-radius: 16px;
      box-shadow: 0px 2px 8px 0px #00000005;
      border: 1px solid #E0E0E0;
      overflow: hidden;
      margin: 20px auto;
      /* max-width: 1440px; */
      position: relative;
    }

    .hero-content {
      display: flex;
      flex-direction: row;
        align-items: center;
        justify-content: space-between;
      gap: 56px;
      padding: 32px;
    }

.hero-header{
      display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}
    .hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .hero-date {
      font-size: 16px;
      color: #282828;
      text-align: right;
    }

    .hero-title {
      font-size: 24px;
      font-weight: 700;
      color: #282828;
      margin: 0;
      text-align: right;
    }

    .hero-description {
      color: #28282880;
      font-size: 16px;
      line-height: 1.8;
      /* text-align: right; */
      display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    }

    .hero-image {
      /* flex: 1; */
      width: 100%;
      max-width:431px;
      height: 262px;
      border-radius: 16px;
      object-fit: cover;
      /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */

    }

    .view-new-hero{
          display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-right: 16px;
    }

    /* Cards Section */
    .view-new{
          display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    margin-left: 16px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
      gap: 24px;
    }

    /* Card Component */
    .card {
      background-color: white;
      border-radius: 16px;
            box-shadow: 0px 2px 8px 0px #00000005;

      overflow: hidden;
      padding-block: 24px;
      padding-inline: 16px;
      /* margin: 20px auto; */
      max-width: 800px;
      position: relative;
      border: 1px solid #E0E0E0;
    }

    .card-content {
      display: flex;
      flex-direction: column;
      /* gap: 20px; */
      justify-content: space-between;
      height: 260px;
    }

    .card-header {
      display: flex;
      /* justify-content: space-between; */
      align-items: center;
      /* margin-bottom: 16px; */
      gap: 16px;
    }

    .card-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0;
    }

    .card-image {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      object-fit: cover;
      /* border: 2px solid #e5e7eb; */
    }

    .card-text{
      color: #28282880;
      font-size: 16px;
      line-height: 1.8;
      display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    }

    /* Button Styles */
    /* Button Container */
    .button-container {
      position: relative;
      display: inline-block;
      cursor: pointer;
      transition: transform 0.2s ease;
      width: 124px;
      height: 44px;
    }

    .button-container:hover {
      transform: scale(1.05);
    }

    /* SVG Styles */
    .button-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      fill: #4AAA97;
    }

    /* Text Styles */
    .button-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-weight: 600;
      font-size: 16px;
      white-space: nowrap;
      z-index: 2;
      text-align: center;
      margin: 0;
      direction: rtl;
    }

/* کپیش نکن */
paging {
    grid-column: 1/3;
    width: 150% !important;
    flex-direction: row-reverse;
}

.card-top-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
column{
  padding-top: 48px;
  padding-bottom: 100px;
}@media screen and (min-width: 600px) and (max-width: 1024px) {
.hero-content {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
    .hero-image {
    /* flex: 1; */
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
paging {
    justify-content: center;
  }}@media screen and (min-width: 0) and (max-width: 600px) {
.hero-content {
        flex-direction: column-reverse;
        padding-block: 34px;
        padding-inline: 13px;
        gap: 16px;
      }
      
      .hero-text {
        gap: 16px;
      }
      .hero-title{
          display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    width: 100%;
      }
      .hero-title p{
          font-size: 14px;
      }
      .hero-date{
              display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    width: 100%;
      }
      .hero-date p{
          font-size: 12px;
      }
      .hero-image {
        order: 2;
      }
.hero-header{
    
    flex-direction: column-reverse;
        gap: 16px;
}
.button-text {
        font-size: 14px;
      }

.header-content {
        flex-direction: column;
        gap: 16px;
      }
      
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .contact-info {
        justify-content: center;
      }
      
      .hero h1 {
        font-size: 20px;
      }
      
      .cards-grid {
        /* grid-template-columns: 1fr; */
        /* column-gap: 0; */
        display: flex;
        /* column-gap: 0; */
        flex-direction: column;
      }

      .card {
        padding-block: 16px;
        padding-inline: 13px;
        /* margin: 16px auto; */
      }
      
      .card-header {
        align-items: center;
        gap: 22px;
      }
      
      .card-image {
        width: 46px;
        height: 46px;
      }
      
      .card-title p{
        font-size: 14px;
      }
      .card-text {
      font-size: 12px;
      line-height: 1.8;
      display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    }
      .authorize-hero{
          width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-left: 16px;
      }
      .authorize{
          width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
      }
      .hero-description {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
  }
  paging {
    justify-content: center;
  }}


