:root {
    --primary : #680000 ;
    --accent : #212121 ;
    --white : #ffffff;
    --light-white : #ffffff75 ;
    --light-gray : #EAEAEA;
    --gray : #606060 ;
    --accent-gray : #E9E9E9 ;
    --default: #767676;
    --hint: #CAC9C9;
    --backColor: #F0F0F0;
    --transition: all ease 0.3s ;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
body {
    overflow: hidden;
    color: var(--accent);
}
.bodyBox{
    direction: ltr;
}
.bodyBox > div , .bodyBox > page{
    direction: rtl;
}
.bodyBox{
	overflow-x: auto;
	scrollbar-color: var(--hint) var(--backColor);
	scrollbar-width: thin;
}
/*------ Chrome --------*/
.bodyBox::-webkit-scrollbar {
	width: 8px;
}
/* Track */
.bodyBox::-webkit-scrollbar-track {
  	background: var(--backColor); 
}
 
/* Handle */
.bodyBox::-webkit-scrollbar-thumb {
  	background: var(--hint); 
}

/* Handle on hover */
.bodyBox::-webkit-scrollbar-thumb:hover {
  background: var(--default); 
}

.btn:hover {
    opacity: 0.9;

    transition: var(--transition);
}
.over-flow {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.container {
    max-width: 1320px;
    display: flow-root;
    margin: 0 auto;
    padding: 0 40px ;
    box-sizing: border-box;
}
/*#region loggedIn*/
.loggedIn-out {
    position: relative;
}
.loggedIn-out .loginIcon.userImage img{
    width: 125%;
    height: 125%;
    display: flow-root !important;
    transform: rotate(-45deg);
    margin-right: -6px;
    margin-top: -6px;
}
.loggedIn-out .loginIcon.userImage:before{
    content: unset;
}

.loggedIn {
    width: max-content;
    height: 46px;
    background-color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.loggedIn span{
    font-size: 13pt;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: var(--accent);
    transition: var(--transition);
    justify-content: right;
    width: 100%;
    padding-right: 20px;
}
.loggedIn.userName {
    width: max-content;
    padding-left: 50px;
}
.loggedIn.profile , .loggedIn.logOut{
    margin-top: -51px;
    position: relative;
    z-index: -2;
    width: calc( 100% - 20px);
}
.loggedIn.logOut {
    z-index: -3;
}
.parentLoggedIn {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    gap: 5px;
    cursor: pointer;
    z-index: -4;
}
.profile:hover span , .userName:hover span , .logOut:hover span{
    color: var(--primary);
    transition: var(--transition);
}
.loginIcon:hover + .parentLoggedIn .profile , .loginIcon:hover + .parentLoggedIn .logOut , .parentLoggedIn:hover .profile , .parentLoggedIn:hover .logOut{
    margin-top: 0;
    transition: var(--transition);
}
.profile span:before , .logOut span:before {
    content: '';
    width: 25px;
    height: 25px;
    background: var(--accent);
    -webkit-mask-image: url(View/1014/icon/loginIcon.svg);
    -webkit-mask-position: right;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 18px;
    display: inline-block;
    margin-left: 5px;
}
.logOut span:before {
    -webkit-mask-image: url(View/1014/icon/Iconly-Broken-Logout.svg);
    -webkit-mask-size: 25px;
    -webkit-mask-position: center;
    width: 35px;
    margin-right: -10px;
}
.profile:hover span:before , .logOut:hover span:before {
    background: var(--primary);
    transition: var(--transition);
}
/*#endregion*/
.loginIcon  , .humburger{
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flow-root;
    transform: rotate(45deg);
    cursor: pointer;
    position: relative;
    margin-left: 7px;
    overflow:  hidden;
}
.loginIcon:before,  .humburger:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) rotate(-45deg);
    -webkit-mask-image: url(View/1014/icon/loginIcon.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 18px;
    background: white;
}
.humburger:before {
    -webkit-mask-image: url(View/1014/icon/menu.svg);
    -webkit-mask-size: 23px;
}
.humburger{
    display: none;
}
backward {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 50;
}
.Menu-responsive{
    position: fixed;
    width: 70%;
    height: 100%;
    background-color: var(--light-gray);
    top: 0;
    right: -100%;
    z-index: 200;
}
.Menu-responsive.showMenu {
    animation: showMenu 0.75s forwards;
}
.Menu-responsive.hideMenu {
    animation: hideMenu 0.75s forwards;
}
.Menu-responsive img {
    width: 100px;
    display: flow-root;
    margin: 15px auto;
}
.Menu-responsive .lineMenu {
    width: 60%;
    height: 35px;
    margin: 0 auto;
}
.Menu-responsive .lineMenu:before {
    content: '';
    background-image: url(View/1014/icon/contactline.svg);
    background-size: 1770px;
    background-position: -1390px 0;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flow-root;
}
.Menu-responsive a {
    display: flow-root;
    font-size: 13pt;
    margin: 15px 35px;
    color: var(--accent);
    text-align: center;
}
.Menu-responsive .socialMedia {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.Menu-responsive .socialMedia a {
    margin: 0 0 0 0;
    background: var(--primary);
    position: relative;
    width: 22px;
    height: 22px;
}
.Menu-responsive .socialMedia .insta:after {
    background-color: var(--primary);
}
.Menu-responsive .container {
    display: flex;
    flex-direction: column-reverse;
    width: 60%;
    padding: 0;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50% , 0);
}
.Menu-responsive .socialMedia .insta {
    background-image: linear-gradient( to bottom right , #6166E3 , #F7353D  );
}
.Menu-responsive .spanFooter {
    width: 100%;
}
.Menu-responsive .callNumber {
    width: 100%;
    margin: 14px 0 0 0;
    border-top: 2px solid var(--primary);
    padding-top: 14px;
}
.Menu-responsive .callNumber a {
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14pt;
    margin: 0px 0 10px 0;
    gap: 10px;
}
.Menu-responsive .callNumber a:after {
    content: '';
    -webkit-mask-image: url(View/1014/icon/Call.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background: var(--primary);
    width: 22px;
    height: 22px;
    display: flow-root;
}
@keyframes showMenu{
    0%{
        right: -100%;
    }
    100%{
        right: 0;
    }
}
@keyframes hideMenu{
    0%{
        right: 0;
    }
    100%{
        right: -100%;
    }
}
.Menu-responsive .closeMenu {
    width: 25px;
    height: 25px;
    -webkit-mask-image:url(View/1014/icon/close.svg) ;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background: var(--accent);
    display: flow-root;
    position: absolute;
    top: 15px;
    right: 35px;
}
.headerMenu {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 50;
    margin: 0 auto;
    padding: 15px 30px !important;
    border-radius: 0 0 16px 16px;
    box-sizing: border-box;
    transition: all ease 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerMenu.container{
    max-width: 1300px;
    transition: all ease 0.3s;
}
.headerMenu .mainLogo {
    background-image: url(View/1014/icon/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    display: inline-block;
    vertical-align: middle;
}
.headerMenu.scrolled {
    box-shadow: 1px 15px 24px #21212117;
    background: white;
    transition: all ease 0.2s;
    max-width: 1240px;
    transition: all ease 0.3s;
}
.links a {
    color: var(--accent);
    font-size: 13pt;
    margin-left: 30px;
    transition: var(--transition);
}
.links a:hover {
    color: var(--primary);
    transition: var(--transition);
}
.item {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 200px;
    border-radius: 12px;
}
.item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: scale(1);
    transition: all ease .3s;
}
.item img:hover{
    transform: scale(1.2);
}
.item p{
    position: absolute;
    display: flex;
    color: var(--white);
    align-items: center;
    justify-content: center;
    bottom: 0;
    background: #212121e0;
    margin: 0;
    border-radius: 8px 8px 12px 12px;
    font-size: 10pt;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    padding: 10px 20px;
}

.hasIcon{
    display: flex;
    align-items: center;
    font-size: 10pt;
    color: var(--white);
    column-gap: 4px;
    transition: var(--transition);
    width: max-content;
    cursor: default;
    overflow: hidden;
}
.moreInfoes .hasIcon {
    padding: 10px 5px 10px 8px;
}
.hasIcon.hoverIcon:hover {
    background-color: var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

i {
    display: block;
    mask-repeat: no-repeat;
    mask-size: 20px;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 18px;
    -webkit-mask-position: center;
    width: 24px;
    height: 24px;
    margin-top: -2px;
    background: #c6c6c6;
    transition: var(--transition);
}
i.icoAttachedFile{
    -webkit-mask-image: url(View/1014/icon/Download.svg);
    -webkit-mask-size: 15px;
}
i.icoVisit{
    -webkit-mask-image: url(View/1014/icon/Show.svg);
}
i.icoCalender{
    -webkit-mask-image: url(View/1014/icon/Calendar.svg);
    -webkit-mask-size: 15px;
}
i.icoShared{
    -webkit-mask-image: url(View/1014/icon/shared.svg);
    -webkit-mask-size: 15px;
}
.card {
    display: flow-root;
    margin: 40px auto;
    background: var(--white);
    width: 100%;
    min-height: 100px;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}
.card.details > div  {
    position: relative;
}
.card.details > div > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.card.details > div > .moreInfoes{
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
}
/*#region background-image*/
.background {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
}
.background img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.border {
    position: relative;
}
.border:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 28px;
    top: 50%;
    background-color: var(--primary);
    border-radius: 15px;
}
.border.left:before {
    left: 0;
    transform: translate(-50% , -50%);
}
.border.right:before {
    right: 0;
    transform: translate(50% , -50%);
}
.border.bottom:before {
    bottom: 0;
    top: unset;
    left: 50%;
    transform: translate(-50% , 50%);
    width: 35%;
    height: 12px;
}
/*#endregion*/

/*#region footer*/
.footer {
    background-image: url(View/1014/image/back-footer.svg);
    background-position: 50px 0;
    background-size: cover;
    background-repeat-y: no-repeat;
    width: 100%;
    padding-top: 50px;
    box-sizing: border-box;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    border-top: 10px solid var(--white);
}
.footer:before , .namads:before {
    content: '';
    background-image: url(View/1014/icon/Rectangle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 10%;
    right: 25%;
}
.namads:before {
    top: unset;
    right: unset;
    left: 0;
    width: 350px;
    height: 350px;
    bottom: -81%;
    left: -5px;
}
.footerContent {
    width: 75%;
    display: inline-block;
    vertical-align: top;
}
.spanFooter {
    display: inline-block;
    vertical-align: top;
    width: 70%;
} 
.footer h1 {
    font-size: 16pt;
    color: var(--white);
    position: relative;
    padding-left: 10px;
}
.footer h1:before {
    content: '';
    width: 8px;
    height: 100%;
    background-color: var(--white);
    position: absolute;
    top: 0;
    right: -25px;
    border-radius: 10px;
}
.footerContent p {
    font-size: 13pt;
    color: var(--white);
    line-height: 38px;
    width: 85%;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.navBar {
    width: 24%;
    display: inline-block;
    vertical-align: top;
}
.navBar div {
    margin-top: 14pt;
}
.navBar a {
    display: block;
    color: var(--white);
    font-size: 13pt;
    line-height: 38px;
    transition: var(--transition);
    width: max-content;
}
.navBar a:hover {
    padding-right: 15px;
    transition: var(--transition);
}
.namads{
    width: 30%;
    display: inline-block;
    margin-top: 95px;
    padding-left: 36px;
    box-sizing: border-box;
    float: left;
    position: relative;
}
.namads rotate {
    transform: rotate(45deg);
    width: max-content;
    float: left;
    display: flow-root;
}
.namads div {
    text-align: left;
    height: auto;
    display: flow-root;
    margin-bottom: 14px;
}
.namads a{
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 15px;
    display: inline-flex;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.namads img {
    border: none;
    transform: rotate(-45deg);
    width: 72%;
    display: flow-root;
}
.namads .enamad img {
    width: 65%;
}
.namads .anamad {
    padding: 5px 0 0 5px;
    box-sizing: border-box;
}
.namads .anamad img {
    width: 75%;
}
.callNumber a , .callNumber pipe {
    font-size: 13pt;
    color: var(--white);
}
.callNumber pipe{
    padding: 0 6px;
}
.addressFooter span{
    width: 57%;
    font-size: 13pt;
    color: var(--white);
    line-height: 35px;
    display: inline-block;
    vertical-align: top;
    margin-top: -4px;
}
.callNumber , .addressFooter {
    margin-bottom: 30px;
}
.addressFooter {
    margin-bottom: 15px;
}
.socialMedia {
    width: 60%;
    display: inline-block;
}
.socialMedia a {
    width: 28px;
    height: 28px;
    -webkit-mask-image: url(View/1014/icon/telegram.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background: var(--white);
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    cursor: pointer;
    transition: var(--transition);
}
.socialMedia .telegram:hover {
    background: #1B92CD;
    transition: var(--transition);
}
.socialMedia .insta {
    -webkit-mask-image: url(View/1014/icon/insta.svg);
    background-image: linear-gradient( to bottom right , #6166E3 , #F7353D  );
    -webkit-backface-visibility: hidden;
}
.socialMedia .insta:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity:1;
    background-color: var(--white);
    transition: var(--transition);
}
.socialMedia .insta:hover:after {
    opacity: 0;
    transition: var(--transition);
}
.socialMedia .whatsAp {
    -webkit-mask-image: url(View/1014/icon/whatsAp.svg);
}
.socialMedia .whatsAp:hover {
    background: #43D954;
    transition: var(--transition);
}
.socialMedia .twitter {
    -webkit-mask-image: url(View/1014/icon/twitter.svg);
    margin-left: 0;
}
.socialMedia .twitter:hover {
    background: #70C2E7;
    transition: var(--transition);
}
.copyWrite {
    -webkit-mask-image: url(View/1014/icon/yellowLine.svg);
    -webkit-mask-position: right;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    background: var(--light-gray);
    width: 60%;
    padding: 7px 0;
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 30px;
}

.copyWrite span {
    position: relative;
    z-index: 3;
    color: var(--accent);
    font-size: 11pt;
}
.copyWrite a {
    font-weight: bold;
    color: var(--primary);
}
/*#endregion*/

/*#region login */
.parentLogin {
    margin-top: -100vh;
    height: 100vh;
}
.parentLogin.show {
    animation: login 1s forwards;
    animation-timing-function: cubic-bezier(0,0,0.01,1);
}
.parentLogin.hide {
    animation: closeLogin 1s forwards;
    animation-timing-function: cubic-bezier(0,0,0.01,1);
}
.scrollUser {
    width: 100%;
    overflow: auto;
    display: flow-root;
    height: 100vh;
}
.capchaImg {
    width: 53px;
    position: absolute;
    top: 50%;
    left: 6px;
    border-radius: 6px;
    transform: translate(0% , -50%);
}
.users {
    max-width: 400px;
    background-color: var(--light-white);
    border-radius: 0 0 15px 15px;
    margin: 0 auto;
    padding: 0 50px;
    display: flow-root;
}
.users .loginIcon {
    width: 104px;
    height: 104px;
    margin: 50px auto;
    top: unset;
    position: unset;
    left: unset;
    transform: rotate(45deg);
}
.users .loginIcon:before {
    -webkit-mask-size: 45px;
}
.users h1 {
    text-align: center;
    display: flow-root;
    font-size: 17pt;
    color: var(--accent);
    margin-bottom: 40px;
}
.register h1 , .moarref h1 {
    margin-bottom: 25px;
}
.moarref .btn {
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}
.payam {
    color: var(--gray);
    margin-bottom: 10px;
    display: flow-root;
}
.register .moarrefName {
    margin-bottom: 25px;
}
.input {
    width: 100%;
    background-color: var(--primary);
    display: flow-root;
    border-radius: 8px 6px 6px 8px;
    margin: 0px auto 10px;
}
.input input , .input textarea {
    border: none;
    border-radius: 6px;
    padding: 8px 5px;
    float: left;
    width: calc(100% - 40px);
    background-color: var(--light-gray);
    text-align: center;
    color: var(--accent);
    box-sizing: border-box;
}
.input textarea {
    resize: none;
    height: 200px;
}
.input {
    position: relative;
}
.input:before {
    content: '';
    position: absolute;
    -webkit-mask-image: url(View/1014/icon/loginIcon.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 15px;
    background: var(--white);
    width: 25px;
    height: 25px;
    right: 21px;
    top: 50%;
    transform: translate(50% , -50%);
}
.pass:before {
    -webkit-mask-image: url(View/1014/icon/pass.svg);
}
.BrokenScan:before {
    -webkit-mask-image: url(View/1014/icon/Broken-Scan.svg);
    -webkit-mask-size: 20px;
}
.capchaIcon:before {
    -webkit-mask-image: url(View/1014/icon/capcha.svg);
    -webkit-mask-size: 20px;
}
.login column {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 10px;
}
.checkBox input {
    display: none;
}
.checkBox {
    cursor: pointer;
    display: flex;
    color: var(--accent);
    user-select: none;
}
.checkBox span {
    width: 22px;
    height: 22px;
    background-color: var(--primary);
    border-radius: 5px;
    display: flow-root;
    transition: all ease 0.3s;
    margin-left: 8px;
}
.checkBox input:checked + span:before {
    content: '';
    width: 100%;
    height: 100%;
    display: flow-root;
    background-image: url(View/1014/icon/check.svg);
    background-position: center;
    background-size: 15px;
    background-repeat: no-repeat;
    transition: all ease 0.3s;
}
.login a {
    color: var(--primary);
}
.users .btn {
    width: 100%;
    margin-top: 10px;
}
.createLink  , a.backToLogin{
    color: var(--primary);
    text-align: center;
    display: flow-root;
    font-size: 10pt;
    margin: 20px 0 20px 0;
}
.icon {
    width: max-content;
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.icon h2 , .hamburger h2 , .closeLogin h2 {
    font-size: 25pt;
    line-height: 30px;
    font-weight: normal;
    display: flow-root;
    width: max-content;
    margin: 0 auto;
}
.icon h2 span , .hamburger h2 span , .closeLogin h2 span {
    float: left;
}
.icon column {
    margin-right: 30px;
}
.icon p , .hamburger p{
    color: var(--accent);
    font-size: 12pt;
    margin: 0;
}
.icon p span {
    color: var(--primary);
}
.icon .loginIcon , .arrowDown div {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flow-root;
    transform: rotate(45deg);
    cursor: pointer;
    position: unset;
}
.icon .loginIcon:before , .arrowDown div:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%) rotate(-45deg);
    -webkit-mask-image: url(View/1014/icon/loginIcon.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 18px;
    background: white;
}

.closeLogin h2  {
    margin: 15px auto 0 ;
}
.closeLogin p {
    font-size: 12pt;
    text-align: center;
    display: flow-root;
    margin: 0 0 8px 0;
}
.loginArrow {
    position: relative;
    display: flow-root;
    margin-bottom: 200px;
}
.loginArrow div {
    width: 35px;
    height: 35px;
    margin: 0 auto;
    background-color: var(--primary);
    border-radius: 7px;
    cursor: pointer;
    position: absolute;
    animation: arrowl 3s infinite;
    transform: translate(-50% , -50%) rotate(45deg);
    left: 50%;
}
.loginArrow div:before {
    content: '';
    -webkit-mask-image: url(View/1014/icon/peykan.svg);
    -webkit-mask-position: 10px 9px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 10px;
    background: var(--white);
    width: 100%;
    height: 100%;
    display: flow-root;
    margin: 0 auto;
    transform: rotate(-135deg);
}
@keyframes login {
    100%{
        margin-top: 0;
    }
}
@keyframes closeLogin {
    0%{
        margin-top: 0;
    }
    100%{
        margin-top: -100vh;
    }
}
@keyframes arrowl {
    0%{
        top: 70px;
    }
    50%{
        top: 50px;
    }
    100%{
        top: 70px;
    }
}
/*#endregion */

/*#region register*/
.register {
    max-width: 720px;
    padding-bottom: 30px;
}
.register .radio {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    float: right;
}
.register .loginIcon:before {
    -webkit-mask-image: url(View/1014/icon/register.svg);
}
.semat {
    font-size: 13pt;
    margin-left: 8px;
    display: inline-block;
    float: right;
}
.register > column {
    width: calc(50% - 5px);
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 15px;
}
.register > column:nth-child(2n) {
    margin-left: 0;
}
.input.mail:before {
    -webkit-mask-image: url(View/1014/icon/email.svg);
    -webkit-mask-size: 17px;
}
.input.phone:before {
    -webkit-mask-image: url(View/1014/icon/phone.svg);
    -webkit-mask-size: 20px;
}
.input.title:before {
    -webkit-mask-image: url(View/1014/icon/Chart.svg);
    -webkit-mask-size: 20px;
}
.input.content:before {
    -webkit-mask-image: url(View/1014/icon/Document.svg);
    -webkit-mask-size: 22px;
}
.register .buttonBox {
    display: flow-root;
    direction: ltr;
    width: 100%;
}
.register .btn {
    display: inline-block;
    width: auto;
}
.checkPowerPass{
    width: calc(0% / 5 - 40px);
    height: 5px;
    border-radius: 3px;
    position: absolute;
    top: -6px;
    left: calc(50% - 20px);
    transform: translate(-50% , -50%);
    background-color: red;
    transition: var(--transition);
}
.formatPass {
    float: right;
    display: flow-root;
    margin: 15px 0px;
    color: var(--accent);
}

/*#endregion*/


/*#region controller*/
.float-l {
    float: left;
}
.float-r {
    float: right;
}
.primary {
    color: var(--primary);
}
.accent {
    color: var(--accent);
}
.formInput {
    width: 100%;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    padding: 10px 15px;
    box-sizing: border-box;
    font-size: 12pt;
}
.inputIcon{
    position: relative;    
}
.inputIcon:after  {
    content: '';
    width: 20px;
    height: 20px;
    display: flow-root;
    -webkit-mask-image: url(View/1014/icon/Upload.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 19px;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50% , -50%);
}
.inputIcon.file {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 46px;
    padding-left: 40px;
    cursor: pointer;
}
.file:after {
    left: 13px;
    top: 13px;
    transform: unset;
}
.inputIcon.icon-right:after {
    left: unset;
    right: 25px;
    transform: translate(50% , -50%);
}
.file.icon-right {
    flex-direction: row-reverse;
}
.btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11pt;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn.gray {
    background-color: var(--light-gray);
    color: var(--accent);
}
.btn.shadow {
    box-shadow: 8px 8px 6px 0px #b6b2b2;
}
.btn.btnIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.btn.btnIcon:after {
    content: '';
    display: flow-root;
    width: 20px;
    height: 20px;
    -webkit-mask-image: url(View/1014/icon/bishtar.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: 17px;
    -webkit-mask-repeat: no-repeat;
    background: var(--white);
}
.gray.btnIcon:after {
    background: var(--accent);
}
.btn.btnIcon.icon-right {
    flex-direction: row-reverse;
}
.radius {
    border-radius: 10px;
}
/*#endregion*/

/*#region radio*/
.parentRadio{
    width: max-content;
    display: flow-root;
    margin: 0 auto;
}
.radio {
    width: max-content;
    margin-bottom: 20px;
}
.radio input {
    display: none;
}
.radio label {
    display: flex;
    align-items: center;
    width: max-content;
    margin-left: 10px;
    float: right;
    column-gap: 10px;
    cursor: pointer;
    font-size: 11pt;
}
.radio .fakeRadio {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.radio .fakeRadio:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: flow-root;
    background-color: var(--primary);
    transition: var(--transition);
}
.radio input:checked + .fakeRadio:before {
    background-color: #ffffff;
    transition: var(--transition);
}
/*#endregion */

/*#region select2*/
.input.select2 {
    padding: 0;
}
.select2-container{
    width: calc(100%  - 20px)!important;
    display: flow-root;
    margin: 10px auto 0;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{
    padding: 9px 15px !important;
    border-radius: 5px;
    background-color: #ffffff;
}
.select2-container .select2-selection--single{
    border: none !important;
    height: 100%;
    border-radius: 25px;
}

.select2-container .select2-selection--single .select2-selection__rendered{
    color: var(--accent);
    border: none;
    font-size: 14px;
    text-align: right;
    background: var(--light-gray);
}

.select2-container .select2-selection--single .select2-selection__arrow{
    height: 100%;
}

.select2-dropdown{
    z-index: 99999;
    border-color: transparent;
    border-radius: 0 0 8px 8px;
    background-color: white;
    border: 1px solid var(--light-gray);
    box-shadow: 0 0 2px 6px #40404006;
}

.select2-search--dropdown{
    padding: 10px 9px;
}

.select2-container .select2-search--dropdown .select2-search__field{
    border-color: transparent;
    padding: 6px 16px !important;
    height: auto;
    border-radius: 5px;
    color: var(--accent) !important;
    background: #9f9f9f24;
}

.select2-container .select2-results__option{
    font-weight: 500;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1.5rem;
    border-radius: 5px !important;
    margin: 5px 10px;
    transition: all ease .3s;
}

.select2-container .select2-results__option:last-child{
    margin-bottom: 0;
}
.select2-container .select2-results__option[aria-selected] {
    background-color:var(--white) !important;
}
.select2-container .select2-results__option[aria-selected=true],
.select2-container .select2-results__option--highlighted[aria-selected]{
    background-color: var(--light-gray) !important;
    color: var(--accent);
    border-radius: 8px;
}
.select2-results{
    padding: 0 0px 16px;
}

.select2-container .select2-selection--single .select2-selection__arrow{
    width: auto;
    padding-left: 16px;
    left: 16px !important;
    top: 0;
    padding: 0 !important;
    height: 100%;
}

.select2-container.select2-container .select2-selection--single .select2-selection__arrow{
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.select2-container.select2-container .select2-selection--single .select2-selection__arrow i{
    transform: rotate(0deg);
    transition: all ease-in-out .4s;
}

.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow i{
    transform: rotate(180deg);
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.select2-dropdown {
    z-index: 99999;
    border-color: transparent;
    border-radius: 25px;
    background-color: var(--light);
    border: 0; 
    box-shadow: 0 0 2px 6px #40404006;
}
.select2-container--open .select2-dropdown {
    left: 0;
    top: 5px;
    background-color: #ffffff;
    border-radius: 5px;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
}

.select2-selection__arrow .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
} 
.select2-selection__arrow .icon:before {
    content: '';
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    -webkit-mask-image: url(View/1014/icon/arrow.svg);
    -webkit-mask-position: center;
    -webkit-mask-size: 11px;
    background: var(--accent);
    -webkit-mask-repeat: no-repeat;
}
.select2-container .select2-results__option:hover{
    background-color: var(--light-gray) !important;
    color: var(--accent);
}

/*#endregion*/

/*#region switch */
.switchBox {
    display: inline-flex;
    height: 35px;
    align-items: center;
    margin: 15px 0 0;
    width: 100%;
}

.switchBox .switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 14px;
}

.switchBox .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switchBox  label {
    margin: 0 10px;
    font-size: 11pt;
    color: var(--accent);
    cursor: pointer;
}
.labelSwitch {
    display: contents;
}

.labelSwitch.off {
    display: none;
}
.switchBox .switch .slider {
    position: absolute;
    cursor: pointer;
    overflow: visible;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switchBox .switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -2px;
    top: 50%;
    bottom: 4px;
    background: var(--primary);
    -webkit-transition: 0.4s;
    transform: translate( 0 , -50%);
    transition: 0.4s;
}
.accent .switch .slider:before {
    background: var(--primary);
}

.switchBox .switch input:checked + .slider:before {
    transform:translate(calc(100% + 1px), -50%) ;
    background: var(--primary);
}

.switchBox .switch .slider.round {
    border-radius: 34px;
}

.switchBox .switch .slider.round:before {
    border-radius: 50%;
}
.labelSwitch.off {
    display: none;
}
/*#endregion*/

/*#region showMessage*/
.Message{
    border-radius: 8px;
}
.MessageTitle {
    background-color: var(--primary);
    color: white;
    padding: 9px 6px 10px;
    text-align: right;
    border-radius: 8px 8px 0 0;
    font-size: 11pt;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}
.MessageText {
    padding: 19px 10px;
    color: var(--accent);
    font-size: 11pt;
}
/*#endregion*/

/*#region responsive*/

/* @media (max-width : 1400px) and (min-width : 1000px){
    .login .loginIcon {
        width: 100px;
        height: 100px;
        margin: 54px auto;
    }
    .login .loginIcon:before {
        -webkit-mask-size: 45px;
    }
    .createLink {
        margin: 10px 0 20px 0;
    }
    .btn {
        margin-top: 20px;
    }
}
@media (max-width : 1250px) and (min-width : 1000px) {
    .login .loginIcon {
        width: 95px;
        height: 95px;
        margin: 25px auto;
    }
    .login .loginIcon:before {
        background-size: 40px;
    }
    .login h1 {
        margin: 35px 0 20px;
    }
    .createLink {
        margin: 10px 0 20px 0;
    }
    .btn {
        margin-top: 20px;
    }
    .closeLogin h2 {
        font-size: 24pt;
    }
    .closeLogin p {
        font-size: 11pt;
    }
}
@media (max-width : 1150px) and (min-width : 1000px) {
    .login .loginIcon:before {
        -webkit-mask-size: 25px;
    }
    .login h1 {
        margin: 25px 0 15px;
        font-size: 15pt;
    }
    .login .loginIcon {
        width: 60px;
        height: 60px;
        margin: 15px auto;
    }
    .closeLogin h2 {
        font-size: 20pt;
        margin: 20px auto 0;
        line-height: 26px;
    }
    .closeLogin p {
        font-size: 11pt;
        margin: 0;
    }
}
@media (max-width : 1000px) {
    .login .loginIcon {
        width: 100px;
        height: 100px;
        margin: 30px auto;
    }
    .login .loginIcon:before {
        -webkit-mask-size: 45px;
    }
    .closeLogin h2 {
        margin: 22px auto 5px;  
        font-size: 20pt;
        line-height: 24px;
    }
    .createLink {
        margin: 10px 0 20px 0;
    }
} */
/*#endregion*/@media screen and (min-width: 600px) and (max-width: 1024px) {
.container {
    padding: 0 30px;
}
.humburger {
    margin-right: 5px;
}
.footer .container > div , .footer .container > span > div , .footer .container > span{
    width: 100%;
    max-width: 100%;
}
.footer h1 {
    margin-right: 25px;
    width: 100%;
    display: flow-root;
    line-height: 35px;
}
.callNumber {
    margin-top: 15px ;
}
.callNumber h1 , .addressFooter h1{
    margin-bottom: 10px;
}
.addressFooter span {
    width: 100%;
}
.namads rotate {
    float: unset;
    margin: 0 auto;
}
.namads {
    padding-left: 0;
}
.namads:before {
    bottom: -16%;
    left: 50%;
    transform: translate(-50% , 50%);
}
.copyWrite {
    background-position: calc(100% - 291px) 0;
}
.footerContent p {
    width: 100%;
    display: flow-root;
    text-align: justify;
}
.footer:before {
    top: 41px;
    right: 5%;
}
.links a {
    display: none;
    margin-left: 0;
}
.socialMedia {
    display: flow-root;
    text-align: center;
}
.humburger {
    display: flow-root;
}
.Menu-responsive{
    width: 50%;
}}@media screen and (min-width: 0) and (max-width: 600px) {
.container {
    padding-left:20px !important;
    padding-right: 20px !important;
}
.login .loginIcon {
    width: 100px;
    height: 100px;
    margin: 30px auto;
}
.login .loginIcon:before {
    background-size: 45px;
}
.login column {
    flex-direction: column;
}
.register > column {
    width: 100%;
}
.register .loginIcon {
    width: 85px;
    height: 85px;
    margin: 25px auto;
}
.formatPass {
    display: none;
    position: absolute;
    top: 380px;
    left: calc(50% - 20px);
    transform: translate(-50% , 0%);
    background-color: var(--accent);
    border-radius: 5px;
    color: var(--white);
    direction: rtl;
    text-align: justify;
    padding: 5px 10px;
    width: calc(100% - 140px);
    box-sizing: border-box;
    margin: 0;
}
.formatPass:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50% , -50%) rotate(45deg);
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 2px;
}
.register .moarrefName {
    margin-bottom: 15px;
    font-size: 12pt;
}
.register h1 {
    margin-bottom: 15px;
}
.forgetLink {
    margin-top: 12px;
}
.closeLogin h2 {
    margin: 22px auto 5px;  
    font-size: 20pt;
    line-height: 24px;
}
.createLink {
    margin: 10px 0 20px 0;
}
.links a {
    display: none;
    margin-left: 0;
}
.footer .container > div , .footer .container > span > div , .footer .container > span{
    width: 100%;
    max-width: 100%;
}
.footerContent p{
    width: 100%;
    display: flow-root;
    text-align: justify;
}
.footer h1 {
    margin-right: 25px;
}
.callNumber {
    margin-top: 15px ;
}
.callNumber a {
    padding: 15px 0px 0;
    display: block;
}
.callNumber pipe{
    display: none;
}
.addressFooter span {
    display: block;
    margin-top: 15px;
    width: 100%;
}
.copyWrite {
    -webkit-mask-image: unset;
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
}
.copyWrite:before {
    width: 100%;
}
.footer:before {
    width: 150px;
    height: 150px;
    top: 2%;
    right: 54%;
}
.socialMedia {
    margin-bottom: 40px;
    display: flow-root;
    text-align: center;
}
.namads {
    padding-left: 0;
    margin-top: 45px;
}
.namads a {
    width: 100px;
    height: 100px;
}
.namads:before {
    left: 50%;
    transform: translate(-50% , 0%);
    bottom: -104%;
}
.humburger {
    display: flow-root;
    margin-right: 5px;
}
.card.details > div > img {
    height: auto;
}
.namads rotate {
    float: unset;
    margin: 0 auto;
}
.footer h1:before {
    right: -33px;
}
.headerMenu .mainLogo {
    display: none;
}
.headerMenu{
    margin-top: 10px;
}
#maqale , .footer {
    margin-top: 0 !important;
    background-position: 0 0;   
}
.Menu-responsive .lineMenu:before {
    background-size: 1720px;
}
.Menu-responsive .container {
    width: 85%;
}
.Menu-responsive .lineMenu {
    width: 70%;
}
.Menu-responsive .socialMedia {
    margin-bottom: 0;
}
.Menu-responsive .callNumber a {
    padding: 0;
}

.table .th, .table .td{
    justify-content: end;
}}
.border:before {
    width: 10px;
    height: 70%;
}
.hasIcon {
    color: #c6c6c6;
}
/*#region صفحه اول*/
.mainPage {
    position: relative;
}
.mainContent {
    height: 50vh;
    display: flex;
    align-items: center;
    margin-top: calc(7vh - 116px);
}
.mainContent content {
    display: flex;
    align-items: center;
    width: 100%;
}
.rightNav {
    background-image: url(View/1014/image/lineNav.png);
    background-position: left;
    background-size: cover;
    background-repeat-y: no-repeat;
    width: 35%;
    height: 200px;
    border-radius: 15px 0 0 15px;
}
.siteInfo {
    width: 30%;
    height: 200px;
    display: flow-root;
}
.siteInfo h1 {
    text-align: center;
    font-size: 40pt;
    color: var(--primary);
    line-height: normal;
    display: flow-root;
}
.siteInfo h1 span {
    color: var(--accent);
}
.siteInfo p {
    text-align: center;
    color: var(--accent);
    font-size: 13pt;
    margin: 5px;
}
.siteInfo .mainLogo {
    background-image: url(View/1014/icon/newIcon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flow-root;
    width: 100%;
    height: 60px;
    margin-top: 15px;
}
.leftNav {
    background-color:  var(--light-white);
    width: 35%;
    height: 200px;
    border-radius: 0 15px 15px 0;
}
.leftNav .nextStep {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 550px;
    height: 100%;
}
.nextStep column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}
.leftNav h2 {
    color: var(--accent);
    font-size: 15pt;
    cursor: pointer;
}
.leftNav h2 span {
    color: var(--primary);
}
.leftNav arrow {
    background-image: url(View/1014/icon/peykan.svg);
    background-position: right;
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all ease 0.5s;
}
.nextStep column:hover arrow {
    background-position: left;
    transition: all ease 0.5s;
}
.aboutSite {
    height: auto;
    min-height: 140px;
}
.aboutSite p {
    color: var(--accent);
    font-size: 13pt;
    text-align: center;
    line-height: 40px;
    margin: 0;
}
.suggestNews {
    position: relative;
}
.suggestNews .SNHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.SNHeader h1 {
    font-size: 20pt;
    color: var(--accent);
}
.SNHeader .btn {
    background-color: rgba(239, 239, 239 , 0.2);
    color: var(--primary);
    transition: all ease 0.5s;
}
.SNHeader .btn:after , .centerItem .btn:after , .owl-next:before , .owl-prev:before {
    content: '';
    -webkit-mask-size: 10px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(View/1014/icon/peykan.svg);
    background: var(--primary);
    width: 25px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    transition: all ease 0.5s;
}
.SNHeader .btn:hover {
    background-color: var(--light-white);
    transition: all ease 0.5s;
}
.SNHeader .btn:hover:after {
    -webkit-mask-position: 0;
    transition: all ease 0.5s;
}

.centerItem .btn {
    font-size: 10pt;
    margin-top: 10px;
    position: absolute;
    bottom: 25px;
    left: 25px;
}
.centerItem .btn:after {
    background: var(--white);
    width: 22px;
    height: 22px;
    -webkit-mask-size: 8px;
}
.centerItem .btn:hover:after {
    -webkit-mask-position: 0;
    transition: all ease 0.3s;
}
#maqale {
    margin-top: 250px;
}
/*#region owl*/
.centerItem {
    width: 550px;
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translate(-50% , 0);
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    height: 403px;
}
.headerCenterItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--accent);
}
.headerCenterItem h2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.contentCenterItem {
    color: var(--accent);
    text-align: justify;
    font-size: 12pt;
    line-height: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* .owl-carousel .owl-item img {
    width: 100%;
    height: 200px;
    margin: 0;
    object-fit: cover;
    border-radius: 15px;
    transition: all ease 0.3s;
} */
.newsOwl {
    margin-top: 140px;
}
.newsOwl .center {
    margin-top: -89px;
}
.newsOwl .center + .owl-item img{
    float: left;
}

.newsOwl .center .item {
    width: 550px;
    margin-right: -148px;
}
.newsOwl .center .item p {
    display: none;
}
.owl-carousel .owl-stage-outer{
    overflow: unset;
}
.owl-nav{
    width: calc(100% + 80px );
    position: absolute;
    transform: translate(-50% , -50%);
    top: 42%;
    left: 50%;
    display: flex;
    justify-content: space-between;
    height: 0;
}
.owl-next , .owl-prev {
    background-color: var(--primary) !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
.owl-nav span{
    display: none;
}
.owl-prev {
    transform: rotate(180deg);
}
.owl-next:before , .owl-prev:before {
    background: var(--white);
    width: 100%;
    height: 100%;
    margin-right: 1px;
}
.newsOwl .item {
    position: relative;
    display: flow-root;
    overflow: hidden;
    border-radius: 15px;
}

/*#endregion*/

/*#endregion*/

/*#region گام اول*/

.firstStep .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.firstStep .header h1{
    color: var(--primary);
    font-size: 18pt;
    line-height: initial;
}
.firstStep .header h1 span{
    color: var(--accent);
}
.roleType {
    display: flex;
    align-items: center;
    height: calc(100vh - 220px) ;    
}
.roleType .rightNav {
    background-color: var(--light-white);
    background-image: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38%;
}
.roleType .rightNav:after {
    content: '';
    background-image: url(View/1014/icon/shape.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100px;
    height: 40px;
    background-size: contain;
    top: 50%;
    left: 0;
    transform: translate(-100% , -50%);
}
.roleType .rightNav h2 {
    text-align: center;
    color: var(--accent);
    font-weight: normal;
    font-size: 20pt;
}
.roleType .rightNav h2 span {
    color: var(--primary);
    font-weight: bold;
}
.firstStep .prevLevel {
    position: absolute;
    bottom: -40px;
    right: 13px;
    font-size: 15pt;
    color: var(--accent);
    padding-right: 60px;
    margin: 0;
    display: flex;
    gap: 8px;
    cursor: pointer;
}
.firstStep .prevLevel span {
    color: var(--primary);
}
.firstStep .prevLevel:before {
    content: '';
    background-image: url(View/1014/icon/peykan.svg);
    background-position: right;
    width: 25px;
    height: 25px;
    display: flow-root;
    background-size: 10px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    transition: all ease 0.5s;
}
.firstStep .prevLevel:hover:before {
    background-position: left;
    transition: all ease 0.5s;
}
.parentRoleOption {
    width: 40%;
    position: relative;
}
/* .roleOption {
    width: 40%;
    position: relative;
} */
.roleOption box {
    background-color: var(--light-white);
    font-size: 16pt;
    display: flow-root;
    align-items: center;
    text-align: center;
    color: var(--primary);
    width: 215px;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 10px;
    cursor: pointer;
}
.roleOption box.active {
    display: flow-root !important;
    margin-bottom: 0;
    animation: openRole 1s forwards;
    text-align: right;
    box-sizing: border-box;
    cursor: auto;
}
.roleOption box div{
    display: none;
}
.roleOption box div.active{
    display: flow-root !important;
    width: 100%;
    animation: contentRole 1s forwards;
}
.roleOption box.active.close{
    animation: closeRole 1s forwards;
}
.roleOption box.active:before {
    height: 50px;
}
/* .parentRoleOption .roleOption box.active ~ closeoption { */
 
.parentRoleOption  closeoption {
    content: '';
    background-image: url(View/1014/icon/peykan.svg);
    background-position: center;
    display: none;
    position: absolute;
    top: 19px;
    left: 15px;
    width: 25px;
    height: 25px;
    background-size: 9px;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all ease 2s;
}
.roleOption box span {
    color: 
    var(--primary);
    font-weight: bold;
}
.roleOption box:last-of-type {
    margin-bottom: 0;
}
.dashLine {
    width: 276px;
    height: 600px;
    position: relative;
}
.dashLine dash1 , .dashLine dash2 , .dashLine dash{
    content: '';
    width: 100%;
    height: 50%;
    display: flow-root;
    background-image: url(View/1014/icon/dash1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 220px;
    position: absolute;
    top: 34px;
    right: 20px;
}
.dashLine dash2 {
    background-image: url(View/1014/icon/dash2.svg);
    top: 94px;
    right: 20px;
}
.dashLine dash {
    background-image: url(View/1014/icon/dash3.svg);
    top: 150px;
    right: 20px;
    z-index: -1;
}
.dashLine dash2:last-of-type{
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    top: 206px;
}
.dashLine dash1:last-of-type {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    top: 264px;
}
.roleOption box div p {
    color: var(--text);
    line-height: 35px;
    text-align: justify;
    font-size: 14pt;
}
services column {
    background-color: var(--white);
    border-radius: 10px;
    width: calc(33.33% - 8px);
    margin: 0 0 10px 12px;
    padding: 25px 10px;
    text-align: center;
    box-sizing: border-box;
    font-size: 14pt;
    color: var(--dark);
    transition: all ease 0.5s;
    cursor: pointer;
}
services column:hover {
    background-color: var(--primary);
    color: var(--white);
    transition: all ease 0.5s;
}
services column:nth-child(3n+0) {
    margin-left: 0;
}
/*#endregion*/

/*#region animation*/
.grid {
    display: grid;
    grid-template-columns: 100% 100%;
}
.moveLeft {
    animation: moveLeft 1s forwards;
    animation-timing-function: cubic-bezier(0,0,0.01,1);
}
.moveRight{
    animation: moveRight 1s forwards;
    animation-timing-function: cubic-bezier(0,0,0.01,1);
}




@keyframes moveLeft {
    100%{
        margin-right: -100%;
    }
}
@keyframes moveRight {
    0%{
        margin-right: -100%;
    }
    100%{
        margin-right: 0;
    }
}
@keyframes openRole {
    0%{
        height: 64px;
    }
    30%{
        width: 100%;
    }
    99.99%{
        height: 300px;
    }
    100%{
        height: auto;
        width: 100%;
    }
}
@keyframes closeRole {
    0%{
        height: 520px;
        width: 100%;
    }
    50%{
        height: auto;
    }
    100%{
        width: 215px;
        height: auto;
    }
}
@keyframes contentRole {
    0%{
        margin-right: 100%;
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    100%{
        margin-right: 0;
        opacity: 1;
    }
}
/*#endregion*/

.footer {
    margin-top: 250px;
}



.sinUp{
    cursor: pointer;
}

/*# amirhosein */

    .dashLine dash1:last-of-type{
    top: 241px;
        transform: rotate(8deg) scaleY(-1);
        background-size: 183px;

    }
    .dashLine dash1:first-of-type{
        background-size: 188px;
        transform: scaleY(1) rotate(-9deg);
        top: 59px;
    }
    .dashLine dash2:first-of-type ,.dashLine dash2:last-of-type{
        top: 112px;
        right: 12px;
        background-size: 203px;
        transform: rotate(-16deg);

    }
    .dashLine dash2:last-of-type{
        top: 185px;
        transform: rotate(17deg) scaleY(-1);
    }
    .dashLine dash{
        display: none;
    }
/*# endamirhosein */

/*#region responsive*/

@media (max-width : 1400px) {
    .roleOption box {
        margin-bottom: 40px;
    }
    .roleOption box.active {
        height: 480px;
    }
    .roleOption box div p {
        font-size: 12pt;
    }
    .dashLine dash1, .dashLine dash2, .dashLine dash {
        background-size: 200px;
        top: 44px;
    }
    .dashLine dash2 {
        top: 99px;
    }
    .dashLine dash {
        top: 150px;
    }
    .roleOption {
        margin-right: -20px;
    }
    .dashLine dash2:last-of-type {
        top: 202px;
    }
    .dashLine dash1:last-of-type {
        top: 255px;
    }
    .dashLine {
        width: 270px;
    }
    .dashLine dash1:first-of-type {
    background-size: 172px;
    transform: scaleY(1) rotate(-11deg);
    top: 64px;
}
}

@media (max-width : 1250px) {
    .closeLogin h2 {
        font-size: 24pt;
    }
    .closeLogin p {
        font-size: 11pt;
    }
    .roleOption box {
        margin-bottom: 30px;
        font-size: 15pt;
        padding: 17px;
    }
    .dashLine dash1, .dashLine dash2, .dashLine dash {
        background-size: 170px;
        top: 60px;
    }
    .dashLine dash2 {
         top: 118px;
         transform: rotate(-21deg);
    }
    .dashLine dash {
        top: 150px;
    }
    .dashLine dash2:last-of-type {
        top: 182px;
        transform: rotate(24deg) scaleY(-1);
    }
    .dashLine dash2:first-of-type{
        top: 126px;
    }
    .dashLine dash1:last-of-type {
        top: 238px;
    }
    .dashLine {
        width: 253px;
    }
    .roleOption box.active {
        height: 408px;
    }
    .roleOption box div p {
        font-size: 11pt;
    }
    services column {
        padding: 15px 10px;
        font-size: 11pt;
    }
    .container {
        max-width: 1150px;
    }
    .firstStep .icon h2 {
        font-size: 20pt;
    }
    .firstStep .icon p {
        font-size: 10pt;
    }
    .loginIcon:before {
        -webkit-mask-size: 16px;
    }
    .firstStep .header h1 {
        font-size: 15pt;
    }
    .roleType .rightNav h2 {
        font-size: 17pt;
    }
    .dashLine dash1:first-of-type{
      background-size: 162px;
    transform: scaleY(1) rotate(-16deg);
    top: 74px;
    }

    .dashLine dash1:last-of-type {
    top: 227px;
    transform: rotate(19deg) scaleY(-1);
    background-size: 170px;
}
}

@media (max-width : 1100px) {
    .roleOption box {
        margin-bottom: 20px;
        font-size: 13pt;
        padding: 11px;
    }
    .dashLine dash1, .dashLine dash2, .dashLine dash {
        background-size: 125px;
        top: 82px;
    }
    .dashLine dash2 {
       top: 117px;
    }
    .dashLine dash2:last-of-type {
       top: 181px;
    }
    .dashLine dash1:last-of-type {
        top: 209px;
        background-size: 141px;
        transform: rotate(24deg) scaleY(-1);
    }
    .dashLine dash {
       top: 150px;
    }
    .roleType .rightNav h2 {
        font-size: 15pt;
    }
    .dashLine {
       width: 225px;
    }
    .roleOption box div p {
        font-size: 9pt;
        line-height: 26px;
    }
    .roleOption box.active {
        height: 310px;
    }
    services column {
        padding: 5px 10px;
        font-size: 9pt;
    }
    /* .parentRoleOption .roleOption box.active ~ closeoption { */
    .parentRoleOption closeoption {
        top: 15px;
        width: 15px;
        height: 15px;
    }
    .container {
       max-width: 983px;
    }
    .aboutSite p {
        color: var(--accent);
        font-size: 12pt;
    }
    .dashLine dash1:first-of-type {
       background-size: 131px;
    transform: scaleY(1) rotate(-19deg);
    top: 95px;
    }
    
    .dashLine dash2:first-of-type {
    top: 134px;
    background-size: 165px;
}
.dashLine dash2:last-of-type {
    top: 176px;
    background-size: 168px;
}

}
@media (max-width : 1024px){
.dashLine dash1:last-of-type {
    top: 208px;
    background-size: 129px;
    transform: rotate(20deg) scaleY(-1);
}
.dashLine dash1:first-of-type {
    background-size: 129px;
    transform: scaleY(1) rotate(-17deg);
    top: 97px;
}
.dashLine dash2:first-of-type {
    right: 17px;
    top: 132px;
    transform: rotate(-14deg);
    background-size: 130px;
}
.dashLine dash2:last-of-type {
    top: 169px;
    background-size: 133px;
    transform: rotate(14deg) scaleY(-1);
}
.dashLine dash1:last-of-type {
    top: 202px;
    background-size: 129px;
    transform: rotate(16deg) scaleY(-1);
}



}


@media (max-width : 800px){
    .rightNav {
        width: calc(100% - 35px);
        margin-left: 35px;
        height: 95px;
    }
    .siteInfo{
        width: 100%;
        margin: 10px 0;
        height: auto;
    }
    .siteInfo p{
        font-size: 12pt;
    }
    .siteInfo .mainLogo {
        background-size: 187px;
    }
    .mainContent content{
        flex-direction: column;
    }
    .leftNav {
        height: 100px;
        width: calc(100% - 35px);
        margin-right: 35px;
    }
    .siteInfo h1{
        font-size: 30pt;
    }
    .mainContent {
        height: auto;
        display: flex;
        align-items: center;
        margin-top: 90px;
    }
    .aboutSite p {
        line-height: 35px;
        text-align: justify;
        padding: 10px 35px 0;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .roleType{
        flex-direction: column;
    }
    .roleType .rightNav{
        width: calc(100% - 35px);
    }
    .roleOption{
        display: flow-root;
        width: auto;
        margin:85px 0 0 0;
    }
    .firstStep .prevLevel{
        position: absolute;
        bottom: -37px;
        right: 0;
        padding-right: 20px;
    }
    .roleType .rightNav:after {
        width: 65px;
        height: 25px;
        top: unset;
        transform: translate(-77% , 50%) rotate(-90deg);
        bottom: -32px;
        left: 50%;
    }
    .dashLine dash {
        position: absolute;
        top: 220px;
        left: 50%;
        right: unset;
        transform: translate(-50% , -50%) rotate(90deg);
        width: 320px;
        background-size: 0;
        height: 1px;
        border-bottom: 2px dashed var(--primary);
    }
    .roleOption box.active{
        width: 85% !important;
        margin: 0 auto;
        height: auto !important;
    }
    .roleOption box {
        background-color: #f4f4f4;
    }
    /* .parentRoleOption .roleOption box.active ~ closeoption{ */
    .parentRoleOption closeoption{
        left: 10%;
    }
    .firstStep .header{
        padding: 0 15px;
    }
}


/*#endregion*/@media screen and (min-width: 600px) and (max-width: 1024px) {
.firstStep .header {
    padding: 0 10px;
}
.roleOption box.active{
    height: auto !important;
}
.dashLine {
    width: 200px;
}
.centerItem {
    width: calc(100% - 90px);
}
.newsOwl .center .item {
    width: calc(100% - 30px);
    margin-right: 0;
    margin: 0 auto;
}
#akhbarOwl , #maqaleOwl{
    height: 570px;
}
#maqale {
    margin-top: 0;
}
.footer {
    margin-top: 13px;
}
.owl-nav {
    top: unset;
    bottom: -95%;
    width: 18%;
}
.suggestNews {
    margin-top: 20px;
}

/* ------ */
.SNHeader .btn{
    background-color: var(--light-white);
}}@media screen and (min-width: 0) and (max-width: 600px) {
.icon {
    margin: 15px 0 0;
}
.firstStep .header {
    flex-direction: column-reverse;
    margin-bottom: 30px;
}
.firstStep .header h1{
    margin-bottom: -10px;
}
services column{
    width: calc(50% - 8px);
}
services column:nth-child(even) {
    margin-left: 0 !important;
}
services column:nth-child(3n+0) {
    margin-left: 12px;
}
.roleOption box div p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.aboutSite{
    height: auto;
}
.aboutSite p{
    padding: 20px 0;
}
.roleType .rightNav h2 {
    font-size: 13pt;
}
.centerItem {
    width: calc(100% - 90px);
    height: 432px;
}
.headerCenterItem {
    display: flow-root;
}
.publishTime {
    float: left;
}
.newsOwl .center .item {
    width: calc(100% - 50px);
    display: flow-root;
    margin: 0 auto;
}
#akhbarOwl , #maqaleOwl{
    height: 620px;
}
.owl-nav {
    width: 30%;
    transform: translate(-50% , 0%);
    bottom: -100%;
    top: unset;
}
.dashLine dash1 , .dashLine dash2 {
    display: none;
}

/* ------ */
.SNHeader .btn{
    background-color: var(--light-white);
}}








.list9 .sinUp{display: block;}.list9 .sinUp column{float: left;margin: 8px 0 0 0;display: block;width: max-content;font-size: 12pt;padding: 16px;}

