/* General Reset and Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-family: inherit;
}

*[data-aos] {
  will-change: opacity, transform;
}

html {
  direction: rtl;
}

::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-track {
  background: rgb(226, 225, 225);
}

::-webkit-scrollbar-thumb {
  background: #522b84;
  cursor: grab;
}
::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body,
main {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
main {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  flex-direction: column;
}
footer {
  margin-top: auto;
}
svg {
  width: 20px;
}
svg path {
  transition: var(--transition);
}
header,
footer,
section {
  position: relative;
  padding-block: 50px;
}

select {
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

ul {
  list-style: none;
}

li {
  display: inline-block;
}

img,
svg {
  height: 100%;
  vertical-align: middle;
}

a,
button {
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

img,
svg,
i,
path,
button,
a,
dialog,
video {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

p {
  text-wrap: balance;
}

.container {
  padding-inline: 1rem;
  margin: auto;
  height: 100%;
}

.fullScreen {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ======CONTAINER MEDIA============= */

@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 992px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: 1200px;
  }
}

@media (min-width: 1440px) {
  .container {
    width: 1340px;
  }
}
