@font-face {
    font-family: "Vazir";
    src: url("../_fonts/Vazirmatn-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Vazir";
    src: url("../_fonts/Vazirmatn-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Vazir";
    src: url("../_fonts/Vazirmatn-Light.ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Vazir";
    src: url("../_fonts/Vazirmatn-Bold.ttf");
    font-weight: bold;
    font-style: normal;
}

* {
    text-decoration: none;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


  html,
body {
  position: relative;
  height: 100%;
  scroll-behavior: smooth;
}

:root {
    --gray: #6d6e71;
    --white: #ffffff;
    --black: #000000;
    --red: #ed1c24;
    --footer-bg: #010101;
    --text: #222222;
    --border-color: #646464;
    --vazir-font-family: Vazir;
    --size-xs: 12px;
    --size-sm: 14px;
    --size-md: 16px;
    --size-lg: 18px;
    --size-xl: 20px;
}
.main {
    /* padding: 0 15px; */
    /* height: 100vh; */
    width: 100%;
    overflow: hidden;
    /* height: 80px; */
}
.text-xs {
    font-size: var(--size-xs);
}

.text-sm {
    font-size: var(--size-sm);
    text-align: justify;
}

.text-md {
    font-size: var(--size-md);
}

.text-lg {
    font-size: var(--size-lg);
}

.text-xl {
    font-size: var(--size-xl);
}

body {
    direction: rtl;
    font-family: var(--vazir-font-family);
    font-size: 16px;
}

button,
input,
textarea {
    font-family: var(--vazir-font-family);
    outline: 0;
}

textarea {
    resize: vertical;
}

a {
    /* transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in; */
    color: #000000;
}

.h-100 {
    height: 100%;
}
.w-100 {
    width: 100%;
}
.w-50 {
    width: 50%;
}
.w-30 {
    width: 30%;
}
.w-20 {
    width: 20%;
}
.w-10 {
    width: 10%;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}
.logo-mobile {
    float: left;
}
.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: var(--size-sm);
    border: none;
    cursor: pointer;
}

.btn-red {
    background-color: var(--red);
    color: var(--white);
}
.btn-red:hover {
    background: #d7141b;
}
/* Style the navigation menu*/
.navbar {
    padding: 0px 15px;
    width: 100%;
    height: 70px;
    position: fixed;
    background-color: var(--white);
    z-index: 99;
    padding-top: 10px;
}

.hambergermenu {
    width: 25px;
    height: 24px;
    margin: 0 0 0 15px;
    display: inline-block;
    cursor: pointer;
}
.top-line {
    width: 19px;
    height: 2px;
    background-color: var(--text);
    margin-bottom: 5px;
    transition: 0.4s;
}
.middle-line {
    width: 15px;
    height: 2px;
    background-color: var(--text);
    margin-bottom: 5px;
    transition: 0.4s;
}
.bottom-line {
    width: 19px;
    height: 2px;
    background-color: var(--text);
    margin-bottom: 5px;
    transition: 0.4s;
}
.change .top-line {
    transform: translate(0, 3px) rotate(-45deg);
}

.change .middle-line {
    opacity: 0;
}

.change .bottom-line {
    transform: translate(0, -11px) rotate(45deg);
}

/* mobile language */
.lan-mobile {
    width: 79px;
    height: 50px;
    position: absolute;
    right: 49px;
    display: flex;
    align-items: center;
}
.lan-mobile > a {
    color: var(--text);
}
.arrow-down {
    background-image: url(../images/arrow-down.svg);
    width: 9px;
    height: 6px;
    display: inline-block;
}

.menu-list .lan-mobile.en-text > a {
    color: var(--text);
}

.menu-list .lan-mobile > a:hover {
    color: var(--text);
    font-weight: bold;
}
.dropdown-content-la {
    display: none;
    position: absolute;
    border-radius: 5px;
    background-color: #fff;
    min-width: 45px;
    z-index: 1;
}
.dropdown-content-la > a {
    color: var(--text);
    padding: 12px 0px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin: 5px;
}

.dropdown-content-la > a:hover {
    background-color: rgba(109, 110, 113, 0.1);
    border-radius: 5px;
}
.lan-mobile:hover .dropdown-content-la {
    display: block;
}
/* popup-mobile */
.consult-popup {
    width: 100%;
    padding: 15px;
}
.consult-popup-title {
    color: var(--text);
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 30px;
}
.close {
    cursor: pointer;
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    color: var(--text);
    top: 4%;
    right: 87%;
    transform: translate(0%, -50%);
}
.form-input {
    width: 100%;
    margin-bottom: 15px;
}
.form-input form {
    width: 100%;
}
.form-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 10px;
}

.form-input > input,
.form-input > textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 400;
    border: 1px solid var(--gray);
    background-color: #fff;
    border-radius: 4px;
}
.form-input-capcha {
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}
.form-input-capcha > input {
    width: 70%;
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 400;
    border: 1px solid var(--gray);
    background-color: #fff;
    border-radius: 4px;
}
.form-input-capcha > img {
    width: 30%;
}
.city-form {
    width: 100%;
    padding: 12px 16px;
    font-size: 10px;
    border: 1px solid var(--gray);
    background-color: #fff;
    border-radius: 4px;
}
.city-form > option {
    font-size: var(--size-sm);
    width: 100%;
    font-family: var(--vazir-font-family);
    border: 1px solid var(--gray);
}
.form-btn > button {
    width: 100%;
}
.form-btn img {
    margin-right: 12px;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  .mySlides {
    display: none;
    justify-content: space-between;
    align-items: center;
}
.circle-bulet.active{
    background-color: var(--red);
}
.mainHomeSlider{
    width: 80%;
    text-align: center;
    flex-direction: column;
}
/* === */
.counselContainer{
    background-color: rgba(109, 110, 113, 0.3);
    backdrop-filter: blur(5px);
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 99999;
visibility: hidden;
top: 0;
}
.counselContent{
    background: #FDFDFD;
    border-radius: 5px;
    padding: 15px 20px;
    width: 90%;
    margin: 50px auto 50px;
    height: 85%;
    overflow-y: scroll;
}
.conselHeader{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 24px;
}

.counselLinks{
    font-size: 12px;
    display: flex;
    text-align: center;
    border-bottom: 1px solid rgba(109, 110, 113, 0.1);
    position: relative;
    width: 500px;
}
.counselLinks .tablinks{
    padding: 7px;
}
.counselLinks .activeBorder{
    border: 1px solid #ED1C24;
}
.counselLinks .red-activeLine{
    position: absolute;
    width: 60px;
    top: 31px;
}
.counselContainer .formBox p {
    font-size: 11px;
    color: #222222;
    padding-bottom: 7px;
    padding-top: 18px;
}

.counselContainer .contentsLinks input{
    border: 1px solid #6D6E71;
    border-radius: 4px;
    padding: 8px;
    width: 100%;
    font-size: 11px;
}
.counselContainer .contentsLinks textarea{
    width: 100%;
    height: 141px;
    padding: 8px;
    border: 1px solid #6D6E71;
    border-radius: 4px;
    font-size: 11px;
}
.counselBtn{
    margin-top: 15px;
    text-align: center;
}
.counselContainer .counselBtn button{
    padding: 9px;
    width: 90%;
    margin: auto;
    background: #ED1C24;
    border-radius: 5px;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
}
.counselContainer .counselBtn button:hover{
    background: #d7141b;
}
.counselContainer .contentsLinks select{
    background: #FFFFFF;
    border: 1px solid #6D6E71;
    border-radius: 4px;
    width: 100%;
    padding: 8px;
    font-size: 11px;
    color: #6D6E71;
}
.activeCounsel p{
    color: #ED1C24;
}
.remove{
    display: none !important;
}
.dropdown-content a{
    display: block;
    color: #222222;
    padding: 10px;
}
.dropdown-content a:first-child{
    margin-top: 10px;
}
.subnavbar{
    margin-top: 70px;
    background-color: #fff;
    backdrop-filter: blur(5px);
    height: 100vh;
    position: fixed;
    width: 100%;
    z-index: 10;
    visibility: hidden;
    overflow-y: scroll;
}
.show{
    height: 100% !important;
    visibility: visible;

}

.dropdown-content{
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height cubic-bezier(0, 1, 0, 1) 0.3s;
}
.navOptions{
    padding: 15px;
    /* border-bottom:  0.5px solid rgba(109, 110, 113, 0.5); */
}
.innerNav{
    background-color: #ffffff;
    border-top:  0.5px solid rgba(109, 110, 113, 0.1);
    padding-bottom: 70px;
    position: relative;
}
.active_menu {
    border-bottom: 5px solid var(--red) !important;
    border-radius: 5px 5px 5px 5px !important;
    color: var(--red) !important;
    background-repeat: no-repeat !important;
}
.active_menu svg , .active_menu path{
    fill: var(--red) !important;
}


.edge-mobile-sec1 {
    text-align: center;

    /* height: 850px; */
}
.edge-mobile-sec1 > img {
    /* padding-top: 50px; */
}
.edge-mobile-sec1 h1 {
    padding-bottom: 15px;
    text-align: center;
    font-size: 24px;
    padding-left: 10px;
    padding-right: 10px;
}
.edge-mobile-sec1 p {
    padding: 0 40px 15px 40px;
    color: var(--gray);
    font-size: var(--size-sm);
    font-weight: bold;
    text-align: justify;
}

.edge-mobile-sec2-button {
    margin-bottom: 50px;
}
.edge-mobile-sec1-button > a,
.edge-mobile-sec2-button > a {
    color: var(--red);
    font-size: var(--size-sm);
    font-weight: bold;
}
.edge-mobile-sec1-button > a > img,
.edge-mobile-sec2-button > a > img {
    padding: 0 10px 0 0;
    vertical-align: middle;
}

/* section2 */
.edge-mobile-sec2,
.edge-mobile-sec3 {
    padding: 0 15px;
    text-align: center;
    /* height: 850px; */
}
.edge-mobile-sec2 > span,
.edge-mobile-sec3 > span {
    padding-bottom: 15px;
    color: var(--red);
    font-size: var(--size-md);
    font-weight: 700;
    display: inline-block;
}
.edge-mobile-sec2-img,
.edge-mobile-sec3-img {
    padding-bottom: 30px;
}
.home-m-arrow-right,
.home-m-arrow-left {
    margin-top: 63px;
}

.edge-mobile-sec3 > h3 {
    font-size: 24px;
    color: var(--text);
    padding-bottom: 15px;
    font-weight: bold;
}

.edge-mobile-sec2-middle-img {
    width: 89%;
    text-align: center;
    flex-direction: column;
}
.edge-mobile-sec2-middle-img > p {
    font-size: 14px;
    color: var(--gray);
    /* padding: 0 30px 0 30px; */
    line-height: 24px;
    text-align: justify;
    width: 80%;
}
.section_img{
    width: 100%;
}
.edge-mobile-sec2-middle-img > h2 {
    font-size: 22px;
    color: var(--text);
    padding: 30px 0 15px 0;
    font-weight: bold;
}
.edge-mobile-sec3 > h2 {
    font-size: 28px;
    color: var(--text);
    padding-bottom: 15px;
    font-weight: bold;
}
.edge-mobile-sec3 > p {
    font-size: var(--size-xs);
    color: var(--gray);
    padding: 0 30px 20px 30px;
    line-height: 20px;
    display: none;
}
/* blog */
.edge-mobile-blog {
    margin: 0 auto;
    width: 80%;
}

.edge-mobile-blog img {
    margin: 0 auto;
    width: 100%;
}
.edge-mobile-blog h5 {
    font-size: 10px;
    color: var(--gray);
    padding: 10px 0px 10px 0;
    display: block;
}
.edge-mobile-blog h4 {
    font-size: var(--size-md);
    color: var(--text);
    padding: 0 0px 0 0;
    display: block;
}
.edge-mobile-blog > p {
    font-size: 14px;
  color: var(--gray);
  padding: 10px 0px 30px 0px;
    padding-bottom: 30px;
  text-align: justify;
  height: 140px;
  overflow: hidden;
  margin-bottom: 20px;

}
.bulet {
    width: 100px;
    margin: 0 auto 20px auto;
}
.circle-bulet {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: rgba(109, 110, 113, 0.3);
    margin-left: 10px;
}
.circle-bulet:hover {
    background-color: var(--red);
}
/* bottom menu */
.bottom-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.5px solid var(--gray);
    background-color: #fdfdfd;
    position: fixed;
    bottom: 0px;
    width: 100%;
    font-size: 10px;
    color: var(--gray);
    padding: 10px 0px 0;
    z-index: 9;
}
.circle-btn {
    width: 77px;
    height: 77px;
    border-radius: 100%;
    background-color: var(--red);
    box-shadow: 0px 4px 4px 0px rgba(237, 28, 36, 0.25);
    margin-top: -35px;
}
.circle-btn > a {
    color: var(--white);
    font-size: 10px;
}
.circle-btn > a > span {
    padding: 0px 12px;
    text-align: center;
}
.circle-btn > a > img {
    padding: 9px 25px;
}

.intro-menu,
.edge-menu,
.related-blogs-menu,
.back-home-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    border-bottom: 5px solid #fdfdfd;
    color: var(--gray);
}
.menu-icons {
    width: 24px;
    height: 24px;
}
.menu-red-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px;
}

