/* Font */
@font-face {
  font-family: iranYekan;
  src: url('/css/Font/IRANYekanRegular.ttf');
}

* {
  padding: 0;
  margin: 0;
}

*:not(i) {
  font-family: "iranYekan";
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

/* Width & Hieght */
.w-100 {
  width: 100%;
}

.h-100vh {
  height: 100vh;
}

.h-100 {
  height: 100%;
}

/* Text */
.text-center {
  text-align: center;
}

/* Display */
.dis-none {
    display: none !important;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

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

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

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

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: end;
}

/* Positions */
.pos-absolute {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

.pos-reletive {
  position: relative;
}

/* Transition */
.transition {
  transition: all .5s ease;
}

/* Z-Index */
.zIndex-3 {
  z-index: 3;
}

/* Pointer */
.pointer {
  cursor: pointer;
}

/* Customized */
.white-back {
  background-color: var(--white);
}

text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}