/* Variables
======================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600;800&family=Open+Sans:wght@400&family=Tajawal:wght@400;700&display=swap');
@font-face {
    font-family: 'Candara';
    src: url('../fonts/Candara.woff2') format('woff2'),
        url('../fonts/Candara.woff') format('woff'),
        url('../fonts/Candara.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Candara';
    src: url('../fonts/Candara-Bold.woff2') format('woff2'),
        url('../fonts/Candara-Bold.woff') format('woff'),
        url('../fonts/Candara-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #5b3c34 !important;
  color: #fff !important;
}

body {
  overflow: hidden;
  width: 100%;
  background-color: #f8f8f8;
  text-align: start;
  position: relative;
  font-family: 'Open Sans';
  font-weight: normal;
  letter-spacing: 0;
  padding-top: 85px;
}
@media (max-width: 575px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}
/* Loading
=====================*/
.loading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 9999;
  background-color: #fff;
}
.loading .load_cont {
  position: relative;
}
.loading .load_cont img {
  animation-duration: 5s;
  animation-direction: reverse;
  width: 190px;
}
.loading .load_cont img:last-child {
  width: 127px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation-direction: normal;
}

/* Mouse Cursor
=========================*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 991px) {
  .mouse-cursor {
    display: none !important;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #f9e050;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-color: #f9e050;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border: 1px solid #f9e050;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 80ms ease-out;
  -moz-transition: all 80ms ease-out;
  -ms-transition: all 80ms ease-out;
  -o-transition: all 80ms ease-out;
  transition: all 80ms ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* Units
==============================*/
.mt-25 {
  margin-top: 25px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #f1f1f1;
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-color: #f9e050;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: #f9e050;
  color: #191919;
  border: 0;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
@media (max-width: 575px) {
  .btn {
    line-height: 35px;
    padding: 0 15px;
    font-size: 13px;
  }
}
.btn span {
  position: relative;
  z-index: 99;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 100%);
  background-color: #5b3c34;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  clip-path: circle(100% at 50% 50%);
}
.btn.more {
  margin: 15px auto 0;
}
.btn.white {
  border: 1px solid #fff;
  background-color: transparent;
  color: #f9e050;
}
.btn.white:hover {
  background-color: #f9e050;
  color: #fff;
  border: none;
}

.btn_icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  line-height: 35px;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  padding: 0;
  background-color: #5b3c34;
  color: #fff;
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.btn_icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: circle(0% at 50% 100%);
  background-color: #f9e050;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.btn_icon i, .btn_icon::before {
  z-index: 999;
  position: relative;
}
.btn_icon:hover {
  color: #191919;
}
.btn_icon:hover::after {
  clip-path: circle(100% at 50% 50%);
}
.btn_icon:hover i, .btn_icon:hover::before {
  color: #191919;
}

.list {
  margin: 15px 0;
}
.list li {
  display: block;
  line-height: 24px;
  margin: 15px auto;
  padding-inline-start: 40px;
  font-size: 16px;
  color: #191919;
  position: relative;
}
.list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  margin: auto;
  background-color: #f9e050;
  color: #5b3c34;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 10px;
  line-height: 25px;
  text-align: center;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Page Setting
=====================*/
section {
  z-index: 9997;
  position: relative;
  padding: 70px 0;
  background-color: #fff;
}
section.colored {
  background-color: #fafafa;
}
section.blacked {
  background-color: #191919;
  padding: 25px 0;
}
section.blacked .owl-carousel button.owl-dot {
  background-color: #fff;
}
@media (max-width: 991px) {
  section {
    padding: 35px 0;
  }
}
@media (max-width: 575px) {
  section {
    padding: 25px 0;
  }
}