.intro-menu > span,
.edge-menu > span,
.related-blogs-menu > span,
.back-home-menu > span {
    margin-top: 5px;
    font-size: 10px;
}







.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide .edge-mobile-sec2,.swiper-slide .edge-mobile-sec1,.swiper-slide .edge-mobile-sec3{
    /* padding-top: 10px !important; */
}
.swiper-pagination{
    display: none;
}
.edge-mobile-sec2-contract {
    margin: 0 auto 15px auto;
    width: 80%;
}
.edge-mobile-sec2-contract img {
    margin: 0 auto;
}
.edge-mobile-sec2-contract span {
    padding: 15px 10px 0;
    margin-bottom: 40px;
}
.d-flex h3{
    padding: 15px 0;
}
.w-20 svg{
    height: 20px;
}
.collapsible {
    background-color: var(--white);
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 18px;
    border-radius: 5px;
}
.active,
.collapsible:hover {
    background-color: var(--white);
}

.content {
    padding: 0 18px;
    border-radius: 5px;
    background-color: var(--white);
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    max-height: 0;
    background-color: var(--white);
    background-image: linear-gradient(
        0deg,
        rgba(237, 28, 36, 0.05) 0%,
        rgba(237, 28, 36, 0) 100%
    );
}
.left-icon::after {
    font-family: 'LineIcons';
    content: "\ea5a";
    position: relative;
    /* right: 5px; */
    font-size: 10px;
    /* display: inline-block; */
    transition: all 0.3s ease-in-out;
    float: left;
    top: -30px;
    font-weight: bolder;
    color: var(--red);
  }
  .clear{
    height: 500px;
  }
  .edge-mobile-sec2 > p {
    font-size: var(--size-md);
    color: var(--text);
    font-weight: 400;
    padding-bottom: 30px;
}

