/**
 * variables
 */
/**
 * mixins
 */
/**
 * loader
 */
.loader {
  width: 100px;
  height: 100px;
  display: block;
  margin-top: 250px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  border: 10px solid #2c3e50;
  border-top: 10px solid #ee7003;
  animation: spin 2s linear infinite;
}

.loaded {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
 * global
 */
html {
  scroll-behavior: smooth;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(44, 62, 80, 0.8);
}

/**
 * fonts
 */
.ar-font {
  font-family: "Almarai", "Raleway", sans-serif;
}

.en-font {
  font-family: "Raleway", "Almarai", sans-serif;
}

/**
 * colors
 */
.white-color {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.primary-color {
  color: #3498db;
}

.secondary-bg {
  background-color: #2c3e50;
  color: #ffffff;
}

.third-color {
  color: #ee7003;
}

.forth-color {
  color: #8eb1ba;
}

/**
 * about section
 */
#about img {
  max-height: 15rem;
}

/**
 * services section
 */
.services-text .text-secondary {
  color: rgba(255, 255, 255, 0.6) !important;
}

/**
 * clients section
 */
.gray-filter img {
  transition: 0.5s;
  filter: grayscale(100%);
  max-height: 150px;
  display: block;
  margin: auto;
}
.gray-filter .card-text {
  opacity: 0;
  direction: rtl;
  transition: 0.5s;
}
.gray-filter:hover img {
  filter: grayscale(0%);
}
.gray-filter:hover .card-text {
  opacity: 1;
}

/**
 * contact section
 */
#contact {
  background-image: url(../img/3.jpg);
  background-size: cover;
  position: relative;
  min-height: 200px;
}
#contact .container {
  position: relative;
  color: #ffffff;
}
#contact .container textarea {
  resize: none;
}

/**
 * bootstrap style
 */
.btn {
  box-shadow: none !important;
}

.card {
  background-color: transparent;
  border: none;
}

.dropdown-menu {
  min-width: 0;
}

.dropdown-menu.show {
  text-align: center;
}

.dropdown-item {
  cursor: pointer;
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.carousel-item {
  position: relative;
  max-height: 600px;
}
.carousel-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.8);
}

.carousel-indicators [data-bs-target] {
  border-radius: 50%;
  height: 11px;
  width: 11px;
  margin-left: 5px;
  margin-right: 5px;
}

/**
 * screens
 */
@media (max-width: 575.98px) {
  /**
   * clients
   */
  .gray-filter img {
    max-height: 100px;
  }

  /**
   * 
   */
  .navbar-nav .nav-link {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
