/* --------------------
    amir style start here
-------------------- */
#mask {
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

#menumobile {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  width: 250px;
  background: var(--c-white);
  z-index: 99991;
  transition: all 0.5s;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
  overflow-y: auto;
}

#nomenumobile {
  cursor: pointer;
  transition: all 0.5s;
  width: 20px;
  height: 20px;
  background: transparent;
  text-align: center;
  display: inline-flex;
  color: var(--c-danger);
  font-size: 14px;
  align-items: center;
  justify-content: center;
}

.come-menumobile {
  right: 0 !important;
}

.title-mm img {
  max-width: 100px;
  max-height: 30px;
}

.title-mm {
  background: var(--c-white);
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-primary);
}

.title-mm img {
  user-select: none;
}

.btn-mm {
  padding: 0 20px;
  margin-top: 20px;
}

.btn-mm a {
  display: flex;
}

.title-sub-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-flow: row-reverse;
}


.title-sub-head strong {
  font-family: var(--ff-main);
  font-weight: 600;
  font-size: 2.5rem;
}

.main-mm {
  padding: 5px 15px;
}

.main-mm ul li a {
  color: var(--c-primary);
  display: block;
  padding: 8px 0;
  position: relative;
  font-family: var(--ff-main);
  font-weight: 400;
  font-size: 2rem;
}

.main-mm ul li a:hover {
  color: var(--c-primary);
}

.main-mm ul li>.sub-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 250px;
  background: var(--c-white);
  right: -250px;
  transition: 0.3s;
  z-index: 9;
  padding: 20px;
}

.childer i {
  position: absolute;
  cursor: pointer;
  top: 9px;
  border: solid var(--c-primary);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 10px;
}

.childer {
  position: absolute;
  left: 0;
  cursor: pointer;
  top: 10px;
  width: 25px;
  height: 25px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.come-submenu {
  right: 0 !important;
}

.sub-closer {
  cursor: pointer;
  top: 10px;
  width: 25px;
  height: 25px;
  background: transparent;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-closer i {
  cursor: pointer;
  top: -1px;
  border: solid var(--c-primary);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: relative;
  left: -1px;

}

.title-subcome {
  color: var(--c-primary);
  font-family: var(--ff-main);
  font-weight: 600;
  position: relative;
  top: 2px;
}