.edge-mobile-sec3 > p {
    font-size: var(--size-xs);
    color: var(--gray);
    padding: 0 20px 80px 20px;
    line-height: 20px;
}
.edge-form {
    flex-direction: column;
    margin-top: 15px;
}
.edge-form-border {
    border: 2px solid var(--red);
    margin-bottom: 15px;
    border-radius: 5px;
}

.edge-form-btn {
    background-color: var(--white);
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: var(--size-md);
    border-radius: 5px;
}
.edge-form-btn > span {
    color: var(--gray);
    padding-top: 5px;
    font-size: 15px;
}
/* .hire-form-btn ::after {
    content: "\003E";
    font-size: 25px;
    color: var(--red);
    float: left;
    margin-left: 5px;
    padding-bottom: 5px;
} */

.freeform-mobile-sec3-img > img {
    margin: 0 auto;
}
.freeform-mobile-sec2-form {
    width: 80%;
}

.freeform-mobile-sec2-form span {
    padding: 0 38px 0 0;
    margin-bottom: 20px;
    font-size: var(--size-lg);
    color: var(--gray);
}
.freeform-mobile-sec2-form img {
    margin: 0 auto;
}
.freeform-m-arrow-right,
.freeform-m-arrow-left {
    margin-top: 100px;
}

.freeform-mobile-sec2-form > p {
    font-size: var(--size-sm);
    color: var(--gray);
    padding-bottom: 50px;
    line-height: 20px;
}
.freeform-mobile-sec2-form > h2 {
    font-size: 24px;
    color: var(--text);
    padding: 0 0 20px 0;
    font-weight: bold;
    margin: 0 auto;
}
.hire-sec2-middle-img {
    width: 255px;
    text-align: center;
    flex-direction: column;
}
.hire-sec2-middle-img-number {
    font-size: 30px;
    display: inline-block;
    font-weight: bold;
    color: var(--red);
    padding-bottom: 10px;
}
.hire-sec2-middle-img-title {
    font-size: 22px;
    color: var(--text);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
}
.hire-sec2-middle-img > p {
    font-size: var(--size-md);
    color: var(--gray);
    padding: 0 0px 50px 0px;
    line-height: 20px;
}
.bottom-menu div a{
    min-width: 60px;
}
.projectsSlider{
    width: 89%;
    text-align: center;
}
.projectsSlider img{
    margin: auto;
}
.projectsSlider h3{
    margin: auto;
    padding: 25px;
}
.clr{
    clear: both;
}
.logos{
    padding: 0;
color: #929292;
max-width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
overflow-x: auto;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
font-size: 11px;
font-size: 0.786rem;
line-height: 2;
overflow-y: hidden;
direction: rtl;
scrollbar-width: none;
cursor: pointer;
}
.logos .swiper-slide{
    width: auto;
    padding: 0 15px;
}
.home-mobile-sec4{
    width: 100%;
}
.edge-mobile-sec3-img img{
    margin: 0 auto;
}
.edge-mobile-sec3-customers {
    margin-bottom: 30px;
}
.mobile_logo_section3{
    width: 100%;
}
#all , #all2{
    height: 400px;
    overflow: auto;
    flex-direction: column;
    flex-wrap: inherit;
}
/* .active:after {
!    content: "\2212";
} */

#message{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #17bd17;
    background: rgba(23, 189, 23,0.1);
    padding: 5px 10px;
    width: fit-content;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 0px;
    margin-bottom: 20px;
    display: none;
    }
    .edge-mobile-blog img{
        width: 100%;
        border-radius: 15px;
    }
    .edge-mobile-blog h5,.edge-mobile-blog h4{
        width: 100%;
        text-align: right;
    }
    .redLink{
        color: var(--red);
        font-size: var(--size-sm);
        font-weight: bold ;
    }
