/* #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;
}}

.list1 .container{display: flex;flex-direction: column;gap: 80px;padding-top: 48px;padding-bottom: 100px;}.list1 .section-top{display: flex;flex-direction: column;gap: 16px;}.list1 .section-top-child{display: flex;flex-direction: column;gap: 13px;}.list1 .section-middle{display: flex;gap: 48px;width: 100%;}.list1 .section-middle-right{width: 50%;}.list1 .section-middle-left{width: 50%;}.list1 .text-about{font-size: 16px;font-weight: 700;line-height: 100%;color: var(--mainColor);}.list1 .text-title{font-size: 28px;font-weight: 800;line-height: 100%;color: var(--darckFont);}.list1 p,.list1 .text-hidden{font-size: 16px;font-weight: 500;line-height: 130%;color: var(--gray);text-align: justify;}.list1 .img-about{object-fit: cover;border-radius: 16px;width: 100%;height: 200px !important;}.list1 .section-middle {display: flex;align-items: flex-start;gap: 20px;}.list1 .section-middle-right img {max-width: 100%;height: auto;display: block;}.list1 .section-middle-left {flex: 1;overflow: hidden;}.list1 .text-visible {overflow: hidden;}.list1 .section-bottom {margin-top: 30px;}@media screen and (min-width: 0) and (max-width: 600px) {.list1 .text-about{font-size: 12px;}.list1 .text-title{font-size: 16px;}.list1 .text{font-size: 12px;}.list1 .section-top{gap: 10px;}.list1 .section-top-child{gap: 10px;}.list1 .container{gap: 0;padding: 36px 0 92px 0;}.list1 .section-middle{display: flex;flex-direction: column;gap: 22px;}.list1 .section-middle-right{width: 100%;}.list1 .section-middle-left{width: 100%;}.list1 .img-about{height: 200px;}.list1 .section-top{padding-bottom: 49px;}}
