@import url(../css/helper.css);
*,
* button:focus {
  outline: 0;
}

/*:root {*/
/*  --main-color: #3986C7;*/
/*  --sub-color: #C5B57F;*/
/*}*/

.main-color {
  color: var(--main-color) !important;
}

.main-bg {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.hover-main-bg:hover {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.sub-color {
  color: var(--sub-color) !important;
}

.sub-bg {
  background-color: var(--sub-color) !important;
  border-color: var(--sub-color) !important;
}

.hover-sub-bg:hover {
  background-color: var(--sub-color) !important;
  border-color: var(--sub-color) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Noto Kufi Arabic", serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
  height: #112937;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 16px;
  line-height: 2;
  opacity: 0.7;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- loader --------------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #06171E;
}
.loader::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #06171E, transparent);
}
.loader .video {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  opacity: 0.5;
  transition: transform 0.5s linear, opacity 0.5s linear;
}
.loader .content {
  position: relative;
  z-index: 20;
  top: 40%;
  text-align: center;
  transition: transform 0.5s linear, opacity 0.5s linear;
}
.loader .content .logo {
  height: 200px;
}
.loader .hide-content {
  transform: translateY(-100%);
  opacity: 0;
}
.loader .hide-video {
  transform: translateY(50px);
  opacity: 0;
}
.loader .fade-out-loader {
  opacity: 0;
  transition: opacity 0.5s linear;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
  position: relative;
  padding: 15px 30px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.butn:hover {
  background-color: #fff;
  color: var(--main-color);
}
.butn.top-left {
  border-top-left-radius: 0;
}
.butn.top-right {
  border-top-right-radius: 0;
}
.butn.bottom-left {
  border-bottom-left-radius: 0;
}
.butn.bottom-right {
  border-bottom-right-radius: 0;
}

/* --------------- helpers --------------- */
.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.secImg {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */
.categories-slider{
    position: relative;
    overflow: hidden;
    padding: 28px;
}