.submenuOption{
    margin: 20px 0;
    font-size: 12px;
}
.submenuOption svg{
    vertical-align: middle;
}
.redContent{
    color: #ED1C24;
    font-size: 12px;
    transition: all 0.3s ease;
}
.hide{
    display: none !important;
}
.noSvg{
    display: none;
}
.svgShow{
    display: inline !important;
}
.showDropdown {
    max-height: 703px;
    transition: max-height ease-in-out 0.3s;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.showSubDropdown {
    max-height: 703px;
    transition: max-height ease-in-out 0.3s;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.innerSubNavOption{
    max-height: max-content;
    transition: max-height ease-in-out 0.3s;
}
.showDropdown i{
    float: left;
    position: relative;
    top: 11px;
}
.showSubDropdown i{
    float: left;
    position: relative;
    top: 11px;
}
.subNavGrayLink{
    color: #6D6E71 !important;
    font-weight: 700;
    font-size: 10px;
    line-height: 12px;
    margin-top: 0 !important;
    padding-right:  0 !important;
}
.subNavLinkOption{
    padding: 0 !important;


}
.subNavGrayLink svg{
    vertical-align: middle;
}
.redSubNavTitle{
    background: rgba(237, 28, 36, 0.1);
    box-shadow: 0px 5px 50px rgba(237, 28, 36, 0.05);
    border-radius: 5px;
    color: #222222 !important;
    padding: 4px;
    font-size: 10px;
    text-align: center;
}
.innerSubNavOption{
    height: 330PX;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #ED1C24;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20PX;
}
.startupBoxHead{
    display: grid;
    grid-template-columns: 1.3fr 3fr 1fr;
    align-items: center;
}
.startupBoxHead a{
    text-align: right;
}
.startupBoxExp{
    color: #6D6E71;
    font-size: 10px;
}
.startupSmallBox{
    background: rgba(109, 110, 113, 0.1);
    border-radius: 5px;
    padding: 10px;
    margin: 15px 0;
}
.startupBoxTitle{
    font-weight: bold;
    
}
.grayClass{
    background-color: rgba(109, 110, 113, 0.05);
}
.drpBtn {
    padding: 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    /* transition: all ease 0.3s; */
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: var(--gray);
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.grayClass i{
    transition: all 0.3s ease;
    transform: rotate(90deg);
}
.redContent i{
    transition: all 0.3s ease;
    transform: rotate(90deg);
}
.loginBtnMenu button{
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    background: #ED1C24;
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
}
.navbar-right{
    align-items: center;
}
.navOptions2{
    padding-right: 30px;
}
.navOptions > a{
    font-weight: bold;
    font-size: 14px;
    color: var(--gray);
}
.go-left{
    transform: translateX(-1000px);
    opacity: 0;
    visibility: hidden;
}
.go-left-hidden{
    display: none !important;
}
.bundle__title1 {

    color: #fff;
    height: 34px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center !important;
    width: 100%;
    height: 40px;
  }
  .bundle__title1 div{
      background: rgba(237, 28, 36, 0.1);
      color: var(--red);
      padding:13px 30px;
      border-radius: 5px;
      width: 90%;
      text-align: center;
  }
  
  .lists_wrapper_user ul {
    width: 20%;
    border-left: 1px solid rgba(237, 28, 36, 0.3);
  }
  .bundle_wrapper li > :first-child {
    padding: 0;
    margin: 0;
  }
    #service_bundles_body li ,#business_bundles_body li,#user_bundles_body li{
    display: flex;
    justify-content: center;
    height: 78px;
    align-items: center;
    margin-top: 0;
    margin: 0 auto;
    flex-direction: column;
  }
  /* #service_bundles_body ul ,#business_bundles_body ul,#user_bundles_body ul{
    width: 30%;
    border-left: 1px  solid rgba(237, 28, 36, 0.3);
  } */
  #service_bundles_body li p ,#business_bundles_body li p,#user_bundles_body li p{
    display: block;
    margin-bottom: 15px;
    
  }
  #service_bundles_body{
    /* display: flex; */
    /* background-color: var(--white);
    padding-top: 50px; */
    /* align-items: center;
    justify-content: center; */
    width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
  }
  #user_bundles_body,#user_bundles_body{
    /* display: flex; */
    /* background-color: var(--white); */
    padding-top: 50px;
    align-items: center;
    justify-content: center;
    /* width: 1200px; */
    margin: 0 auto;
    border-radius: 10px;
    /* align-items: flex-start; */
  }
  #bundle_wrapper {
    padding: 30px 15px !important;
    box-sizing: border-box;
    width: 100% !important;
  height: auto;
  background: url("../images/bundle-back.png") ;
  background-size: cover;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  margin-bottom: 130px;
  }
  #service_bundles_body_parent{
      width: 1300px;
  }
  #service_bundles_body a , #business_bundles_body a,#user_bundles_body a{
      color : var(--text);
      font-size: var(--size-sm);
      
  }
  #service_bundles_body , #business_bundles_body , #user_bundles_body {
    font-size: var(--size-sm);
  }
  #businessbundle2 button, #businessbundle1 button, #businessbundle0 button, .bundle-button {
    padding: 10px 20px;
    background: var(--red);
    border-radius: 5px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    width: 80%;
    height: 41px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #bundle_wrapper #businessbundle0 li:first-child,
  #bundle_wrapper #businessbundle1 li:first-child,
  #bundle_wrapper #businessbundle2 li:first-child,
  #bundle_wrapper #servicebundle0 li:first-child,
  #bundle_wrapper #servicebundle1 li:first-child,
  #bundle_wrapper #servicebundle2 li:first-child,
  #bundle_wrapper #servicebundle0 li:first-child,
  #bundle_wrapper #servicebundle3 li:first-child,
  #bundle_wrapper #servicebundle4 li:first-child,
  #bundle_wrapper #service_bundles ul li:first-child,
  #bundle_wrapper #business_bundles ul li:first-child,
  #bundle_wrapper #user_bundles ul li:first-child {
    height: 140px !important;
    text-align: center;
  }
  #service_bundles_body ul li:first-child ,#business_bundles_body ul li:first-child,#user_bundles_body ul li:first-child{
    height: 140px !important;
    display: flex;
    justify-content: flex-end !important;
    padding: 4px 10px !important;
  }
  .bundle_name{
      font-weight: bold;
      font-size: var(--size-sm) !important;
  }
  #servicebundle4,#businessbundle2{
      border-left: none !important;
  }
  /* #service_bundles_body ul:first-child,#business_bundles_body  ul:first-child,#user_bundles_body  ul:first-child{
      width: 30% !important;
  } */
  .red-menu-icon {
    background-image: url("../images/cm-icon.svg");
}
#modal-first-level .tabWrapper {
    overflow: hidden;
    text-align: right;
    direction: rtl;
  }
  #modal-first-level .tabWrapper .tabContainer {
    background-color: var(--pink);
    border-radius: 5px;
    padding: 5px;
    width: max-content;
    position: relative;
  }
  #modal-first-level .tabWrapper .tabButton {
    color: #030229;
    background: transparent;
    font-size: 14px;
    height: 60px;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 230px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    border: none;
    box-sizing: border-box;
    -webkit-transition: all 150ms ease 0s;
    transition: all 150ms ease 0s;
    cursor: pointer;
    display: inline-block;
    line-height: 35px;
    line-height: 25px;
    top: 5px;
  }
  #modal-first-level .white_text {
    color: #fff !important;
  }
  #modal-first-level .tabWrapper .tabButton span {
    display: block;
    font-size: 12px;
  }

  #modal-first-level .tabWrapper .tabButton span {
    display: block;
    font-size: 12px;
  }
  #modal-first-level .tabWrapper .tabActive {
    position: absolute;
    top: 5px;
    display: flex;
    height: 60px;
    width: 230px;
    background-color: var(--red);
    z-index: 1;
    border-radius: 5px;
    transition: 0.25s ease-out;
    transform: translateX(0);
  }
  .bundle_tab_hide{
    display: none !important;
  }
  .bundle_tab ul li:last-child{
    border-bottom: 0;
  }
  .products {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; */
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
  }
  .product {
    /* width: 250px; */
    display: flex;
    flex-direction: column;
    align-items: baseline;
    padding: 20px 30px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    min-height: 280px;
    justify-content: space-between;
  }
  .product-price {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    padding: 15px 0;
  }
  .product-title {
    color: #222222;
    font-size: 20px;
    font-weight: bold;
  }
  .bundle_wrapper a {
    padding: 0;
    margin: 0;
  }
  .product-desc {
    color: #757095;
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
.product a{
color: var(--text);
}
  .button-white-border-blue {
    background: var(--white);
    border: 1px solid var(--red);
    border-radius: 5px;
    color: var(--red) !important;
    padding: 10px 15px;
    cursor: pointer;
    height: 50px;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
    width: fit-content;
    text-align: center;
  }
  .product-buy {
    height: fit-content;
    width: 90%;
    margin: 0 auto;
  }
  .product:hover {
    background: #FFFFFF;
    border: 1px solid var(--red);
    box-shadow: 0px 6px 30px rgba(237, 28, 36, 0.07);
  }
  .product:hover .product-buy {
    background: var(--red);
    color: var(--white) !important;
  }
  .bundles .tabWrapper {
    overflow: hidden;
    text-align: right;
    direction: rtl;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .bundles .tabWrapper .tabContainer {
    background-color: #E8E8E8;
    border-radius: 10px;
    padding: 5px;
    width: max-content;
    position: relative;
    margin: 0 auto;
    z-index:  0 ;
  }
  .bundles .tabWrapper .tabButton {
    color: #787878;
    background: transparent;
    font-size: 12px;
    height: 40px;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 90px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    border: none;
    box-sizing: border-box;
    -webkit-transition: all 150ms ease 0s;
    transition: all 150ms ease 0s;
    cursor: pointer;
    display: inline-block;
    line-height: 30px;
    
    top: 5px;
  }
  .bundles .white_text {
    color: #fff !important;
  }
  .bundles .tabWrapper .tabButton span {
    display: block;
    font-size: 12px;
  }

  .bundles .tabWrapper .tabButton span {
    display: block;
    font-size: 12px;
  }
  .bundles .tabWrapper .tabActive {
    position: absolute;
    top: 5px;
    display: flex;
    height: 40px;
    width: 90px;
    background-color: var(--red);
    z-index: 1;
    border-radius: 10px;
    transition: 0.25s ease-out;
    transform: translateX(0);
  }
  .emptyli{
    background: rgba(237, 28, 36, 0.1);
    color: var(--red);
    padding: 13px 30px;
    border-radius: 5px;
    width: 90%;
    text-align: center !important;
    height: 40px !important;
    display: inline-block !important;
    line-height: 40px !important;
  }
  .bundle-button svg{
      margin-left: 5px;
  }

  .circle-buletDown{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: rgba(109, 110, 113, 0.3);
    margin-left: 10px;
}
.circle-buletDown.active{
    background-color: var(--red);
}
.circle-buletBusiness , .circle-bulet-product{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: rgba(109, 110, 113, 0.3);
    margin-left: 10px;
}
.circle-buletBusiness.active , .circle-bulet-product.active{
    background-color: var(--red);
}
.mobile_section1 img{
    /* width: 90%; */
}
.mobile_section1 h1 {
    width: 85%;
    text-align: center;
    font-size: 24px;
    margin: 0 auto;
    padding-bottom: 15px;
}
.mobile_section1 p {
    padding: 0 40px 0 40px;
    color: var(--gray);
    font-size: 14px;
    font-weight: bold;
    line-height: 171.5%;
    text-align: justify;
}
.basket-container{
    margin: 0 auto;
  }
  
  .basket-title{
    font-size: 20px;
    padding-bottom: 15px;
  }
  .factor-box{
    background: rgba(255, 255, 255, 0.5);
  border: 1px solid #EDEEF2;
    border-radius: 5px;
    width: 389px;
    float: left;
    position: relative;
  }
  .discount-box{
    padding: 16px 0;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.3);
    margin: 0 16px;
  }
  .discount-title{
    font-size: 15px;
    padding-bottom: 15px;
  }
  .discount-form{
    display: flex;
    justify-content: space-between;
  }
  .discount-form input{
    outline: none;
    background: #F8F8FF;
    border: 1px solid #D7D7FB;
    border-radius: 5px;
    padding: 6px  10px;
    width: 58%;
  }
  .counting-box{
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.3);
    margin: 0 16px;
  }
  .priceTitle , .price-num{
    padding: 15px 0;
    font-size: var(--size-sm);
  }
  .final-price{
    background: rgba(205, 255, 205, 0.5);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: 7px 13px;
    margin: 16px;
    align-items: center;
  }
  .saler-box-btn{
    background: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }
  .saler-box-btn .collapsible-btn{
    width: 100%;
    text-align: right;
    background: rgba(217, 217, 217, 0.16);
    border-radius: 10px 10px 0px 0px;
    border: none;
    cursor: pointer;
    padding: 17px 20px;
    font-size: 18px;
  }
  .saler-box-btn button svg{
    transform: rotate(-180deg);
    margin-top: 11px;
    float: left;
    transition: all 0.3s;
  }
  .factor-container{
    display: flex;
    width: 100%;
    padding: 18px;
    margin: 0;
  }
  .saler-info{
    padding: 40px 0;
  }
  .saler-btn-content{
    color: #000000 !important;
    padding: 0 28px;
    background-color: var(--white);
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    /* max-height: 0; */
    font-size: 12px;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
  
  }
  .saler-info-row{
    display: flex;
    font-size: 14px;
  }
  .info-box{
    padding: 10px 20px;
  }
  .active-basket-info svg{
    transform: rotate(0deg) !important;
    transition: all 0.3s;
  }
  .who_items{
    /* padding:5px 15px; */
    background: #fff;
    /* border: 1px solid #EDEEF2; */
    border-radius: 5px;
  }
  .buy_for_who p{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .buy_for_who{
    width: 100%;
    margin-top: 50px;
    padding: 0 18px;
  }
  .basket-table {
  position: relative;
  }
  .tab_body p{
  line-height: 30px;
  }
  .buy_for_who p span{
  font-size: 12px;
  color: #B40020;
  }
  .who-boxes{
  display: flex;
  justify-content: space-between;
  }
  .who_items .schemaBtn{
  margin-left: 0;
  }
  .who_items .inside{
  display: flex;
  align-items: center;
  }
  .who-boxes-active{
  border: 2px solid #007F00 ;
  background: rgba(0,75,133,0.01);
  }
  .schemaBtn-active{
  background: #007F00  !important;
  color: #fff !important;
  }
  .methods_alert{
  border: 2px solid #B40020;
  }
  .basket-table-wrapper{
  margin-bottom: 60px;
  }
  .who-boxes {
  border: 1px solid #EDEEF2;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  }
  .basket-table tbody tr td, .basket-table thead tr td {
  height: 60px;
  }
  .paymenttabs {
  display: none;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  min-height: 250px;
  }
  .inactive path {
  fill: #ccc !important;
  }
  .who-boxes svg {
  margin-left: 10px;
  }
  .who-boxes path {
  fill: #ccc;
  }
  .inactive .schemaBtn {
  background: #D0D0D0 !important;
  color: #767676 !important;
  cursor: no-drop !important;
  pointer-events: none !important;
  }
  [data-bc-grid="d1"] table[data-bc-table] thead [data-bc-sorting]{
    text-align: center;
  }
  .basket-table [data-bc-table-container]{
    background-color: #fff;
  }
  #form_wrapper_input select, .input {
  background: #f7f7f8;
    background-color: rgb(247, 247, 248);
  background-color: rgb(247, 247, 248);
  background-color: rgb(247, 247, 248);
  border-radius: 5px;
  padding: 10px 18px;
  width: 100%;
  border: none;
  direction: rtl;
  text-align: right;
  box-sizing: border-box;
  font-family: inherit;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  }
  .basket-table [data-bc-grid-footer-container] {
    display: none;
  }
  .inside input {
    display: none;
  }
  .basket-table input[type="radio"] {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #767676;
    border-radius: 50%;
    outline: none;
  }
  .who-boxes label {
    margin-right: 5px;
    cursor: pointer;
  }
  .who-boxes-active{
    border: 2px solid #007F00 ;
    background: rgba(0,75,133,0.01);
    }
    #user-information-panel{
      padding: 20px;
    }
    #user-information-panel [data-bc-title-container]{
      color: var(--gray);
      font-size: 14px;
    }
    #user-information-panel input , #user-information-panel select ,#user-information-panel textarea{
      background: rgba(109, 110, 113, 0.1);
  
  /* gray 10% */
    border: 1px solid rgba(109, 110, 113, 0.1);
    border-radius: 5px;
    }
    #user-information-panel [data-bc-title-container]{
      width: 150px !important;
    }
    .factorlist [data-bc-grid="d1"] table[data-bc-table] thead tr {
      background-color: rgba(109, 110, 113, 0.1);
      text-align: center;
  }
  
  /* [data-bc-grid="d1"] table[data-bc-table] tbody tr:nth-child(2n) {
  background-color: #F4F4F4;
  } */
  .factorlist{
  padding: 15px;
  padding-top: 50px;
  }
  .factorlist [data-bc-grid="d1"] table[data-bc-table] thead td{
  color: var(--text);
  }
  #showfactor_wrapper {
  border-top: 1px dashed rgba(0, 0, 0, 0.3);
  height: 200px;
  overflow: auto;
  border-top: 2px solid #D0D0D0;
  }
  #showfactor_wrapper > td {
  padding: 15px 15px !important;
  /* background-color: rgba(109, 110, 113, 0.1) !important; */
  }
  #factor_details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  .factor_details span {
  direction: rtl;
  text-align: right;
  font-size: 18px !important;
  padding-bottom: 30px !important;
  padding-top: 15px !important;
  display: inline-block;
  }
  #buttons {
  display: flex;
  }
  #service_order_inside {
  display: flex;
  justify-content: space-between;
  }
  #service_order_tbl {
  width: 100%;
  direction: ltr;
  }
  #service_order_tbl table td{
  background-color: #fff;
  }
  #service_order_tbl thead td,#service_order_tbl thead tr{
    background-color: rgba(109, 110, 113, 0.1) !important;
    }
  #factordetailsbody div{
  width: 100%;
  border-bottom: 1px solid rgba(109, 110, 113, 0.1);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  #service_order table {
  width: 100%;
  direction: rtl;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  }
  #service_order table div div div{
    padding: 3px 0;
  }
  #service_order table:last-child div div{
    padding: 3px 0;
  }
  [data-bc-grid="d1"] table[data-bc-table] thead {
  border-top: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
  }
  #service_order tr {
  background: #fff !important;
  height: 55px;
  }
  #service_order thead td {
  background: rgba(0,0,0,0.04) !important;
  }
  #service_order_account {
  background: #fff;
  /* border: 1px solid #EDEEF2; */
  border-radius: 5px;
  /* width: 389px; */
  /* border: 1px dashed rgba(0, 0, 0, 0.3); */
  width: 100%;
  padding: 15px;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px !important;
  font-size: 18px;
  flex-direction: column;
  }
  #factorDetails {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
  border-radius: 5px;
  background: rgba(0,166,147,0.1);
  margin-top: 15px;
  border: 1px dashed #02a594;
  }
  .prefactor-remove{
  background-color: initial;
  border: none;
  cursor: pointer;
  }
  #factor-title-text{
  width: 100%;
  display: flex;
  justify-content: space-between;
  direction: rtl;
  }
  #filter-factor{
  background: rgba(109, 110, 113, 0.1);
  border: 1px solid rgba(109, 110, 113, 0.1);
  border-radius: 5px;
  width: 160px;
  height: 37px;
  position: relative;
  top: 40px;
  right: 15px;
  padding-right: 15px;
  }
  #factordetailsbody{
  width: 100%;
  margin-bottom: 20px;
  }
  .show-cost{
    display: flex !important;
    justify-content: space-between !important;
    direction: rtl !important;
    width: 100%  !important;
  }
  [data-sys-message-danger] {
    background-color: #fcdddd;
    color: #dc3545;
    padding: 7px 15px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    display: none;
    direction: ltr;
    }
    [data-sys-message-success] {
    background-color: #D9F2EF;
    color: #00A693;
    padding: 7px 15px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    display: none;
    direction: ltr;
    }
    [data-sys-message-success-fade-out] {
    transform: translateY(50px) !important;
    opacity: 0 !important;
    visibility: hidden;
    display: none;
  }
  
  [data-sys-message-success-fade-in] {
  transform: translateY(15px) !important;
  opacity: 1 !important;
  visibility: visible;
  display: block;
  }

