@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap");
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #926dcf;
  --sub-color1: #e78a5e;
  /* --subColor2: #77643d; */
}

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

.mainBack {
  background-color: var(--main-color) !important;
  border-color: var(--main-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", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  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: #999;
}

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: 14px;
  line-height: 1.8;
}

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

.section-padding {
  padding: 100px 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;
}

/* --------------- 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);
}

/* --------------- section head --------------- */
.section-head {
  position: relative;
  margin-bottom: 50px;
}
.section-head h2 {
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 40px;
}
.section-head h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-image: url(../images/prush2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.section-head.text-center h2::after {
  background-position: center;
}

/* --------------- butn --------------- */
.butn {
  position: relative;
  padding: 15px 40px;
  border-radius: 30px;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  border: 0;
}
.butn * {
  color: #fff;
}
.butn:hover {
  background-color: var(--sub-color1);
}
.butn.butn-orange {
  background-color: var(--sub-color1);
}
.butn.butn-orange:hover {
  background-color: var(--main-color);
}

/* --------------- megamenu --------------- */
.megamenu-menu {
  width: 100%;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  z-index: 99;
  display: flex !important;
  background-color: #1e1e1e;
  color: #fff;
  opacity: 0 !important;
  transform: translateY(30px);
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.megamenu-menu.show {
  opacity: 1 !important;
  transform: translateY(-5px);
  visibility: visible;
}
.megamenu-menu .prush {
  position: absolute;
  left: 0;
  top: 20px;
  width: 70%;
  height: calc(100% - 40px);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  opacity: 0.3;
}
.megamenu-menu .mega-img {
  position: relative;
  height: 400px;
  min-height: calc(100% - 10px);
  overflow: hidden;
  border-radius: 10px;
  margin: 5px;
}
.megamenu-menu .mega-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu-menu .mega-img .tab-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.5s ease;
}
.megamenu-menu .mega-img .tab-img.current {
  opacity: 1;
  transform: scale(1);
}
.megamenu-menu .links-group {
  position: relative;
  width: 20%;
}
.megamenu-menu .links-group .sub-title {
  position: relative;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
  font-size: 11px;
  display: block;
  font-weight: bold;
}
.megamenu-menu .links-group .sub-title:hover {
  background-color: rgba(231, 138, 94, 0.0823529412);
  color: var(--sub-color1);
}
.megamenu-menu .links-group .links {
  padding: 15px 30px;
}
.megamenu-menu .links-group .links a {
  font-size: 12px;
  padding: 5px 0;
  margin: 5px 0;
  font-weight: 500;
}
.megamenu-menu .links-group .links a:hover {
  color: var(--sub-color1);
}

/* --------------- navbar --------------- */
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  color: #fff;
  z-index: 99;
  border-radius: 0;
  padding: 0 3vw;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: #1e1e1e;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 12px;
  color: #fff;
  margin: 0 5px;
}

/* --------------- header --------------- */
header {
  position: relative;
  background-color: #1e1e1e;
  color: #fff;
  z-index: 2;
}
header::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
  opacity: 0.3;
}
header .container-fluid {
  padding: 0;
}
header .header-content {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 700px;
}
header .header-content .video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  padding-top: 100px;
  text-align: center;
  /* The typing effect */
  /* The typewriter cursor effect */
}
header .info h1 {
  font-size: 60px;
  font-weight: bold;
  text-transform: capitalize;
}
header .info .typewriter {
  color: #fff;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid var(--sub-color1); /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--sub-color1);
  }
}

