/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --main-color: #0c3e63;
  --main-color-alt: #e9e9e9;
  --section-background-color: #cdc8c8;
  --main-transition: 0.3s;
}
html {
  scroll-behavior: smooth;
}
.tajawal-extralight {
  font-family: "Tajawal", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.tajawal-light {
  font-family: "Tajawal", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.tajawal-regular {
  font-family: "Tajawal", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tajawal-medium {
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.tajawal-bold {
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.tajawal-extrabold {
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.tajawal-black {
  font-family: "Tajawal", sans-serif;
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: "Tajawal", sans-serif;
  background-color: #e9e9e9;
  direction: rtl;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
/* Start Header */
.header {
  position: fixed;
  background-color: var(--main-color);
  width: 100%;
  z-index: 10;
  box-shadow: 0px 5px 15px var(--main-color);
}
@media (max-width: 767px) {
  .header {
    position: static;
    box-shadow: none;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container img {
  width: 100px;
  height: fit-content;
}
@media (max-width: 767px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }
}
.header h2 {
  color: white;
}
.header .links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.header .links li {
  margin-right: 20px;
}
.header .links li a {
  color: white;
  transition: var(--main-transition);
}
.header .links li a:hover {
  color: var(--section-background-color);
}
.header .awesome {
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.header .awesome i {
  margin-right: 25px;
  transition: var(--main-transition);
  cursor: pointer;
}
.header .awesome i:hover {
  color: var(--main-color);
}
@media (max-width: 767px) {
  .header span {
    margin: 20px 0;
  }
}
/* End Header */

img {
  width: 500px;
  height: 300px;
}

span {
  font-size: 25px;
}

p {
  font-size: 20px;
}