.mainHomeSlider  p,.mainHomeSlider  img,.mainHomeSlider div{
    width: 100%;
    text-align: justify;
}
.mainHomeSlider span{
    width: 100%;
    text-align: center;
}

/* header */

.loginContainer{
    padding: 0;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    width: 80%;
    margin: 15px auto;
}

.schemaBtn {
background: var(--red);
border-radius: 5px;
color: #FFFFFF;
border: none;
padding: 7px 25px;
font-size: 13px;
width: 100%;
cursor: pointer;
text-decoration: none;

clear: both;
}
.log-inp input{
  border: 1px solid rgba(109, 110, 113, 0.1);
  border-radius: 5px;
  width: 100%;
  height: 50px;
  width: 100%;
  padding: 0 15px;
}
.log-inp fieldset{
  border: none;
}
.log-inp fieldset legend{
  position: relative;
  top: 10px;
  background: #fff;
  right: 20px;
  color: #6D6E71;
  font-size: 14px;
}
.logBtn{
  margin-top: 30px;
}
.login_box{
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-1000px);
  transition: all 0.5s ease-in-out;
  display: none;
  justify-content: flex-end;

}
.come-to-right-show{
  display: flex;
}
.come-to-right{
  transform: translateX(0);
}
.login_title{
    text-align: center;
    font-weight: 700;
    font-size: 22px;
}
.apiMessage{
margin: 10px 0;
color: var(--red);
font-size: 14px;
text-align: center;
}
.forgetPassword{
margin: 10px 0;
color: var(--gray);
font-size: 14px;
text-align: right;
position: relative;
top: 10px;
transition: all 0.5s ease-in-out;
}
.forgetPassword:hover{
color: var(--red);
cursor: pointer;
}
.dropdownButtonHeader {
    margin: 5px 5px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 13px;
    /* width: 153px; */
    padding: 4px;
    border-radius: 5px;
    transition: all ease 0.3s;
  }
  #companySelectButton{
    padding-top: 22px !important;
  }
  .menuHeaderdropdownContainer {
    position: relative;
    display: inline-block;
    /* width: 203px; */
    width: 170px;
    margin: 0 auto;
  }
  
  .menuButtonContent {
    overflow: hidden;
    max-height: 0;
    transition: max-height ease-in-out 0.3s;
    position: absolute;
    background:#E6E6E6;
    width: 170px;
    z-index: 1;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    right: -1px;
  }
  
  /* Links inside the dropdown */
  .menuButtonContent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .profile-picuture{
    border-radius: 10px;
    width: 30px;
    height: 30px;
  }
  .profile-picuture img{
    width: 100%;
  }
  .grayTitleUsername{
    color: #6D6E71;
    font-size: 8px;
    padding-bottom: 4px;
  }
  .usernameBoxMenu{
    color: #222222;
    font-size: 10px;
  }
  .menuArrowBox{
    text-align: left;
  }
  .menuArrowBox svg{
    transition: all ease 0.3s;
  }
  .showMenuHeaderDropDown {display:block;
    max-height: 128px !important;
    transition: max-height ease-in-out 0.3s;
    border-top: 1px solid rgba(109, 110, 113, 0.1);
  } 
  .iconBoxMenu{
    background: rgba(237, 28, 36, 0.05);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    height: 35px;
  width: 35px;
  }
  .menuHeaderDivs{
    display: grid;
    grid-template-columns: 1fr 2fr 0.5fr;
    gap: 7px;
    padding: 10px;
    cursor: pointer;
  }
  .searchIconMenu{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menuHeaderdropdownContainer{
    background-color: #E6E6E6;
    border: 0.5px solid rgba(109, 110, 113, 0.1);
    box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
  }
  
  /***** common styles for modals *****/
  .modals * {
      box-sizing: border-box;
      direction: rtl;
  }
  
  .modal {
      display: none;
      opacity: 0;
      position: fixed;
      z-index: 99999999;
      padding-top: 100px;
      left: 0;
      /* top: 0; */
      width: 100%;
      height: 100%;
      overflow: hidden;
      background-color:rgba(37, 33, 59, 0.2);
      bottom: 0;
  
  }
  
  .modal .modalBackground {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      cursor: default;
      background-color: transparent;
  }
  
  .modal .modalContent {
      position: absolute;
      background-color: #fff;
      margin: auto;
      padding: 20px 30px;
      width: 100%;
      bottom: 0;
      border-top-right-radius: 30px;
      border-top-left-radius: 30px;
      transform: translateY(450px);
      height: 450px;
      transition: all 0.7s ease-in-out;
      overflow: hidden;
  }
  
  .open_modal{
      transform: translateY(0px) !important;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
      from {
          top: -100px;
          opacity: 0;
      }
  
      to {
          top: 0;
          opacity: 1;
      }
  }
  
  @keyframes animatetop {
      from {
          top: -100px;
          opacity: 0;
      }
  
      to {
          top: 0;
          opacity: 1;
      }
  }
  
  /* modalContent modalTitle */
  .modalContent .modalTitle {
      font-weight: bold;
      font-size: 18px;
      width: 100%;
      /* background-color: #4d576e; */
      /* color: #fff; */
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -moz-flex;
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row;
      flex-direction: row;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center;
      direction: rtl;
      padding: 0px 0px 15px;
      box-sizing: border-box;
      border-top-right-radius: 5px;
      border-top-left-radius: 5px;
      border-top-left-radius: 5px;
      height: 40px;
      border-bottom: 0.5px solid #E8E8E8;
  }
  
  .modalContent .modalTitle .title {
      color: #030229;
      font-weight: bold;
      font-size: 20px;
  }
  
  .modalContent .modalTitle .closeIcon {
      color: #222222;
  }
  
  .modalContent .modalTitle .closeIcon:hover,
  .modalContent .modalTitle .closeIcon:focus {
      color: #bcbcbc;
      text-decoration: none;
      cursor: pointer;
  }
  
  .modalContent .modalTitle .closeIcon svg {
      vertical-align: middle;
  }
  
  /* modalBody */
  .modalContent .modalBody {
      padding: 30px 0;
      text-align: right;
      direction: rtl;
      position: relative;
  }
  
  /* modalFooter */
  .modalContent .modalFooter {
      padding: 15px 0px 0px;
  }
  
  /* modalContentWarning */
  .modal .modalContentWarning {
      position: relative;
      background-color: #fbfdff;
      margin: auto;
      padding: 20px 30px;
      border: 1px solid #888;
      border-radius: 5px;
      width: 90%;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
      -webkit-animation-name: animatetop;
      -webkit-animation-duration: 0.5s;
      animation-name: animatetop;
      animation-duration: 0.5s;
  }
  [data-sys-text-delete] {
      color: #B40020;
  }
  /* modalContentWarning modalTitle */
  .modalContentWarning .modalTitle {
      width: 100%;
      /* background-color: #4d576e; */
      /* color: #fff; */
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;
      /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -moz-flex;
      display: -webkit-flex;
      /* NEW - Chrome */
      display: flex;
      /* NEW, Spec - Opera 12.1, Firefox 20+ */
      -webkit-flex-direction: row-reverse;
      flex-direction: row-reverse;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      direction: rtl;
      padding: 0px 0px 15px;
      box-sizing: border-box;
      border-top-right-radius: 5px;
      border-top-left-radius: 5px;
      border-top-left-radius: 5px;
      /* height: 40px; */
      /* border-bottom: 0.5px solid #D0D0D0; */
  }
  
  .modalContentWarning .modalTitle .title {
      color: #030229;
      font-weight: bold;
      font-size: 20px;
  }
  
  .modalContentWarning .modalTitle .closeIcon {
      color: #222222;
  }
  
  .modalContentWarning .modalTitle .closeIcon:hover,
  .modalContentWarning .modalTitle .closeIcon:focus {
      color: #bcbcbc;
      text-decoration: none;
      cursor: pointer;
  }
  
  .modalContentWarning .modalTitle .closeIcon svg {
      vertical-align: middle;
  }
  
  /* modalBody */
  .modalContentWarning .modalBody {
      padding: 0 0 15px 0;
      text-align: right;
      direction: rtl;
  }
  /* modalFooter */
  .modalContentWarning .modalFooter {
      padding: 15px 0px 0px;
      /* border-top: 0.5px solid #D0D0D0; */
  }
  .inputModal{
      border: 0.5px solid #E8E8E8;
      border-radius: 10px;
      width: 100%;
      outline: none;
      padding: 15px 10px;
      font-size: 15px;
      height: 48px;
  }
  .searchInpuitBox{
    width: 41px;
    height: 41px;
    padding: 0 !important;
    position: absolute;
    top: 34px;
    left: 5px;
  }
  .modalBodyItems{
    margin-top: 30px;
    overflow-y: scroll;
    height: 350px;
  }
  .modalBodyItems li{
    padding: 10px 10px;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    margin-left: 5px;
  }
  .dark-gray-bc{
    background: #E6E6E6;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .dark-gray-bc .menuArrowBox svg{
    transform: rotate(90deg);
    transition: all ease 0.3s;
  }
  .redBackground{
    background: rgba(237, 28, 36, 0.1);
    transition: all ease 0.3s;
  }
  .basketButton a{
      width: 35px;
      height: 35px;
      background: rgba(237, 28, 36, 0.1);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }
  .basketButton{
      display: flex;
      justify-content: end;
  }
  .navbar{
      align-items: center;
      display: grid !important;
      grid-template-columns: 1fr 2fr 1fr;
  }
  .redNumber {
background: #EB5757;
height: 3px;
width: 3px;
border-radius: 50%;
color: #FFFFFF;
height: 18px;
width: 18px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 10px;
left: 8px;
font-size: 10px;
}
.logoutNav{
  display: flex !important;
}
.logoutBox{
  position: absolute;
  bottom: -300px;
  left: 16%;
}
.logoutSquare{
  width: 100%;
  height: 74px;
  border: 1px solid #E8E8E8;
  border-radius: 25px;
  padding: 15px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.nameAndUserName{
  display: flex;
  gap: 5px;
}
.logoutRedBox{
  width: 42px;
  height: 42px;
  background: rgba(180, 0, 32, 0.05);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}
.graySmallTitleName{
  color: #212121;
  font-size: 8px;
  padding-bottom: 4px;
}
.nameAndUserName{
  font-size: 12px;
}
.usernameDropdownGrayBox{
  display: flex;
  gap: 4px;
}
.success{
    color: green;
  }

  @media screen and (max-width: 320px ) {
    .lan-mobile a{
        font-size: 12px !important;
    }
    .lan-mobile div{
        font-size: 12px !important;
    }
    .menuArrowBox{
        width: 10px !important;
    }
    .menuHeaderdropdownContainer,.menuButtonContent{
        width: 140px !important;
    }
  }
.buy-service-box-title span{
    font-size: var(--size-xs)
}





.breacrumb ul{
    display: flex;
    direction: rtl;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 14px;
 justify-content: center;
}
.breacrumb li{
    margin:0 3px ;
}
.breacrumb li a{
    color: var(--text);
}
.breacrumb li:last-child{
    color: var(--gray);
} 
#startup1 {
    margin-bottom: 120px !important;
}


.gridStyle{
    width: 100% !important;
}
.projectCore_wrapper{
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
}
#startup3 , #startup2{
    width: 100% !important;
}
