: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;
}}
.card h1 {
    display: flow-root;
    margin-bottom: 25px;
    font-size: 17pt;
}
.card h1:after {
    content: '';
    background-image: url(View/1014/icon/contactline.svg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 20px;
    display: flow-root;
    margin-top: 10px;
}
.card .input {
    margin-bottom: 20px;
}
.card .input input,.card .input textarea{
    padding: 10px 15px;
    text-align: right;
}
.input textarea {
    height: 100px;
}
.card .btn {
    padding: 10px 0;
}

.contactInfo  {
    width: 60%;
    float: left;
}
.contactInfo h2 {
    margin: 0 0 5px 0;
    font-size: 14pt;
}
.contactInfo span {
    font-size: 12pt;
    display: inline-block;
    color: var(--accent);
}
.contactInfo pipe {
    font-size: 12pt;
    padding: 0 10px;
}
.contactInfo > div {
    padding-right: 35px ;
    position: relative;
    margin-bottom: 20px;
}
.contactInfo > div:before {
    content: '';
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    background: var(--primary);
    width: 20px;
    height: 25px;
    position: absolute;
    top: -1px;
    right: 0px;
}
.iconAddress:before {
    -webkit-mask-image: url(View/1014/icon/Location.svg);
}
.iconPhone:before {
    -webkit-mask-image: url(View/1014/icon/Call.svg);
}
.iconEmail:before {
    -webkit-mask-image: url(View/1014/icon/Message.svg);
}
.iconTwitter , .iconTelegram , .iconInsta , .iconWhatsap {
    width: 222px;
    display: inline-block;
}
.iconTwitter:before {
    -webkit-mask-image: url(View/1014/icon/twitter.svg);
}
.iconTelegram:before {
    -webkit-mask-image: url(View/1014/icon/telegram.svg);
}
.iconInsta:before {
    -webkit-mask-image: url(View/1014/icon/insta.svg);
}
.iconWhatsap:before {
    -webkit-mask-image: url(View/1014/icon/whatsAp.svg);
}


.contactInfo > .parentMap {
    width: 100%;
    height: 288px;
    background-color: blanchedalmond;
    border-radius: 15px;
    padding-right: 0;    
    margin-bottom: 0;
}
.parentMap:before {
    content: unset !important;
}
.map {
    height: 100%;
}
#map {
    height: 100%;
    border-radius: 6px;
    z-index: 45;
}
.leaflet-control-fullscreen a {
    background-image: url(View/1014/lib/map/map-image/fullscreen.png) !important;
}@media screen and (min-width: 600px) and (max-width: 1024px) {
.card form {
    width: 100%;
}
.card .contactInfo {
    width: 100%;
    margin-top: 30px;
}}@media screen and (min-width: 0) and (max-width: 600px) {
.card form {
    width: 100%;
}
.card .contactInfo{
    width: 100%;
    margin-top: 30px;
}}









