@font-face {
  font-family: "light";
  src: url(../Fonts/tajawal/Tajawal-Light.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/tajawal/Tajawal-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
}

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: "bold";
}

h4, h5, h6 {
  font-family: "medium";
}

p, span {
  font-size: 12px;
  font-family: 'light';
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control {
  height: 45px;
  border-radius: 5px;
}

form .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid var(--secondary);
}

/***************************** Animations *****************************/
@-webkit-keyframes blur {
  0% {
    text-shadow: #000 0px 0px 15px;
    color: transparent;
    margin-top: 50px;
  }
  100% {
    text-shadow: none;
    color: #000;
    margin-top: 0px;
  }
}
@keyframes blur {
  0% {
    text-shadow: #000 0px 0px 15px;
    color: transparent;
    margin-top: 50px;
  }
  100% {
    text-shadow: none;
    color: #000;
    margin-top: 0px;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
    -webkit-filter: blur(25px);
            filter: blur(25px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
    -webkit-filter: blur(25px);
            filter: blur(25px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes upBlur {
  0% {
    -webkit-filter: blur(25px);
            filter: blur(25px);
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes upBlur {
  0% {
    -webkit-filter: blur(25px);
            filter: blur(25px);
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.upBlur {
  -webkit-animation: upBlur both;
          animation: upBlur both;
}

.zoomInBlur {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transition: .5s;
  transition: .5s;
}

/***************************** Start Edit Navbar & footer *****************************/
.nav-components .navbar {
  padding: 1.25rem;
  background-color: #fff !important;
}

.nav-components .navbar .menu-wrapper .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  display: block;
  position: relative;
  margin: 0 15px;
}

.nav-components .navbar .menu-wrapper .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.nav-components .navbar .menu-wrapper .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-components .navbar .menu-wrapper .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.nav-components .navbar .menu-wrapper .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-components .navbar .menu-wrapper .navbar-toggler .navbar-toggler-icon::after, .nav-components .navbar .menu-wrapper .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav-components .navbar .menu-wrapper .navbar-toggler .navbar-toggler-icon::after {
  top: -7px;
  right: 0px;
}

.nav-components .navbar .menu-wrapper .navbar-toggler .navbar-toggler-icon::before {
  top: 7px;
  right: 0px;
}

.nav-components .navbar .menu-wrapper .menu-outer {
  margin-bottom: 0;
  padding: 0;
  position: absolute;
  top: 50px;
  z-index: 555;
  background-color: #FFF;
  border-radius: 5px;
  width: 300px;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  padding: 25px;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
  opacity: 0;
  margin-right: -100px;
}

.nav-components .navbar .menu-wrapper .menu-outer .title {
  color: var(--primary);
  position: relative;
  margin-bottom: 15px;
}

.nav-components .navbar .menu-wrapper .menu-outer .title h5 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: block;
  padding: 0 15px;
  font-size: 1.1rem;
  background-color: #fff;
}

.nav-components .navbar .menu-wrapper .menu-outer .title::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ccc;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.nav-components .navbar .menu-wrapper .menu-outer ul li a {
  display: block;
  padding: 7px 0px;
}

.nav-components .navbar .menu-wrapper .menu-outer ul li a::before {
  content: '\f104';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: relative;
  margin: 0 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #555;
}

.nav-components .navbar .menu-wrapper .menu-outer ul li a:hover {
  color: var(--primary);
  font-weight: bold;
}

.nav-components .navbar .menu-wrapper .menu-outer ul li a:hover::before {
  color: var(--primary);
}

.nav-components .navbar .menu-wrapper .menu-outer .icons-wrapper {
  text-align: center;
}

.nav-components .navbar .menu-wrapper .menu-outer .icons-wrapper a {
  margin: 0 5px;
  color: #555;
}

.nav-components .navbar .menu-wrapper .menu-outer .icons-wrapper a:hover {
  color: var(--primary);
}

.nav-components .navbar .menu-wrapper .menu-outer.is-active {
  opacity: 1;
  margin-right: 0;
}

.nav-components .navbar .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.nav-components .navbar .navbar-nav .nav-item {
  margin: 0px 20px;
}

.nav-components .navbar .navbar-nav .nav-item .nav-link {
  font-family: "medium";
}

.nav-components .navbar .navbar-nav .nav-item .nav-link img {
  width: 20px;
  margin: 0 5px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-components .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.nav-components .search-container #search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
}

.nav-components .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .95;
}

.nav-components .search-container #search:target {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh !important;
  opacity: 1;
  width: 100vw !important;
  z-index: 2;
}

.nav-components .search-container #search:target .close-btn {
  display: block;
}

.nav-components .search-container form {
  position: relative;
}

.nav-components .search-container form .form-control {
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 99;
  border: none;
  border-bottom: 2px solid #eee;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem 1.375rem;
}

.nav-components .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.nav-components .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.nav-components .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.nav-components .search-container form .form-control::placeholder {
  color: #ccc;
}

.nav-components .search-container form .form-control:focus {
  border-bottom: 2px solid var(--primary);
}

.nav-components .search-container form .submit-btn {
  position: absolute;
  left: 0;
  top: 7px;
  background-color: transparent;
  color: var(--primary);
  border: 1px solid transparent;
}

.nav-components .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

.nav-components .sidebar {
  min-width: 380px;
  height: 100vh !important;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--secondary)));
  background-image: linear-gradient(to right, var(--secondary), var(--secondary));
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9999999;
  -webkit-transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

.nav-components .sidebar .dismiss {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ccc;
  cursor: pointer;
}

.nav-components .sidebar h5 {
  text-align: center;
  position: relative;
  top: 30px;
  color: #fff;
  font-size: 1.2rem;
}

.nav-components .sidebar .card-body {
  margin: 35px 0px 10px;
  max-height: 400px;
  overflow-y: scroll;
  display: -ms-grid;
  display: grid;
}

.nav-components .sidebar .card-body::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  position: relative;
}