.section_img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  background: url(../images/main_img.png) no-repeat fixed center;
}
.section_img::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.section_img .hint {
  line-height: 40px;
  margin: 0 auto 25px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  max-width: 820px;
  font-weight: bold;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.m-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Section Title
=======================*/
.section_title {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
}
.section_title h3 {
  position: relative;
  margin: 0 auto;
  text-transform: uppercase;
  color: #191919;
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 35px;
}
[dir=rtl] .section_title h3 {
  letter-spacing: 0;
}
@media (max-width: 575px) {
  .section_title {
    margin-bottom: 15px;
  }
  .section_title h3 {
    line-height: 25px;
    font-size: 16px;
    letter-spacing: 0;
  }
}

p {
}

/* Page Head
=======================*/
.page_head {
  position: relative;
  font-weight: 600;
  padding: 70px 0;
  background: url(../images/main_img.png) no-repeat fixed center;
}
.page_head::before{
  content:"";
  background-color: #0008;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page_head .container{
  position: relative;
  z-index: 99;
}
.page_head h3 {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.page_head ul {
  text-align: center;
}
.page_head ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.page_head ul li [dir=rtl] {
  letter-spacing: 0;
}
.page_head ul li a {
  font-size: 16px;
  display: block;
  color: #fff;
  padding: 0 15px;
  margin-inline-end: 5px;
  position: relative;
}
.page_head ul li a::after {
  content: " / ";
  position: absolute;
  top: -3px;
  inset-inline-end: -1px;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 575px) {
  .page_head {
    padding: 25px 0;
  }
  .page_head h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page_head ul li,
.page_head ul li a {
    font-size: 13px;
  }
}

/*  Header
=============================*/
header {
  position: fixed;
  top: 0;
  right: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 9998;
  -webkit-transition: 0.3s linear background-color;
  -moz-transition: 0.3s linear background-color;
  -ms-transition: 0.3s linear background-color;
  -o-transition: 0.3s linear background-color;
  transition: 0.3s linear background-color;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  -moz-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  -ms-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  -o-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
}
header .container {
  position: relative;
  min-height: 85px;
}
header .navbar-brand {
  margin: 20px 0;
  padding: 0;
  height: 45px;
  width: auto;
  position: relative;
  z-index: 999;
}
header .navbar-brand img {
  width: auto;
  height: 100%;
  display: block;
}
header .btns {
  z-index: 9999;
}
header .btns .lang {
  font-weight: 600;
  font-size: 16px;
}
header .btns .lang i {
  font-style: normal;
}
header .btns .menu-btn {
  display: none;
}

.navbar {
  padding: 0px;
  margin: 0px;
  margin-top: -85px;
}
.navbar .container {
  min-height: auto;
}
.navbar ul.navbar-nav {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 25px 0;
  padding-inline-end: 185px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.navbar ul.navbar-nav li {
  display: inline-block;
}
.navbar ul.navbar-nav li a {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  margin-inline-start: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #191919;
  text-align: center;
  line-height: 35px;
  letter-spacing: 1px;
  overflow: hidden;
  vertical-align: middle;
}
.navbar ul.navbar-nav li a.extra {
  display: none !important;
}
@media (max-width: 1199px) {
  .navbar ul.navbar-nav li a {
    letter-spacing: 0;
  }
}
[dir=rtl] .navbar ul.navbar-nav li a {
  font-size: 14px;
  letter-spacing: 0;
}
.navbar ul.navbar-nav li a:hover {
  color: #5b3c34;
}
.navbar ul.navbar-nav li a.active {
  padding: 0 15px;
  background-color: #5b3c34;
  color: #fff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.navbar ul.navbar-nav li a.active:hover {
  background-color: #5b3c34;
  color: #fff;
}
@media (min-width: 992px) {
 
  .navbar ul.navbar-nav li.dropdown .dropdown-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: 0;
    top: 59px;
    width: 100%;
    min-width: 250px;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    border: 1px solid #0001;
    background-color: #fff;
    -webkit-border-radius: 0 0 25px 25px;
    -moz-border-radius: 0 0 25px 25px;
    border-radius: 0 0 25px 25px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.5s all linear;
    -moz-transition: 0.5s all linear;
    -ms-transition: 0.5s all linear;
    -o-transition: 0.5s all linear;
    transition: 0.5s all linear;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-inline-start: 0;
    border-bottom: 1px solid #0001;
    line-height: 45px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
    padding: 0 15px 15px;
    font-size: 13px;
    text-align: center;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a:last-child {
    border-inline-end: 0;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a img {
    width: 100px;
    margin-bottom: 10px;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a span {
    display: block;
    white-space: normal;
    line-height: 15px;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a:hover {
    background-color: #fffefc;
    color: #5b3c34;
  }
  .navbar ul.navbar-nav li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  header .btns .menu-btn {
    display: inline-block;
    margin: 0;
  }

  .navbar {
    margin: 0;
    background-color: #191919;
    height: 100%;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
  }
  .navbar ul.navbar-nav {
    display: block;
    text-align: start;
    padding: 10px 25px;
  }
  .navbar ul.navbar-nav li {
    display: block;
  }
  .navbar ul.navbar-nav li a {
    text-align: start;
    margin: 0;
    color: #fff;
    display: inline-block;
  }
  .navbar ul.navbar-nav li a i {
    display: none;
  }
  .navbar ul.navbar-nav li a:hover {
    color: #f9e050;
  }
  .navbar ul.navbar-nav li a.extra {
    position: absolute;
    inset-inline-end: 15px;
    display: inline-block !important;
    margin-inline-start: 15px !important;
  }
  .navbar ul.navbar-nav li a.extra i {
    height: 35px;
    display: block;
    line-height: 35px;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu {
    position: static;
    clear: both;
    box-shadow: none;
    display: none;
    background-color: transparent;
    border: 0;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu a {
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 300;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu a img {
    display: none;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu a:hover {
    color: #f9e050;
    background-color: transparent;
  }
  .navbar ul.navbar-nav .dropdown.show .dropdown-menu {
    display: block;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.06);
  }
}
@media (max-width: 575px) {
  header .container {
    min-height: 70px;
  }
  header .navbar-brand {
    height: 35px;
    margin: 25px 0;
  }
}
.main_section {
  background-color: #fff;
  text-align: start;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main_section .main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.main_section .caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(25, 25, 25, 0.6);
  padding: 140px 30px;
  text-align: center;
}
.main_section .caption img {
  width: 100%;
  max-width: 570px;
  margin: 25px auto;
}
.main_section .caption .btn {
  margin-bottom: 25px;
}
.main_section .aside_img {
  padding: 50px 30px;
}
@media (max-width: 767px) {
  .main_section .caption {
    padding: 60px 15px;
  }
}
@media (max-width: 575px) {
  .main_section .caption {
    padding: 30px 15px;
  }
}

.carousel-indicators {
  margin: 0;
  bottom: 20px;
}

.carousel-indicators li {
  width: 14px;
  height: 14px;
  background-color: #f9e050;
  opacity: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #fff;
}

/* About
=====================*/
.pattern::before{
     content: "";
     background: url(../images/pattern.png) repeat;
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     opacity: 5%;
}
.pattern .container{
  position: relative;
  z-index: 9998;
}
.about .about_cont h1 img {
  max-width: 360px;
  margin: 0 0 30px;
  width: 100%;
}
.about .about_cont h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 30px 0 5px 0;
  font-weight: bold;
}
.about .about_cont h4 {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  /* font-weight: bold; */
}
.about .about_cont p {
  font-size: 16px;
  margin: 0 0 35px;
  line-height: 25px;
  text-align: justify;
}
@media (max-width: 1199px) {
  .about .about_cont {
    margin-bottom: 25px;
  }
  .about .about_cont h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .about .about_cont p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .about .about_cont h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .about .about_cont .btn {
    line-height: 35px;
    padding: 0 15px;
    font-size: 13px;
  }
}

.about_img img {
  width: 100%;
  overflow: hidden;
}

/* Gallery
=========================*/
.media_slider .owl-dots {
  margin: 25px auto 0;
}

.gallery .gallery_item {
  margin-bottom: 80px;
}

.gallery_item {
  display: block;
  position: relative;
  margin: 10px auto;
}
.gallery_item img {
  z-index: 999;
  position: relative;
}
.gallery_item span {
  display: block;
  position: absolute;
  bottom: -50px;
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: #5b3c34;
  font-weight: bold;
}
.gallery_item::before, .gallery_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9e050;
  -webkit-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.gallery_item::after {
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  transform: rotate(5deg);
}

/* Category
=====================*/
.categ_id {
  position: absolute;
  top: -100px;
}

.side_nav {
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: sticky;
  top: 100px;
  overflow: hidden;
  margin-bottom: 25px;
}
.side_nav h3 {
  background: #f9e050;
  padding: 15px;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
}
.side_nav li {
  display: block;
  border-bottom: 1px solid #e7e7e7;
}
.side_nav li:last-child {
  border-bottom: 0;
}
.side_nav a {
  display: block;
  color: #5b3c34;
  line-height: 20px;
  padding: 15px;
  font-size: 14px;
}

.tab_title {
  background-color: #fff;
  border-inline-start: 5px solid #5b3c34;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: start;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.tab_title h3 {
  font-size: 16px;
}

.category_item {
  position: relative;
  text-align: center;
  display: block;
  padding: 0 0 20px;
  margin: 0 auto 25px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.category_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-color: #fffefc;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  -webkit-transition: 0.4s linear height;
  -moz-transition: 0.4s linear height;
  -ms-transition: 0.4s linear height;
  -o-transition: 0.4s linear height;
  transition: 0.4s linear height;
}
.category_item img {
  position: relative;
  margin-bottom: 15px;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.category_item h3 {
  position: relative;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #5b3c34;
}
.category_item:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.category_item:hover::before {
  height: 100%;
}
@media (max-width: 991px) {
  .category_item {
    padding: 1px 5px 15px;
  }
  .category_item h3 {
    font-size: 16px;
  }
}

.product_item {
  margin-bottom: 25px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background-color: #fff;
  display: block;
}
.product_item .cont {
  border-top: 5px solid #5b3c34;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.product_item img {
  width: 100%;
  padding: 0;
  object-fit: contain;
  position: relative;
  /* height: 220px; */
}
.product_item h3 {
  position: relative;
  margin: 10px 0;
  font-size: 18px;
  color: #5b3c34;
}
.product_item p {
  position: relative;
    margin: 10px 0;
    font-size: 18px;
    color: #5b3c34;
}
.product_item i {
  min-width: 35px;
}

.modal {
  z-index: 9999;
}
.modal .modal-dialog {
  position: fixed;
  margin: auto;
  height: 100%;
  left: -320px;
  -webkit-transform: translate3d(0%, 0, 0) !important;
  -moz-transform: translate3d(0%, 0, 0) !important;
  -ms-transform: translate3d(0%, 0, 0) !important;
  -o-transform: translate3d(0%, 0, 0) !important;
  transform: translate3d(0%, 0, 0) !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.modal .close {
  position: absolute;
  top: 15px;
  inset-inline-end: 15px;
  opacity: 1;
  background-color: #f9e050;
  text-shadow: none;
  z-index: 9999;
}
.modal .modal-content {
  height: 100%;
  overflow-y: auto;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.modal .modal-body {
  padding: 25px;
}
@media (max-width: 575px) {
  .modal .modal-body {
    padding: 15px 10px 0;
  }
}
.modal .modal-body .product_item {
  margin-bottom: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.modal .modal-body .product_item img {
  margin: 15px auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.modal .modal-body .product_item h3 {
  margin: 0;
  font-size: 26px;
}
.modal .modal-body .product_item p {
  font-size: 18px;
  margin-bottom: 10px;
}
.modal .modal-body .product_item p strong {
    font-size: 16px;
    font-weight: bold;
}
.modal .modal-body .product_item p em {
    font-size: 14px;
    margin-left: 10px;
    background-color: #f9e050;
    padding: 5px 20px;
}
.modal.fade.show .modal-dialog {
  left: 0;
}

.modal-open {
  overflow: hidden !important;
  padding-left: 0;
  padding-right: 0;
}

.modal-backdrop.show {
  opacity: 0.6;
  z-index: 9998;
}

/* Blog
===========================*/
.blog .blog_item {
  margin-bottom: 25px;
}

.blog_item {
  background-color: #fff;
  overflow: hidden;
}
.blog_item .cover {
  position: relative;
  height: 290px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.blog_item .cover::before {
  content: "\f0c1";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  z-index: 9999;
  background-color: rgba(91, 60, 52, 0.7);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.blog_item .cover img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.blog_item .cont {
  padding: 18px;
  font-weight: 600;
}
[dir=rtl] .blog_item .cont {
  direction: rtl;
}
.blog_item .cont a {
  color: #5b3c34;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .blog_item .cont a {
    font-size: 14px;
  }
}
.blog_item .cont p {
  color: #777;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  .blog_item .cont {
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .blog_item .cont a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.blog_item:hover .cover::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.blog_item:hover .cover img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

.blog_more {
  top: 0;
  inset-inline-end: 15px;
  position: absolute;
  margin: 0;
  line-height: 35px;
  padding: 0 15px;
  font-size: 13px;
}
@media (max-width: 575px) {
  .blog_more {
    margin: 15px auto 0;
    position: relative;
    inset-inline-end: 0;
  }
}

.blog_details {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #0001;
}
@media (max-width: 575px) {
  .blog_details {
    padding: 15px;
  }
}
.blog_details h2 {
  margin: 0 0 15px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #5b3c34;
}
.blog_details span {
  background-color: #f9e050;
  color: #5b3c34;
  display: inline-block;
  font-size: 14px;
  padding: 3px 10px;
  margin: 0 0 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.blog_details p {
  line-height: 25px !important;
  margin: 15px auto !important;
  font-size: 16px !important;
  color: #191919 !important;
  text-align: justify;
}
.blog_details p.hint {
  padding-inline-start: 25px;
  border-inline-start: 5px solid #f9e050;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 30px;
}
.blog_details img {
  margin-bottom: 15px;
}

.share {
  margin-top: 15px;
  border-top: 1px solid #e7e7e7;
  padding: 15px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.share h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #5b3c34;
  text-transform: capitalize;
}
.share .social .btn_icon {
  color: #fff !important;
}
.share .social .fa-facebook-f {
  background-color: #1877f2;
}
.share .social .fa-instagram {
  background-color: #e4405f;
}
.share .social .fa-youtube {
  background-color: #cd201f;
}

.related_blog {
  position: sticky;
  top: 100px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #0001;
  margin: 0 0 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media (max-width: 575px) {
  .related_blog {
    padding: 15px;
  }
}
.related_blog h3 {
  margin: 0;
  letter-spacing: 1px;
  font-size: 18px;
  border-inline-start: 5px solid #f9e050;
  padding-inline-start: 15px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  line-height: 35px;
  color: #5b3c34;
}

.list_item {
  margin-top: 15px;
  border-top: 1px solid #e7e7e7;
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #191919;
  font-size: 14px;
  line-height: 20px;
}
.list_item img {
  margin: 0;
  margin-inline-end: 10px;
  min-width: 60px;
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.list_item span {
  margin-top: 5px;
  color: #777;
  display: block;
  font-size: 14px;
  font-weight: 300;
}

.a2a_kit .a2a_svg {
  background-repeat: repeat;
  width: 40px !important;
  line-height: 40px !important;
  height: 40px !important;
  background-size: 35px !important;
  border-radius: 5px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Form
=======================*/
label {
  font-weight: 600;
  font-size: 14px;
  margin: 10px 0;
}

.form-control {
  padding: 0 15px;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
  color: #191919;
  border: 1px solid #0001;
  margin-bottom: 20px;
  letter-spacing: 0px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.form-control:hover, .form-control:focus {
  border: 1px solid #0001;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  height: 110px;
  padding: 10px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Contat
====================*/
.contact h3 {
  color: #5b3c34;
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 20px;
  border-inline-start: 3px solid #f9e050;
  padding-inline-start: 10px;
}
.contact a {
  color: #191919;
}

.contact_info {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 25px;
}
.contact_info li {
  margin-bottom: 5px;
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.contact_info li i {
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #5b3c34;
  text-align: center;
  border-radius: 50%;
  margin-inline-end: 15px;
  color: #fff;
  font-size: 12px;
}
.contact_info li a {
  text-transform: lowercase;
  display: block;
  line-height: 24px;
  font-size: 17px;
}

.contact_form {
  background-color: #fff;
  padding: 25px;
}

/* Footer
=====================*/
footer {
  z-index: 9997;
  padding: 50px 0 0;
  position: relative;
  background-color: #efefef;
}
footer .up_btn {
  position: absolute;
  right: 0;
  left: 0;
  top: -15px;
  margin: auto;
  font-size: 16px;
  z-index: 9998;
}
footer img {
  margin: 0 0 15px;
  width: 100%;
  max-width: 110px;
}
footer p {
  margin: 0 0 15px;
  color: #191919;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
}
footer h3 {
  margin: 0 0 25px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  line-height: 20px;
  color: #5b3c34;
  letter-spacing: 1px;
}
footer h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  inset-inline-start: 0;
  width: 40px;
  height: 3px;
  margin: auto;
  background-color: #f9e050;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
footer a {
  color: #191919;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
  color: #191919;
}
footer ul.quick_links .row {
  margin: 0;
}
footer ul.quick_links li {
  display: block;
  position: relative;
  padding: 0;
  padding-inline-start: 20px;
  margin-bottom: 5px;
}
footer ul.quick_links li a {
  display: inline-block;
  line-height: 20px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
footer ul.quick_links li a:hover {
  -webkit-transform: translatex(5px);
  -moz-transform: translatex(5px);
  -ms-transform: translatex(5px);
  -o-transform: translatex(5px);
  transform: translatex(5px);
}
footer ul.quick_links li::before {
  content: "";
  color: #191919;
  position: absolute;
  content: "\f105";
  inset-inline-start: 0;
  line-height: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
[dir=rtl] footer ul.quick_links li::before {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
footer .contact_info {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}
footer .copyrights {
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 15px;
  border-top: 1px solid #0001;
  margin-top: 20px;
  font-family: "Open Sans", sans-serif;
  background: #FFF;
}
footer .copyrights .col-12 p {
  margin: 0;
  font-weight: bold;
}
footer .copyrights .col-12 .power {
  display: block;
  margin: 15px auto 0;
  width: 120px;
  text-transform: uppercase;
  color: #5b3c34;
  font-size: 13px;
  font-weight: 600;
}
footer .copyrights .col-12 .power a {
  margin-top: 10px;
  display: block;
  color: #fff;
}
footer .copyrights .col-12 .power a img {
  width: 100%;
  margin: auto;
}

.call {
  position: fixed;
  inset-inline-end: 10px;
  bottom: 10px;
  font-size: 28px;
  margin: auto;
  background-color: #f9e050;
  color: #fff !important;
  border: 0;
  width: 55px;
  height: 55px;
  z-index: 9998;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.call i {
  color: #5b3c34;
  font-size: 18px;
  line-height: 55px;
}
.call::after, .call::before {
  width: 50px;
  height: 50px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249, 224, 80, 0.6);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  animation: ripple 2s infinite;
  animation-delay: 0.6s;
}
.call::after {
  animation-delay: 0.6s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.dark footer {
  background-color: #5b3c34;
}
.dark footer ul.quick_links li::before,
.dark footer h3,
.dark footer p,
.dark footer a, .dark footer .power {
  color: #fff !important;
}

/*# sourceMappingURL=style.css.map */
[data-notify="container"][class*="alert"] {
  border-width: 0px;
  border-radius: 50px;
  box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.3);
  letter-spacing: 1px;
  text-align: center;
}

[data-notify="container"].alert-danger {
  width: auto;
}

[data-notify="container"].alert-success {
  width: auto;
}

[data-notify="container"][class*="alert-"]>[data-notify="icon"] {
  display: inline;
}

[data-notify="container"][class*="alert-"]>[data-notify="message"] {
  font-weight: 400;
  display: inline;
  text-align: center;
  width: 100%;
}
html[dir="rtl"] body, html[dir="rtl"] footer ul.quick_links li a, html[dir="rtl"] p , html[dir="rtl"] .blog_details p.hint{
  font-family: 'Tajawal', sans-serif !important;
}

html[dir="rtl"] body, html[dir="rtl"] footer h3, html[dir="rtl"] .page_head h3 , html[dir="rtl"] .blog_details h2{
  letter-spacing: 0 !important;
}
html[dir="rtl"] .btn{
    letter-spacing: 0;
}
html[dir="rtl"] .product_item i ,
html[dir="rtl"] .btn i{
    transform: rotateY(180deg);
}
html[dir="rtl"] .owl-carousel .owl-stage-outer{
  direction: ltr;
}
html[dir="rtl"] .contact_info li a{
  direction: ltr
}
.a2a_kit .a2a_svg{
  width: 30px !important;
  height: 30px !important;
  background-size: 10px !important;
}