/* ---- BASE STYLES ---- */
*{
  box-sizing: border-box; 
}
html,
body {
  margin: 0;
  padding: 0;
}

body,
input,
select,
textarea,
button {
  direction: rtl;
  font-family: "Estedad";
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: normal;
  font-family: "Estedad_bold";
}
blockquote{
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  padding: 0;
  margin: 0;
}
button {
  background-color: unset;
  border: unset;
  cursor: pointer;
}

a {
  border: none;
  color: #000;
  outline: none;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.show{
  opacity: 1 !important;
  visibility: visible !important;
  transition: 0.3s all ease-in-out;
}
.res img {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
}
.main_wrapper {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1200px;
}
@media only screen and (min-width: 1232px) {
  .main_wrapper {
    padding: 0;
  }
}
.reportage_wrapper {
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1410px;
}
@media only screen and (min-width: 1232px) {
  .reportage_wrapper {
    padding: 0;
  }
}
/* ---- ONLY SHOW DESKTOP ---- */
@media only screen and (max-width: 990px) {
  .desktop_show {
    display: none;
  }
}
/* ---- ONLY SHOW MOBILE ---- */
@media only screen and (min-width: 990px) {
  .mobile_show {
    display: none;
  }
}
.green_text {
  color: #00935e;
}

select , button {
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;
}