.nav-components .sidebar .card-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #555;
  border-radius: 0px;
  background-color: #bbb;
}

.nav-components .sidebar .card-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #fff;
  background-color: #fff;
}

.nav-components .sidebar .card-body .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #999;
  padding: 10px 0px;
}

.nav-components .sidebar .card-body .item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-components .sidebar .card-body .item .text {
  padding: 10px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
  top: 25px;
}

.nav-components .sidebar .card-footer {
  color: #fff;
  background-color: transparent;
  border-top: none;
}

.nav-components .sidebar .card-footer .total {
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.nav-components .sidebar .card-footer .total p {
  font-size: 15px;
  margin-bottom: 5px;
}

.nav-components .sidebar .card-footer .total h6 {
  font-size: 30px;
}

.nav-components .sidebar .card-footer .link-btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  display: block;
  text-align: center;
  margin: 15px 0px;
  font-size: 15px;
}

.nav-components .sidebar .card-footer .link-btn.active {
  background-color: #fff;
  color: var(--primary);
}

.nav-components .sidebar.active {
  left: 0%;
}

.nav-components .overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0;
  right: 0;
}

.nav-components .overlay.active {
  display: block;
  opacity: 1;
}

footer {
  padding: 100px 0px 0 0;
  background-color: #333;
}

footer .content {
  margin-bottom: 45px;
}

footer .content .headline {
  color: #9c6de7;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
}

footer .content .p {
  color: #eee;
  line-height: 1.5rem;
}

footer .content .form-group {
  position: relative;
}

footer .content .form-group .form-control {
  padding-right: 120px;
  background-color: transparent;
  color: #eee;
  height: 45px;
}

footer .content .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--secondary);
}

footer .content .form-group .form-control::-webkit-input-placeholder {
  font-size: 12px;
}

footer .content .form-group .form-control:-ms-input-placeholder {
  font-size: 12px;
}

footer .content .form-group .form-control::-ms-input-placeholder {
  font-size: 12px;
}

footer .content .form-group .form-control::placeholder {
  font-size: 12px;
}

footer .content .form-group .submit-btn {
  height: 40px;
  line-height: 40px;
  width: 110px;
  position: absolute;
  top: 2.5px;
  right: 1px;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: #fff;
  border-radius: 5px;
}

footer .content .links a {
  display: block;
  margin: 10px 0px;
  font-size: 15px;
  color: #ddd;
}

footer .content .links a i {
  color: var(--secondary);
  margin: 0 15px;
}

footer .content .links a:hover {
  color: var(--secondary);
}

footer .content .links-contact a {
  margin: 20px 0px;
}

footer .content span {
  font-size: 13px;
  font-weight: bold;
  margin-left: 15px;
  color: #eee;
}

footer .content .follow-us {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

footer .content .follow-us a {
  margin: 0px 10px;
  color: #ddd;
}

footer .content .follow-us a:hover {
  color: var(--secondary);
}

footer .bt {
  border-top: 1px solid #999;
}

footer .copyright .content {
  margin-bottom: 30px;
}

/***************************** Start Edit Home Page *****************************/
header {
  background-color: #F0EFEB;
  padding: 50px 0px;
}

header .header-inner .header-text {
  padding: 0px 80px;
  position: relative;
  top: 40vh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  -webkit-transition: .5s;
  transition: .5s;
}

header .header-inner .header-text .p1 {
  font-size: 18px;
}

header .header-inner .header-text .link-btn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 25px;
  border: 1px solid var(--secondary);
  display: block;
  text-align: center;
  margin-top: 30px;
}

header .header-inner .header-text .link-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

header .header-inner .image-content {
  position: relative;
  width: 70%;
  height: 100%;
  z-index: 1;
}

header .header-inner .image-content img {
  display: block;
  width: 100%;
  margin: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-inner .swiper-slide-active .header-text {
  -webkit-animation: blur 2s forwards;
          animation: blur 2s forwards;
}

header .header-inner .swiper-slide-active .image-content {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

header .header-inner .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

header .header-inner .swiper-pagination-bullet-active {
  background: var(--primary);
}

/*sec-heading */
.sec-heading .headline {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

.sec-heading .headline::after {
  content: '';
  width: 100px;
  height: 1px;
  background-color: var(--secondary);
  display: block;
  position: absolute;
  margin: auto;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  top: 50px;
}

.sec-heading .headline::before {
  content: '';
  width: 70px;
  height: 1px;
  background-color: var(--secondary);
  display: block;
  position: absolute;
  margin: auto;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  top: 60px;
}

.special {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

.special .link-btn {
  width: 130px;
  height: 40px;
  border-radius: 25px;
  line-height: 40px;
  margin: 30px auto;
  background-color: var(--secondary);
  color: #fff;
  font-size: 15px;
  text-align: center;
  display: block;
}

.special .link-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.banners {
  padding: 50px 0px;
  overflow: hidden;
}

.banners .kids-banners {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.banners .kids-banners .kids-img {
  width: 260px;
  height: 250px;
}

.banners .kids-banners .second {
  position: relative;
  margin-right: 20px;
}

.banners .kids-banners .second .overlay-img {
  opacity: .99;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

.banners img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banners img.main-img {
  height: 520px;
}

.banners img.horizental-img {
  height: 250px;
  margin-bottom: 20px;
}

.insta-store {
  padding: 50px 0px;
}

.insta-store .swiper-container {
  width: 100%;
  height: 100%;
}

.insta-store .swiper-slide {
  width: 100%;
  height: 300px;
}

.insta-store .swiper-slide .insta-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=index.css.map */