:root{
    --header-height: 3.5rem;
    /*================ Colors ==========*/
    --title-color: hsl(250,8%, 15%);
    --text-color: hsl(250, 8%, 35%);
    --body-color: hsl(250, 60%, 98%);
    --container-color: #fff;
    --shadow: hsl(0, 0%, 15%, .1);
    --hover-color: #e91e63;
    --hover3-color: #e8f9fd;
    --hover2-color: #59ce8f;
    --scroll-bar-color: hsl(250,12%,90%);
    /*============ font and typography ========*/
    --body-font: 'Vazir',Vazir;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.8rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;

    /*=============== Font Weight ================*/
    --font-medium: 500;
    --font-bold: 600;

    /*=============== Margenes Bottom ============*/
    --mb-0-5: .5rem;
    --mb--0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*=============== z index ==============*/
    --z-tooltip: 10;
    --z-fixed: 100;

}
.header .wrapper {
    display: flex;
    background: var(--hover3-color);
    width: 83%;
    padding: 3px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    margin: 0 auto;
    justify-content: center;
    border-radius: 9px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17%;
            flex: 0 0 17%;
  }
  .header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .menu > ul > li {
    display: inline-block;
    line-height: 3.125rem;
    margin-left: 1.5rem;
    transition: all 0.1s ease;
  }
  .header .menu > ul > li > a > img{
    margin-top: -3px;
    width : 12px;
    height: 12px;
    margin-right: 10px;
  }
  .header .menu > ul > li:hover{
    border-bottom: 2px solid var(--hover-color);
  }
  .header .menu > ul > li > a {
    position: relative;
    font-family: 'dana';
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    border: none;
    outline: none;
    color: var(--title-color) !important;
    transition: color 0.3s ease;
  }
  .header .menu > ul > li > a:hover{
    color: rgb(241, 41, 41) !important;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    z-index: 109;
    opacity: 0;
    visibility: hidden;
    border-radius: 0.25rem;
    border-top: 3px solid var(--color-pink-600);
    background: #ffffff;
    -webkit-box-shadow: var(--shadow-medium);
            box-shadow: var(--shadow-medium);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .menu > ul > li .menu-subs > ul > li {
    line-height: 1;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: var(--color-black);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .menu > ul > li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
    display: block;
    line-height: 1;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    font-family: 'dana';
    display: inline-block;
    color: var(--text-color);
    font-size: 1em;
    font-weight: 400;
    line-height: 1.25;
    padding: 0.5rem 0;
    outline: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1.25rem 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 0 2rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title{
    font-size: 1em;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title a{
    font-family: 'dana';
    line-height: 1;
    padding: 0.75rem 0;
    color: var(--title-color);
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title a:hover{
    color: var(--hover-color);
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    text-align: center;
  }
  
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
  .header .menu > ul > li .menu-subs > ul > li > a:hover {
    color: var(--hover-color);
  }
  .header-item-right a:hover,
  .header .menu > ul > li:hover > a {
    color: var(--color-pink-700);
  }
  .header .menu-mobile-header,
  .header .menu-mobile-toggle {
    display: none;
    
  }
  
  @media screen and (min-width: 993px) {
    .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
      margin-top: 0.5rem;
      opacity: 1;
      visibility: visible;
    }
  }
  @media screen and (max-width: 992px) {
    .header-item-center {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
    }
    .header-item-left, .header-item-right {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
    }
  
    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 10px auto !important;
        padding: 1rem 0 !important;
        background: var(--hover-color) !important;
        width: 96% !important;
    }
  
    .header .menu-mobile-toggle {
      position: relative;
      display: block;
      cursor: pointer;
      width: 1.75rem;
      height: 1rem;
      border: none;
      outline: none;
      margin-left: 1.25rem;
      margin-top: -0.25rem;
      background: none;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transition: 0.35s ease-in-out;
      transition: 0.35s ease-in-out;
    }
    .header .menu-mobile-toggle span {
      display: block;
      position: absolute;
      width: 100%;
      height: 2px;
      left: 0;
      border: none;
      outline: none;
      opacity: 1;
      border-radius: 0.25rem;
      background: #fff;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out;
    }
    .header .menu-mobile-toggle span:nth-child(1) {
      top: 0;
    }
    .header .menu-mobile-toggle span:nth-child(2), .header .menu-mobile-toggle span:nth-child(3) {
      top: 0.5rem;
    }
    .header .menu-mobile-toggle span:nth-child(4) {
      top: 1rem;
    }
    .header-item-right {
      width: 100%;
      direction: ltr;
      align-items: center;
    }
    .header .menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 75%;
      height: 100%;
      z-index: 111;
      overflow: hidden;
      background: #fff;
      -webkit-transform: translate(-150%);
              transform: translate(-150%);
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
    }
    .header .menu.active {
      -webkit-transform: translate(0%);
              transform: translate(0%);
    }
    .header .menu > ul > li {
      display: block;
      line-height: 1;
      margin: 0;
    }
    .header .menu > ul > li > a {
      display: block;
      line-height: 3.125rem;
      height: 3.125rem;
      padding: 0 1.125rem 0 1rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header .menu > ul > li > a i.ion {
      position: absolute;
      font-size: 1.25rem;
      line-height: 3.125rem;
      top: 0;
      left: 0;
      width: 3.125rem;
      height: 3.125rem;
      text-align: center;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg);
    }
    .header .menu .menu-mobile-header {
      position: relative;
      position: sticky;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      top: 0;
      height: 3.125rem;
      z-index: 110;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      background: #fff;
    }
    .header .menu .menu-mobile-header .menu-mobile-arrow {
      display: none;
      font-size: 1.25rem;
      line-height: 3.125rem;
      width: 3.125rem;
      height: 3.125rem;
      cursor: pointer;
      text-align: center;
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--color-black);
    }
    .header .menu .menu-mobile-header.active .menu-mobile-arrow {
      display: block;
    }
    .header .menu .menu-mobile-header .menu-mobile-title {
      font-family: inherit;
      font-size: 1rem;
      font-weight: 500;
      line-height: inherit;
      color: var(--color-black);
      text-transform: capitalize;
    }
    .header .menu .menu-mobile-header .menu-mobile-close {
      font-size: 2.25rem;
      line-height: 3.125rem;
      cursor: pointer;
      width: 3.125rem;
      height: 3.125rem;
      text-align: center;
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--color-black);
    }
    .header .menu .menu-section {
      height: 100%;
      overflow-x: auto;
      overflow-y: hidden;
    }
    .header .menu > ul > li .menu-subs {
      position: absolute;
      display: none;
      top: 0;
      left: 0;
      max-width: none;
      min-width: auto;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 1rem;
      padding-top: 4rem;
      opacity: 1;
      overflow-y: auto;
      visibility: visible;
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
      -webkit-box-shadow: none;
              box-shadow: none;
    }
    .header .menu > ul > li .menu-subs.menu-mega {
      position: absolute;
      display: none;
      top: 0;
      left: 0;
      max-width: none;
      min-width: auto;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 1rem;
      padding-top: 4rem;
      opacity: 1;
      overflow-y: auto;
      visibility: visible;
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
      -webkit-box-shadow: none;
              box-shadow: none;
    }
    .header .menu > ul > li .menu-subs.active {
      display: block;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
      flex: 0 0 100%;
      padding: 0rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
      margin-top: 0;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
      margin-bottom: 1.25rem;
    }
    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
      margin-bottom: 0rem;
    }
    .header .menu > ul > li .menu-subs > ul > li > a {
      display: block;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
      margin-bottom: 1rem;
    }
    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
      display: block;
    }
  
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      background: rgba(0, 0, 0, 0.65);
      -webkit-transition: all 0.45s ease-in-out;
      transition: all 0.45s ease-in-out;
    }
    .overlay.active {
      opacity: 1;
      visibility: visible;
    }
  }