@charset "UTF-8";

@keyframes inscreen {
  0% {
    right: -100%;
  }

  100% {
    right: 0;
  }
}

@keyframes inscreen-en {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

.inscreen {
  animation: inscreen 0.4s ease forwards;
}

html[dir="ltr"] .inscreen {
  animation: inscreen-en 0.4s ease forwards;
}

@keyframes outscreen {
  0% {
    right: 0;
  }

  100% {
    right: -100%;
  }
}

.outscreen {
  animation: outscreen 0.5s ease forwards;
}

@keyframes outscreen-en {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

html[dir="ltr"] .outscreen {
  animation: outscreen-en 0.5s ease forwards;
}

@keyframes vibe {

  0%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  50% {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
  }

  75% {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes shape {
  0% {
    left: -100%;
    opacity: 0;
  }

  100% {
    left: 100%;
  }
}

body {
  font-family: itc;
}

body::-webkit-scrollbar {
  background-color: #f7f7f7;
  width: 8px;
  height: 0;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(238, 198, 105, 0.5);
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #eec669;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(238, 198, 105, 0.75) #f7f7f7;
}

.fixall {
  outline: none;
  box-shadow: none;
  border: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.fixall:hover,
.fixall:active,
.fixall:focus {
  text-decoration: none;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  opacity: 0;
  z-index: 5;
  display: none;
}

@font-face {
  font-family: itc;
  src: url("../fonts/ITC/ITC HANDEL GOTHIC ARABIC REGULAR.OTF");
}

@font-face {
  font-family: itc-md;
  src: url("../fonts/ITC/ITC HANDEL GOTHIC ARABIC MEDIUM.OTF");
}

@font-face {
  font-family: itc-li;
  src: url("../fonts/ITC/ITC HANDEL GOTHIC ARABIC LIGHT.OTF");
}

@font-face {
  font-family: itc-bd;
  src: url("../fonts/ITC/ITC HANDEL GOTHIC ARABIC BOLD.OTF");
}

@font-face {
  font-family: itc-hv;
  src: url("../fonts/ITC/ITC HANDEL GOTHIC ARABIC HEAVY.OTF");
}

.search {
  left: 67px;
  bottom: -6px;
  position: absolute;
  transform: translateY(100%);
  display: none;
  z-index: 9;
}

@media (max-width: 767px) {
  .search {
    left: 0;
    width: 100%;
  }
}

.search .search-container {
  position: relative;
  width: 300px;
  height: 50px;
  border-radius: 60px;
}

@media (max-width: 767px) {
  .search .search-container {
    width: 100%;
  }
}

.search .search-input {
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(1, 2, 2, 0.1);
  width: 100%;
  height: 100%;
  border-radius: 60px;
  padding: 0 32px;
  font-size: 14px;
  color: #a1a1a1;
  text-align: right;
}

.search .search-input::placeholder {
  font-size: 14px;
  color: #a1a1a1;
  text-align: right;
}

@media (max-width: 767px) {
  .search .search-input {
    width: 100%;
  }
}

.search .searchbtn {
  top: 0;
  left: 20px;
  height: 100%;
  display: flex;
  font-size: 20px;
  color: #440903;
  position: absolute;
  align-items: center;
  justify-content: flex-end;
  background-color: transparent;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search .searchbtn:hover {
  color: #e3a30d;
}

.newsletter-sec {
  background-image: url("../images/news-pattern.png");
  background-color: #f7f7f7;
  background-repeat: no-repeat;
  background-position-x: center;
  padding-top: 65px;
  padding-bottom: 72px;
  margin-top: 81px;
}

@media (max-width: 991px) {
  .newsletter-sec {
    margin-top: 58px;
  }
}

.newsletter-sec .news-header {
  font-size: 24px;
  font-family: itc-bd;
  color: #440903;
  text-align: center;
  margin-bottom: 16px;
}

.newsletter-sec .news-pargraph {
  font-size: 18px;
  color: #898988;
  text-align: center;
}

.newsletter-sec .newsletter-cont {
  margin: auto;
  position: relative;
  height: 63px;
  width: 650px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .newsletter-sec .newsletter-cont {
    width: 100%;
  }
}

.newsletter-sec .newsletter-input {
  height: 100%;
  width: 100%;
  border-radius: 65px;
  border: 1px solid #ebebeb;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0 42px;
  font-family: itc-md;
  color: #cccccc;
  font-size: 16px;
  text-align: right;
}

.newsletter-sec .newsletter-input::placeholder {
  color: #cccccc;
  font-size: 16px;
  text-align: right;
}

.newsletter-sec .newsletter-input:focus {
  border-color: #e3a30d;
}

.newsletter-sec .newsletter-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  background-image: -moz-radial-gradient(circle, #e6a90e 0%, #d18505 100%);
  background-image: -webkit-radial-gradient(circle, #e6a90e 0%, #d18505 100%);
  background-image: -ms-radial-gradient(circle, #e6a90e 0%, #d18505 100%);
  width: 141px;
  height: 42px;
  border-radius: 45px;
  font-size: 16px;
  color: #fff;
  font-family: itc-md;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0) translateY(-50%);
  transform: perspective(1px) translateZ(0) translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .newsletter-sec .newsletter-btn {
    width: 42px;
  }

  .newsletter-sec .newsletter-btn span {
    display: none;
  }
}

.newsletter-sec .newsletter-btn:before {
  content: "";
  border-radius: 45px;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #440903;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.newsletter-sec .newsletter-btn::after {
  content: "";
  font-family: "Linearicons-Free";
  font-size: 20px;
  margin: 0 12px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.newsletter-sec .newsletter-btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

html[dir="ltr"] .search {
  left: unset;
  right: 67px;
}

@media (max-width: 767px) {
  html[dir="ltr"] .search {
    left: unset;
    left: 0;
    width: 100%;
  }
}

html[dir="ltr"] .search .search-input {
  text-align: left;
}

html[dir="ltr"] .search .search-input::placeholder {
  text-align: left;
}

html[dir="ltr"] .search .searchbtn {
  left: unset;
  right: 20px;
}

html[dir="ltr"] .newsletter-sec .newsletter-input {
  text-align: left;
}

html[dir="ltr"] .newsletter-sec .newsletter-input::placeholder {
  text-align: left;
}

html[dir="ltr"] .newsletter-sec .newsletter-btn {
  right: 15px;
  left: unset;
}

html[dir="ltr"] .newsletter-sec .newsletter-btn::after {
  content: "";
}

@media (max-width: 991px) {
  .header-sec .xs-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 999;
  }
}

.header-sec .nav-links {
  width: 282px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 8;
}

@media (max-width: 991px) {
  .header-sec .nav-links {
    flex-direction: column;
    z-index: 999 !important;
    position: absolute;
    width: 280px;
    height: 100%;
    padding: 0 25px;
    background-color: #fff;
    padding-top: 80px;
    align-items: flex-start;
  }
}

.header-sec .nav-links .lnr {
  display: none;
}

@media (max-width: 991px) {
  .header-sec .nav-links .lnr {
    display: flex;
    position: absolute;
    left: 25px;
    top: 25px;
    color: #bbbbbb;
    font-size: 20px;
  }
}

.header-sec .lang-xs {
  display: none;
}

@media (max-width: 991px) {
  .header-sec .lang-xs {
    display: block;
    margin: 7px 0;
  }
}

.header-sec .link-li {
  margin-left: 22px;
  position: relative;
}

.header-sec .link-li:last-of-type {
  margin-left: 0;
}

@media (max-width: 991px) {
  .header-sec .link-li {
    margin: 7px 0;
  }
}

.header-sec .products-li {
  cursor: pointer;
}

.header-sec .products-li:hover .products-ul {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991px) {
  .header-sec .products-li {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .header-sec .products-li .navlink {
    width: 100%;
    display: flex;
    align-items: center;
  }
}

.header-sec .nav-link {
  font-size: 16px;
  color: #440903;
  font-family: itc-md;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-sec .nav-link:hover {
  color: #e3a30d;
}

.products-ul {
  width: 169px;
  right: -22px;
  border-radius: 8px;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(1, 2, 2, 0.1);
  bottom: -12px;
  transform: translateY(100%);
  padding: 12px 11px;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

@media (max-width: 991px) {
  .products-ul {
    position: static;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}

.products-ul::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-width: 10px;
  border-color: transparent transparent #fff;
  border-style: solid;
  top: -13px;
  position: absolute;
  right: 21px;
}

@media (max-width: 991px) {
  .products-ul::before {
    display: none;
  }
}

.products-ul .link-li {
  border-bottom: 1px solid #f2f2f2;
  margin: 0;
  padding: 0 10px 7px;
  margin-top: 3px;
}

.products-ul .link-li:last-child {
  border: none;
}

@media (max-width: 991px) {
  .products-ul .link-li {
    border: none;
    padding: 0;
    margin: 7px 0;
  }

  .products-ul .link-li:last-child {
    margin-bottom: 0;
  }
}

.products-ul .nav-link {
  font-size: 15px;
  font-family: itc;
}

@media (max-width: 991px) {
  .products-ul .nav-link {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  html[dir="ltr"] .header-sec .xs-nav {
    left: 0;
    right: unset;
  }
}

html[dir="ltr"] .header-sec .nav-links {
  width: 365px;
}

@media (max-width: 991px) {
  html[dir="ltr"] .header-sec .nav-links {
    width: 280px;
  }
}

@media (max-width: 991px) {
  html[dir="ltr"] .header-sec .nav-links .lnr {
    left: unset;
    right: 25px;
  }
}

html[dir="ltr"] .header-sec .link-li {
  margin-left: 0;
  margin-right: 22px;
}

html[dir="ltr"] .header-sec .link-li:last-of-type {
  margin-left: 0;
  margin-right: 0;
}

html[dir="ltr"] .products-ul {
  right: unset;
  left: -22px;
  width: 180px;
}

html[dir="ltr"] .products-ul .link-li {
  margin: 0;
  margin-top: 3px;
}

html[dir="ltr"] .products-ul::before {
  right: unset;
  left: 21px;
}

.fix-z-index {
  z-index: 0 !important;
}

.main-slider-sec {
  margin-top: 24px;
}

.main-slider-sec .owl-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .main-slider-sec .owl-dots {
    bottom: 10px;
  }
}

.main-slider-sec .owl-dots .owl-dot {
  outline: none;
  box-shadow: none;
  border: none;
}

.main-slider-sec .owl-dots .owl-dot span {
  display: block;
  margin: 0 3.5px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.5);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-slider-sec .owl-dots .owl-dot span:hover {
  background: white;
}

.main-slider-sec .owl-dots .owl-dot.active span {
  background: white;
}

.main-slider-sec .owl-stage-outer {
  border-radius: 20px;
}

@media (max-width: 767px) {
  .main-slider-sec .owl-stage-outer {
    border-radius: 5px;
  }
}

.main-slider-sec .item {
  border-radius: 20px;
  max-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-slider-sec .item a {
  border-radius: 20px;
}

@media (max-width: 767px) {
  .main-slider-sec .item {
    border-radius: 5px;
    max-height: none;
    width: 100%;
  }

  .main-slider-sec .item a {
    width: 100%;
  }
}

.main-slider-sec .item img {
  border-radius: 20px;
  height: 100%;
}

@media (max-width: 767px) {
  .main-slider-sec .item img {
    border-radius: 5px;
    height: auto;
    width: 100%;
  }
}

.cats-sec .owl-stage-outer {
  padding-top: 61px;
  padding-bottom: 1px;
}

.cats-sec .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.cats-sec .owl-dots .owl-dot {
  outline: none;
  box-shadow: none;
  border: none;
}

.cats-sec .owl-dots .owl-dot span {
  display: block;
  margin: 0 3.5px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.5);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cats-sec .owl-dots .owl-dot span:hover {
  background: #e3a30d;
}

.cats-sec .owl-dots .owl-dot.active span {
  background: #e3a30d;
}

.cats-sec .owl-nav {
  margin: 0;
  position: absolute;
  width: 100%;
  top: 50%;
}

.cats-sec .owl-nav.owl-nav.disabled {
  display: block !important;
}

@media (max-width: 991px) {
  .cats-sec .owl-nav.owl-nav.disabled {
    display: none !important;
  }
}

.cats-sec .owl-nav .owl-prev {
  position: absolute;
  right: -27px;
}

.cats-sec .owl-nav .owl-next {
  position: absolute;
  left: -27px;
}

.cats-sec .owl-nav [class*="owl-"] {
  margin: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.cats-sec .owl-nav [class*="owl-"] span {
  color: #440903;
  font-size: 16px;
}

.cats-sec .owl-nav [class*="owl-"]:focus {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.cats-sec .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.cats-sec .owl-nav [class*="owl-"]:hover span {
  color: #e3a30d;
}

.cats-sec .owl-nav [class*="owl-"]:active {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cat .item-img {
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(1, 2, 2, 0.1);
  width: 175px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  overflow: hidden;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 22px;
}

.cat .item-img img {
  width: auto;
  height: auto;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.cat .cat-title {
  font-size: 18px;
  color: #440903;
  font-family: itc-bd;
  text-align: center;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item img {
  /* margin: auto; */
}

.cat:hover .item-img {
  border-color: #e3a30d;
  box-shadow: none;
}

.cat:hover .item-img img {
  transform: scale(1.05);
}

.cat:hover .cat-title {
  color: #e3a30d;
}

.products-sec .products-header {
  font-size: 24px;
  font-family: itc-bd;
  color: #440903;
  text-align: center;
  margin-bottom: 16px;
}

.products-sec .products-pargraph {
  font-size: 18px;
  color: #898988;
  text-align: center;
}

.speciales {
  margin-top: 78px;
  padding-top: 74px;
  background-color: #f7f7f7;
  padding-bottom: 81px;
}

@media (max-width: 991px) {
  .speciales {
    margin-top: 58px;
    padding-top: 54px;
    padding-bottom: 58px;
  }
}

.new-arrival {
  margin-top: 30px;
}

.Product-slider .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.Product-slider .owl-dots .owl-dot {
  outline: none;
  box-shadow: none;
  border: none;
}

.Product-slider .owl-dots .owl-dot span {
  display: block;
  margin: 0 3.5px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.5);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.Product-slider .owl-dots .owl-dot span:hover {
  background: #e3a30d;
}

.Product-slider .owl-dots .owl-dot.active span {
  background: #e3a30d;
}

.Product-slider .owl-nav {
  margin: 0;
  position: absolute;
  width: 100%;
  top: 160px;
}

.Product-slider .owl-nav.owl-nav.disabled {
  display: block !important;
}

@media (max-width: 991px) {
  .Product-slider .owl-nav.owl-nav.disabled {
    display: none !important;
  }
}

.Product-slider .owl-nav .owl-prev {
  position: absolute;
  right: -27px;
}

.Product-slider .owl-nav .owl-next {
  position: absolute;
  left: -27px;
}

.Product-slider .owl-nav [class*="owl-"] {
  margin: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.Product-slider .owl-nav [class*="owl-"] span {
  color: #440903;
  font-size: 16px;
}

.Product-slider .owl-nav [class*="owl-"]:focus {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.Product-slider .owl-nav [class*="owl-"]:hover {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.Product-slider .owl-nav [class*="owl-"]:hover span {
  color: #e3a30d;
}

.Product-slider .owl-nav [class*="owl-"]:active {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border: none;
}

.product {
  width: 262px;
  margin: auto;
  margin-top: 29px;
}

.product .item-img {
  border-radius: 15px;
  background-color: #fff;
  height: 262px;
  overflow: hidden;
  position: relative;
}

.product .item-img img {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product .item-img:hover .item-img img {
  transform: scale(1.05);
}

.product .item-img:hover .over-btns {
  visibility: visible;
  opacity: 1;
}

.product .item-img:hover .mo-addto-icon {
  -webkit-transform: perspective(1px) translateZ(0) translatey(0);
  transform: perspective(1px) translateZ(0) translatey(0);
  opacity: 1;
}

.product .over-btns {
  border-radius: 15px;
  background-color: #fff;
  background-color: rgba(68, 9, 3, 0.102);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 9;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product .mo-addto-icon {
  background-color: #440903;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  margin: 0 2.5px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0) translatey(160px);
  transform: perspective(1px) translateZ(0) translatey(160px);
  position: relative;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.product .mo-addto-icon:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -moz-radial-gradient(50% 50%,
      circle closest-side,
      #e6a90e 0%,
      #d18505 100%);
  background-image: -webkit-radial-gradient(50% 50%,
      circle closest-side,
      #e6a90e 0%,
      #d18505 100%);
  background-image: -ms-radial-gradient(50% 50%,
      circle closest-side,
      #e6a90e 0%,
      #d18505 100%);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product .mo-addto-icon:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.product .mo-addto-icon span {
  font-size: 20px;
}

.product .mo-addto-icon.mo-addto-cart {
  width: 141px;
  border-radius: 45px;
  cursor: pointer;
}

.product .mo-addto-icon.mo-addto-cart::before {
  border-radius: 45px;
  background-image: -moz-radial-gradient(circle, #e6a90e 0%, #d18505 100%);
  background-image: -webkit-radial-gradient(circle, #e6a90e 0%, #d18505 100%);
  background-image: -ms-radial-gradient(circle, #e6a90e 0%, #d18505 100%);
}

.product .mo-addto-icon.mo-addto-cart span {
  margin-left: 7px;
}

.product .info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.product .product-name {
  font-size: 17px;
  color: #440903;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 6px;
}

.product .prices {
  font-size: 17px;
  display: flex;
}

.product .price {
  color: #e3a30d;
  font-family: itc-bd;
  margin: 0 4.5px;
}

.product .old-price {
  color: #898988;
  text-decoration: line-through;
  margin: 0 4.5px;
}

.product:hover .item-img img {
  transform: scale(1.05);
}

.product:hover .product-name {
  color: #e3a30d;
}

.product .mo-addto-icon.mo-addto-cart span {
  margin-left: 0;
  margin-right: 7px;
}

.moaccordion {
  cursor: pointer;
  width: 100%;
  transition: 0.4s;
}

.moaccordion:after {
  content: "";
  font-family: "Linearicons-Free";
  font-weight: 900;
  font-size: 13px;
  float: left;
}

.moaccordion.active:after {
  content: "";
}

html[dir="ltr"] .moaccordion:after {
  margin-right: 5px;
  margin-left: 0;
  float: right;
}

.mopanel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  margin-bottom: 0;
}

.header-sec {
  padding-top: 10px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-image: url("../images/header-pattern.png");
}

.header-sec .header {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-sec .header {
    flex-direction: column;
  }
}

.header-sec .lang {
  left: 0;
  top: 8px;
  font-size: 13px;
  color: #c2c2c2;
  position: absolute;
  font-family: itc-md;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

@media (max-width: 991px) {
  .header-sec .lang {
    display: none;
  }
}

.header-sec .lang:hover {
  color: #e3a30d;
}

.header-sec .mo-user-nav {
  width: 282px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  z-index: 9;
}

@media (max-width: 991px) {
  .header-sec .mo-user-nav {
    width: auto;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .header-sec .mo-user-nav {
    width: 100%;
    justify-content: center;
  }
}

.header-sec .mo-user-icon {
  display: flex;
  font-size: 20px;
  color: #440903;
  margin-right: 28px;
  align-items: center;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header-sec .mo-user-icon:first-of-type {
  margin-right: 0;
}

.header-sec .mo-user-icon:hover {
  color: #e3a30d;
}

.header-sec .mo-menu-icon {
  display: none;
}

@media (max-width: 991px) {
  .header-sec .mo-menu-icon {
    display: flex;
  }
}

.header-sec .mo-log-icon .log {
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 991px) {
  .header-sec .mo-log-icon .log {
    display: none;
  }
}

.header-sec .mo-search-icon {
  position: relative;
  margin-right: 28px !important;
  z-index: 9;
  cursor: pointer;
}

.header-sec .mo-search-icon::before {
  content: "";
  font-family: "Linearicons-Free";
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-sec .search-open::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-width: 10px;
  border-color: transparent transparent #fff;
  border-style: solid;
  bottom: -10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-sec .search-open::before {
  content: "";
  color: #e3a30d;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html[dir="ltr"] .header-sec .lang {
  left: unset;
  right: 0;
}

html[dir="ltr"] .header-sec .mo-user-nav {
  width: 365px;
}

@media (max-width: 991px) {
  html[dir="ltr"] .header-sec .mo-user-nav {
    width: 100%;
  }
}

html[dir="ltr"] .header-sec .mo-user-icon {
  margin-right: 0;
  margin-left: 28px;
}

html[dir="ltr"] .header-sec .mo-user-icon:first-of-type {
  margin-right: 0;
  margin-left: 0;
}

html[dir="ltr"] .header-sec .mo-log-icon .log {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="ltr"] .header-sec .mo-search-icon {
  margin-right: 0 !important;
  margin-left: 28px !important;
}

.banner-sec {
  margin-top: 45px;
}

.banner-sec .banner {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.banner-sec .banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(transparent),
      to(rgba(255, 255, 255, 0.5)));
  background-image: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.5));
  z-index: 999;
  cursor: pointer;
}

.banner-sec .banner:hover:after {
  -webkit-animation: shape 0.5s linear;
  animation: shape 0.5s linear;
}

.footer-sec {
  padding-top: 50px;
}

@media (max-width: 991px) {
  .footer-sec {
    padding-top: 25px;
  }
}

@media (max-width: 991px) {
  .footer-sec .footer-logo img {
    margin: auto;
  }
}

.footer-sec .foot-header {
  font-size: 17px;
  color: #440903;
  font-family: itc-bd;
  margin-top: 34px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .footer-sec .social-header {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .footer-sec .nav-foot-header {
    margin: 15px 0;
  }
}

.footer-sec .nav-foot-li {
  margin-bottom: 9px;
}

.footer-sec .nav-foot-link {
  font-size: 15px;
  color: #440903;
  font-family: itc-li;
  display: flex;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-sec .nav-foot-link:hover {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

.footer-sec .social {
  display: flex;
  align-items: center;
}



@media (max-width: 991px) {
  .footer-sec .social {
    justify-content: center;
  }
}

.footer-sec .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #62170f;
  width: 39px;
  height: 39px;
  font-size: 18px;
  color: #fff;
  margin-left: 8px;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

@media (max-width: 767px) {
  .footer-sec .social-link {
    font-size: 20px;
  }
}

.footer-sec .social-link:last-of-type {
  margin-left: 0;
  display: none
}

.footer-sec .social-link:before {
  content: "";
  border-radius: 45px;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -moz-radial-gradient(50% 50%,
      circle closest-side,
      #e6a90e 0%,
      #d18505 100%);
  background-image: -webkit-radial-gradient(50% 50%,
      circle closest-side,
      #e6a90e 0%,
      #d18505 100%);
  background-image: -ms-radial-gradient(50% 50%,
      circle closest-side,
      #e6a90e 0%,
      #d18505 100%);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.footer-sec .social-link:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.copyrights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 61px;
  padding-bottom: 22px;
}

@media (max-width: 991px) {
  .copyrights {
    flex-direction: column;
    padding-bottom: 15px;
    margin-top: 35px;
  }
}

.copyrights .copytight {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #440903;
}

@media (max-width: 991px) {
  .copyrights .copytight {
    flex-direction: column;
    order: 2;
    margin-top: 15px;
  }
}

.copyrights .tasawk {
  display: flex;
  align-items: center;
  margin: 0 3px;
}

.copyrights .tasawk img {
  margin: 0 6px;
}

html[dir="ltr"] .footer-sec .nav-foot-link:hover {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

html[dir="ltr"] .footer-sec .social-link {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="ltr"] .footer-sec .social-link:last-of-type {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 991px) {
  #ar-1 {
    display: none;
  }

  html[dir="ltr"] #en-1 {
    display: none;
  }

  html[dir="ltr"] #ar-1 {
    display: block;
  }

  .langg {
    font-size: 16px;
    color: #440903;
    font-family: itc-md;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media (min-width: 991px) {
  #ar-1 {
    display: none;
  }

  #en-1 {
    display: none;
  }
}

.form-language {
  position: absolute;
  top: 0;
  left: 0;
}

html[dir="ltr"] .form-language {
  right: 0;
}

.whats {
  position: fixed;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50%;
  bottom: 50px;
  right: 25px;
  background-color: #38b828;
  color: #fff;
  z-index: 99999;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

html[dir="ltr"] .whats {
  left: 25px;
}

/* .social_channel.fab.fa-whatsapp {
  display: none;
} */

.whats:hover {
  transition: all 0.3s ease;
  background-color: #41dc2e;
  color: #fff;
}