/* Start Global Rules */
@import url("https://fonts.googleapis.com/css?family=El+Messiri");
:root {
  --main-color: #03a9f4;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "El Messiri", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #f4f4f4;
  direction: rtl;
}

main {
  display: flex;
  flex-wrap: wrap;
}
main > section {
  width: 100%;
  margin: auto;
  overflow: hidden;
}

/* End Global Rules */
/* Start Header */
#header {
  background: #353637;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-bottom: 3px solid #03a9f4;
  padding: 0px 120px;
}
@media (max-width: 575px) {
  #header {
    padding: 10px 20px;
  }
}
#header #branding {
  display: flex;
  align-items: center;
}
#header #branding img {
  margin: 10px 0 10px 10px;
  border-radius: 50%;
  display: flex;
  align-content: center;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#header .links {
  flex-grow: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#header .links h1 {
  font-size: 28px;
}
#header .links nav > ul {
  margin-top: 0px;
  list-style-type: none;
  padding-inline: 0;
  display: flex;
  align-items: center;
}
#header .links nav > ul > li {
  float: right;
  margin-left: 15px;
}
#header .links nav > ul > li a {
  text-decoration: none;
  color: white;
}
#header .links a {
  color: #ffffff;
  text-decoration: none;
}
#header .highlight,
#header .current a {
  color: #03a9f4 !important;
}

/* End Header */
.carousel img {
  height: 100%;
  width: auto;
}
@media (max-width: 575px) {
  .carousel img {
    height: 100%;
    width: auto;
  }
}

.carousel-inner .carousel-item {
  height: calc(100vh - 148px);
}
@media (max-width: 575px) {
  .carousel-inner .carousel-item {
    height: calc(100vh - 249.59px);
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  color: #fff;
}

/* Start Footer */
#footer {
  padding: 20px;
  margin-top: 20px;
  color: #ffffff;
  background-color: rgb(21, 26, 45);
  text-align: center;
}

/* End Footer *//*# sourceMappingURL=sliderSass.css.map */