@import url("./mobile.css") screen and (min-width: 0px);
@import url("./desktop.css") screen and (min-width: 1000px);

/* font face */
@font-face {
  font-family: "iransans";
  src: url("../../font/IRANSansWeb-Light.woff");
  src: url("../../font/IRANSansWeb-Light.woff2");
  src: url("../../font/IRANSansWeb-Light.eot");
  src: url("../../font/IRANSansWeb-Light.ttf");
  font-weight: 500;
}
:root {
  --animate-duration: 1000ms;
  --animate-delay: 1s;
  --highlight-red: #ff0000;
  --text-color: rgb(137, 137, 137);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: auto;
  background-color: #e9e9e9;
  direction: rtl;
  overflow-x: hidden;
  text-align: justify;
}

main {
  width: 100%;
  font-family: "iransans";
  max-width: 1600px;
  height: auto;
  box-shadow: 0px 0px 5px rgb(200, 200, 200);
  background-color: transparent;
  z-index: 0;
}

a {
  text-decoration: none;
  color: white;
  background-color: transparent;
}
hr {
  padding: 10px;
}

h1 {
  color: var(--highlight-red);
  font-size: 30px;
  font-weight: 300;
}
h2 {
  color: rgb(88, 89, 91);
  font-size: 20px;
  font-weight: 300;
}
h3 {
  color: var(--highlight-red);
}
p {
  word-spacing: 1px;
  font-size: 16px;
  color: var(--text-color);
  line-height: 33px;
}
button {
  font-family: "iransans";
  font-size: 15px;
  color: rgb(121, 121, 121);
  line-height: 15px;
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  padding: 12px 24px;
  transition: all 0.3s ease;
  background-color: white;
}
button:hover {
  background-color: var(--highlight-red);
  color: white;
}

span {
  color: var(--highlight-red);
}
.svgs {
  width: 50px;
}
