/* import fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* set global properties */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  direction: rtl;
}

a,
p,
button,
span,
li,
small,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
option {
  font-family: "Rubik", sans-serif;
}

input,
select,
button {
  outline: none;
}

/* color scheme */
:root {
  --primary-color: #ff9900;
  --secondary-color: #18a19d;
}


input, select, button {
  transition: all 400ms ease-in-out;
}

button:hover {
  opacity: 0.82;
}