/* --------------- inspiration --------------- */
.inspiration {
  position: relative;
  overflow: hidden;
}
.inspiration .inspiration-slider {
  position: relative;
}
.inspiration .inspiration-slider .item {
  position: relative;
  margin-top: 30px;
}
.inspiration .inspiration-slider .item .img {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.inspiration .inspiration-slider .item .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #926dcf;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
.inspiration .inspiration-slider .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inspiration .inspiration-slider .item .info {
  position: absolute;
  left: 15px;
  bottom: 15px;
  width: calc(100% - 30px);
  background-color: #fff;
  padding: 20px;
  z-index: 10;
  border-radius: 15px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease;
  padding-inline-end: 80px;
}
.inspiration .inspiration-slider .item .info h6 {
  font-size: 14px;
  font-weight: bold;
}
.inspiration .inspiration-slider .item .info .text {
  font-size: 12px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-inline-end: 15px;
}
.inspiration .inspiration-slider .item .info .arrow {
  position: absolute;
  left: 20px;
  top: calc(50% - 22px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #926dcf;
  color: #fff;
}
.inspiration .inspiration-slider .item:hover .img::after {
  opacity: 0.5;
}
.inspiration .inspiration-slider .item:hover .info {
  opacity: 1;
  transform: translateY(0);
}
.inspiration .inspiration-slider .item.Violet:hover .img::after {
  background-color: #4c43bd;
}
.inspiration .inspiration-slider .item.Violet:hover .info .arrow {
  background-color: #4c43bd;
}
.inspiration .inspiration-slider .item.green:hover .img::after {
  background-color: #3b6355;
}
.inspiration .inspiration-slider .item.green:hover .info .arrow {
  background-color: #3b6355;
}
.inspiration .inspiration-slider .item.sand:hover .img::after {
  background-color: #e78a5c;
}
.inspiration .inspiration-slider .item.sand:hover .info .arrow {
  background-color: #e78a5c;
}

@media screen and (min-width: 991px) {
  .inspiration .container {
    max-width: 1480px;
  }
}
/* --------------- sections --------------- */
.sections {
  position: relative;
  overflow: hidden;
  background-color: #1e1e1e;
  color: #fff;
  z-index: 20;
}
.sections .sections-slider {
  position: relative;
  overflow: hidden;
  padding-top: 5px;
}
.sections .sections-slider .swiper-slide {
  width: 250px;
  margin-inline-end: 15px;
}
.sections .sections-slider .item {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  display: block;
  z-index: 20;
  background: linear-gradient(to top, rgb(225, 136, 100), rgb(121, 107, 177), rgb(75, 91, 165), rgb(58, 100, 105));
}
.sections .sections-slider .item::after {
  position: absolute;
  content: "";
  left: -5px;
  bottom: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: linear-gradient(to bottom, rgb(225, 136, 100), rgb(121, 107, 177), rgb(75, 91, 165), rgb(58, 100, 105));
  z-index: -1;
  opacity: 0;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.sections .sections-slider .item .img {
  position: relative;
  height: 330px;
  border-radius: 15px;
  overflow: hidden;
}
.sections .sections-slider .item .info {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: calc(100% - 10px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.sections .sections-slider .item .info h6 {
  font-size: 13px;
  font-weight: bold;
  color: #1e1e1e;
}
.sections .sections-slider .item .info .arrow {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 44px;
  height: 51px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #926dcf;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}
.sections .sections-slider .item:hover .info {
  padding-inline-end: 50px;
}
.sections .sections-slider .item:hover .info .arrow {
  opacity: 1;
  visibility: visible;
}
.sections .sections-slider .item:hover::after {
  opacity: 1;
}

@media screen and (min-width: 991px) {
  .sections {
    padding-inline-start: calc((100vw - 1320px) / 2);
  }
}
.swiper-arrows {
  position: relative;
  width: 130px;
  height: 50px;
}
.swiper-arrows .swiper-button-prev,
.swiper-arrows .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin: 0 !important;
  top: 0;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.2);
  transition: all 0.3s ease;
}
.swiper-arrows .swiper-button-prev::after,
.swiper-arrows .swiper-button-next::after {
  font-size: 17px;
  color: #1e1e1e;
}
.swiper-arrows .swiper-button-prev:hover,
.swiper-arrows .swiper-button-next:hover {
  background-color: var(--main-color);
}
.swiper-arrows .swiper-button-prev:hover::after,
.swiper-arrows .swiper-button-next:hover::after {
  color: #fff;
}

/* --------------- products --------------- */
.products {
  position: relative;
}
.products .banner {
  position: relative;
  padding: 250px 30px 30px;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  z-index: 20;
  margin-top: 30px;
}
.products .banner .info {
  position: relative;
  margin-bottom: 100px;
}
.products .banner .info h5 {
  margin-bottom: 15px;
}
.products .banner .info .text {
  font-size: 13px;
  opacity: 0.7;
}
.products .banner .prush {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  z-index: -1;
  opacity: 0.5;
}
.products .product-card {
  position: relative;
  text-align: center;
  margin-top: 30px;
  display: block;
}
.products .product-card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 230px;
  background: linear-gradient(to bottom, rgb(225, 136, 100), rgb(121, 107, 177), rgb(75, 91, 165), rgb(58, 100, 105));
  border-radius: 15px;
  z-index: -1;
  transition: all 0.3s ease;
}
.products .product-card .img {
  position: relative;
  height: 230px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  background-color: #f9f9f9;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.products .product-card .img img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.products .product-card .info {
  position: relative;
  padding-top: 20px;
}
.products .product-card .info h6 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}
.products .product-card .info .price {
  font-size: 18px;
}
.products .product-card .info .price .num {
  color: var(--sub-color1);
}
.products .product-card .tags {
  position: absolute;
  z-index: 20;
  right: 10px;
  top: 10px;
}
.products .product-card .tags .item {
  font-size: 12px;
  padding: 5px 8px;
  background-color: var(--sub-color1);
  color: #fff;
  border-radius: 8px;
}
.products .product-card:hover::after {
  transform: translate(-10px) rotate(-2deg);
}

/* --------------- banner-sec --------------- */
.banner-sec1 {
  position: relative;
  overflow: hidden;
  padding: 150px 0 50px;
}
.banner-sec1 .banner-card {
  position: relative;
  padding: 50px 30px;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 15px;
  z-index: 20;
  margin-top: 30px;
}
.banner-sec1 .banner-card .info {
  position: relative;
  text-align: center;
}
.banner-sec1 .banner-card .info h5 {
  font-size: 30px;
  margin-bottom: 15px;
}
.banner-sec1 .banner-card .info .text {
  font-size: 13px;
  opacity: 0.7;
}
.banner-sec1 .banner-card .logo {
  height: 200px;
  margin-inline-end: 50px;
}
.banner-sec1 .banner-card .prush {
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  transform: translateX(-60px);
  z-index: -1;
  opacity: 0.5;
}
.banner-sec1 .banner-card .vector {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}

/* --------------- banner-sec --------------- */
.banner-sec {
  position: relative;
  overflow: hidden;
  padding: 50px 0 150px;
}
.banner-sec .banner-card {
  position: relative;
  padding: 50px 30px;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 15px;
  z-index: 20;
  margin-top: 30px;
}
.banner-sec .banner-card .info {
  position: relative;
}
.banner-sec .banner-card .info h5 {
  font-size: 38px;
  margin-bottom: 15px;
}
.banner-sec .banner-card .info .text {
  font-size: 13px;
  opacity: 0.7;
}
.banner-sec .banner-card .logo {
  height: 200px;
  margin-inline-end: 50px;
}
.banner-sec .banner-card .prush {
  position: absolute;
  left: 0;
  top: -30px;
  width: 60%;
  transform: translateX(-60px);
  z-index: -1;
}
.banner-sec .banner-card .vector {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  z-index: -1;
  opacity: 0.2;
}

/* --------------- instagram --------------- */
.instagram {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}
.instagram .img {
  height: 300px;
  width: 300px;
  border-radius: 15px;
  overflow: hidden;
}
.instagram .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.instagram .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  pointer-events: none;
}
.instagram .swiper-wrapper .swiper-slide {
  width: -moz-max-content !important;
  width: max-content !important;
}
.instagram .swiper-wrapper .swiper-slide:nth-of-type(odd) {
  transform: rotate(-5deg);
}

/* --------------- features --------------- */
.features {
  position: relative;
  z-index: 20;
  overflow: hidden;
}
.features .item {
  position: relative;
  padding: 50px;
  text-align: center;
  background-color: #06071b;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.1333333333);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.features .item .icon {
  font-size: 70px;
  margin-bottom: 15px;
}
.features .item .icon img {
  height: 50px;
}
.features .item .icon i {
  background: linear-gradient(90deg, rgb(225, 136, 100) 0%, rgb(121, 107, 177) 25%, rgb(75, 91, 165) 50%, rgb(58, 100, 105) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features .item h5 {
  color: #fff;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  background-color: #06071b;
  color: #fff;
  text-transform: capitalize;
}
.footer * {
  color: #fff;
}
.footer .main-footer {
  position: relative;
  padding: 140px 0;
}
.footer .main-footer .foot-logo img {
  height: 150px;
  margin-bottom: 30px;
}
.footer .main-footer .social-links a {
  font-size: 16px;
  margin-inline-end: 30px;
  opacity: 0.7;
}
.footer .main-footer .social-links a i {
  margin-inline-end: 8px;
}
.footer .main-footer .social-links a:hover {
  opacity: 1;
}
.footer .main-footer .top-content {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.footer .links a {
  position: relative;
  font-size: 16px;
  margin: 7px 0;
  text-transform: capitalize;
  opacity: 0.7;
}
.footer .links a:hover {
  opacity: 1;
}
.footer .foot {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.footer .foot p {
  font-size: 16px;
  color: #999;
}
.footer .foot p a {
  color: #fff;
}
.footer .foot .foot-links a {
  position: relative;
  font-size: 16px;
  opacity: 0.7;
  margin-inline-start: 5vw;
}
.footer .foot .foot-links a:hover {
  opacity: 1;
}
.footer .payment img {
  height: 40px;
  margin-inline-start: 10px;
}
.footer .payment .pay {
  height: 15px;
}

@media screen and (max-width: 991px) {
  .footer .social-links {
    margin-bottom: 30px;
  }
}
/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */