﻿.btn-primary {
  --bs-btn-bg: #881928;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-hover-bg: #5d111b;
  --bs-btn-active-bg: var(--bs-btn-hover-bg);
  --bs-btn-active-border-color: var(--bs-btn-hover-bg); }

.color-gold {
  color: #a18e62; }

body {
  font-family: "DM Sans", Sans-serif;
  color: #232323;
  /* &::-webkit-scrollbar {
        width: 6px;
    }
    &::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }
    &::-webkit-scrollbar-thumb {
        background-color:$russet-color ;
        outline: 1px solid #fff;
        border-radius:12px;
    }*/ }
  html[dir="rtl"] body {
    font-family: "Tajawal", Sans-serif; }

*, *::before, *::after {
  transition: 0.3s all ease-in-out; }

/*main {
    @media(max-width:991px) {
        .container {
            overflow-x: hidden;
        }
        .s-products {
            .container {
                overflow-x: unset;
            }
        }
    }
}*/
h3,
h4 {
  font-family: "Marcellus"; }
  html[dir="rtl"] h3, html[dir="rtl"]
  h4 {
    font-family: "Tajawal", Sans-serif; }

.brand-name {
  text-transform: uppercase;
  /*font-weight: 700;
    color:$gold-color;*/ }

/*.map-content{
    .brand-name {
    font-weight: normal;
        }
}*/
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  animation: ease 1s animate-header backwards; }

@keyframes animate-header {
  0% {
    top: -130px; }
  100% {
    top: 0; } }

header {
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  position: relative; }
  header .header-desktop {
    border-top: 20px solid #881928;
    overflow: hidden; }
  header .header-mobile {
    border-top: 10px solid #881928;
    position: relative;
    z-index: 9999; }
    header .header-mobile .logo {
      padding: 10px 0; }
      header .header-mobile .logo img {
        height: 50px; }
  header a {
    color: #232323 !important;
    font-family: "DM Sans";
    font-weight: 700; }
    html[dir="rtl"] header a {
      font-family: "Tajawal", Sans-serif; }
    header a.active {
      color: #a18e62 !important; }
  header .lang-link {
    font-family: "Tajawal";
    text-decoration: none;
    white-space: nowrap; }
    header .lang-link:hover {
      color: #a18e62 !important; }
  header a.nav-link {
    position: relative;
    font-size: 14px; }
    html[dir="ltr"] header a.nav-link {
      letter-spacing: 0.2px;
      text-transform: uppercase; }
    html[dir="rtl"] header a.nav-link {
      font-size: 16px; }
    header a.nav-link::before {
      content: "";
      position: absolute;
      z-index: 1;
      width: calc(100% - 32px);
      height: 6px;
      top: calc(100%);
      color: #a18e62;
      border-top: 1px solid #a18e62;
      border-bottom: 1px solid #a18e62;
      transform-origin: center;
      box-sizing: border-box;
      opacity: 0;
      transition: 0.5s cubic-bezier(0, 1, 1, 1), opacity 0.5s cubic-bezier(0.21, 0.46, 0.59, 0.86); }
      html[dir="ltr"] header a.nav-link::before {
        transform: skewX(89.5deg);
        left: 16px; }
      html[dir="rtl"] header a.nav-link::before {
        transform: skewX(-89.5deg);
        right: 16px; }
    header a.nav-link:hover::before {
      transition: 0.5s cubic-bezier(0, 0, 1, 0), opacity 0.5s cubic-bezier(0.19, 0.46, 0.47, 0.78);
      transform: skewX(0) !important;
      opacity: 1; }
  header .hamburger-box {
    /*display: none;*/
    cursor: pointer;
    display: inline-flex;
    padding: 20px;
    margin: 0 -12px; }
    header .hamburger-box .hamburger-inner {
      width: 20px;
      line-height: 0;
      color: #232323; }
      header .hamburger-box .hamburger-inner span {
        display: inline-block;
        position: relative;
        width: 20px;
        height: 2px;
        vertical-align: top;
        background: currentColor; }
        header .hamburger-box .hamburger-inner span + span {
          margin-top: 5px; }
  header .header_area_container .hamburger-box {
    padding: 20px !important;
    margin: -20px; }
  header .mobile_nav_wrapper .menu_overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
    z-index: 2; }
    body.mobile_switch_on header .mobile_nav_wrapper .menu_overlay {
      opacity: 1;
      visibility: visible; }
    html[dir="ltr"] header .mobile_nav_wrapper .menu_overlay {
      left: 0; }
    html[dir="rtl"] header .mobile_nav_wrapper .menu_overlay {
      right: 0; }
  header .mobile_nav_wrapper .menu_outer {
    position: fixed;
    z-index: 999;
    background-color: #1a1a1a;
    overflow: hidden;
    width: 400px;
    height: 100%;
    top: 0;
    transition: transform 0.45s ease-in-out;
    -webkit-user-select: none;
    user-select: none; }
    @media (max-width: 450px) {
      header .mobile_nav_wrapper .menu_outer {
        width: calc(100% - 50px); } }
    html[dir="ltr"] header .mobile_nav_wrapper .menu_outer {
      transform: translateX(-100%); }
    html[dir="rtl"] header .mobile_nav_wrapper .menu_outer {
      transform: translateX(100%); }
    body.mobile_switch_on header .mobile_nav_wrapper .menu_outer {
      transform: translateX(0%);
      overflow: visible; }
  header .mobile_nav_wrapper .menu-outer_header {
    position: absolute;
    top: 10px; }
    html[dir="ltr"] header .mobile_nav_wrapper .menu-outer_header {
      right: -45px; }
    html[dir="rtl"] header .mobile_nav_wrapper .menu-outer_header {
      left: -45px; }
  header .mobile_nav_wrapper .mobile-hamburger-close {
    position: relative;
    z-index: 999;
    border-radius: 5px;
    line-height: 0;
    background: #a18e62;
    color: #fff; }
    header .mobile_nav_wrapper .mobile-hamburger-close .hamburger-box {
      padding: 12px 22px; }
      header .mobile_nav_wrapper .mobile-hamburger-close .hamburger-box .hamburger-inner {
        color: #fff; }
  header .mobile_nav_wrapper .primary-nav {
    padding: 24px;
    text-align: center; }
    header .mobile_nav_wrapper .primary-nav a {
      color: #fff !important; }
    header .mobile_nav_wrapper .primary-nav .logo-menu {
      padding-bottom: 24px;
      border-bottom: 1px solid #333; }
      header .mobile_nav_wrapper .primary-nav .logo-menu a img {
        height: 50px; }
    header .mobile_nav_wrapper .primary-nav .nav {
      display: flex;
      flex-direction: column;
      margin-top: 20px; }
      header .mobile_nav_wrapper .primary-nav .nav a {
        font-family: "Marcellus";
        font-size: 18px;
        font-weight: 400;
        padding: 10px 0 !important; }
        html[dir="ltr"] header .mobile_nav_wrapper .primary-nav .nav a {
          letter-spacing: 2px; }
        header .mobile_nav_wrapper .primary-nav .nav a:before {
          top: calc(100% - 6px); }
        header .mobile_nav_wrapper .primary-nav .nav a.active {
          color: #a18e62 !important; }
        html[dir="rtl"] header .mobile_nav_wrapper .primary-nav .nav a {
          font-family: "Tajawal", Sans-serif; }

body.mobile_switch_on .hamburger-inner span:nth-child(1) {
  animation: ease 0.7s 0.4s burger_top-1-45 forwards; }

body.mobile_switch_on .hamburger-inner span:nth-child(2) {
  animation: ease 0.7s 0.4s burger_scaled-1 forwards; }

body.mobile_switch_on .hamburger-inner span:nth-child(3) {
  animation: ease 0.7s 0.4s burger_bottom-1-135 forwards; }

body.mobile_switch_off .hamburger-inner span:nth-child(1) {
  animation: ease 0.7s 0.4s burger_top-2-45 backwards; }

body.mobile_switch_off .hamburger-inner span:nth-child(2) {
  animation: ease 0.7s 0.4s burger_scaled-2 backwards; }

body.mobile_switch_off .hamburger-inner span:nth-child(3) {
  animation: ease 0.7s 0.4s burger_bottom-2-135 backwards; }

@keyframes burger_top-1-45 {
  0% {
    top: 0;
    transform: rotate(0); }
  50% {
    top: 7px;
    transform: rotate(0); }
  100% {
    top: 7px;
    transform: rotate(45deg); } }

@keyframes burger_top-2-45 {
  0% {
    top: 7px;
    transform: rotate(45deg); }
  50% {
    top: 7px;
    transform: rotate(0); }
  100% {
    top: 0;
    transform: rotate(0); } }

@keyframes burger_bottom-1-135 {
  0% {
    bottom: 0;
    transform: rotate(0); }
  50% {
    bottom: 7px;
    transform: rotate(0); }
  100% {
    bottom: 7px;
    transform: rotate(135deg); } }

@keyframes burger_bottom-2-135 {
  0% {
    bottom: 7px;
    transform: rotate(135deg); }
  50% {
    bottom: 7px;
    transform: rotate(0); }
  100% {
    bottom: 0;
    transform: rotate(0); } }

@keyframes burger_scaled-1 {
  50% {
    transform: scale(0); }
  100% {
    transform: scale(0); } }

@keyframes burger_scaled-2 {
  0% {
    transform: scale(0); }
  50% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

section {
  padding: 80px 0; }
  section .s-header {
    margin-bottom: 32px; }
    section .s-header h3 {
      font-size: 48px;
      text-transform: uppercase; }
      html[dir="ltr"] section .s-header h3 {
        letter-spacing: 2.4px; }
      @media (max-width: 767px) {
        section .s-header h3 {
          font-size: 40px; } }
      @media (max-width: 575px) {
        section .s-header h3 {
          font-size: 30px; } }
    section .s-header h4 {
      font-size: 36px;
      text-transform: uppercase;
      margin-bottom: 24px; }
      html[dir="ltr"] section .s-header h4 {
        letter-spacing: 2.4px; }
      @media (max-width: 767px) {
        section .s-header h4 {
          font-size: 28px; } }
    section .s-header h5 {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      color: #c19d56;
      display: flex;
      flex-direction: row;
      align-items: center;
      margin: 0 auto 12px;
      gap: 20px; }
      html[dir="ltr"] section .s-header h5 {
        letter-spacing: 2.8px; }
      section .s-header h5:after {
        width: 48px;
        height: 1px;
        background-color: #c19d56;
        content: '';
        display: block; }
    @media (max-width: 575px) {
      section .s-header p {
        text-align: justify; } }
  section .s-header-1 {
    text-align: center; }
    section .s-header-1 h5 {
      text-align: center;
      justify-content: center; }
      section .s-header-1 h5:before {
        width: 48px;
        height: 1px;
        background-color: #c19d56;
        content: '';
        display: block; }
    section .s-header-1 h3 {
      text-align: center; }
  section .s-header-3 h5 {
    text-align: center;
    justify-content: center; }
    section .s-header-3 h5:before {
      width: 48px;
      height: 1px;
      background-color: #c19d56;
      content: '';
      display: block; }

.hero {
  background: url("../img/header-bg.jpg") no-repeat top center;
  background-size: cover;
  height: 360px;
  padding: 0; }
  .hero h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    text-transform: uppercase;
    color: #881928;
    text-shadow: 0px 0px 12px #ffffff;
    text-align: center; }
    html[dir="ltr"] .hero h3 {
      letter-spacing: 5px; }
    html[dir="rtl"] .hero h3 {
      font-weight: 700 !important; }
    @media (max-width: 767px) {
      .hero h3 {
        font-size: 48px; } }
  .hero p {
    text-align: center;
    /*font-size: 24px;
        color: #4d4d4d;*/ }

.wow {
  visibility: hidden; }

footer {
  color: #fff;
  padding-top: 90px;
  background: #161616 url(../img/footer/Logo-footer-2.svg) center center no-repeat;
  background-size: auto 80%;
  overflow: hidden; }
  @media (max-width: 576px) {
    footer {
      padding-top: 60px; } }
  footer a {
    color: #fff;
    text-decoration: none; }
  footer p {
    text-align: center;
    font-family: "Marcellus";
    font-size: 20px; }
    html[dir="rtl"] footer p {
      font-family: "Tajawal", Sans-serif; }
  footer ul {
    list-style: none;
    padding: 0;
    gap: 12px; }
    footer ul li a:hover span {
      color: #a18e62; }
    html[dir="rtl"] footer ul li.c-phone span {
      direction: ltr;
      display: inline-block; }
    html[dir="rtl"] footer ul li.c-phone img {
      transform: scaleX(-1); }
    @media (max-width: 576px) {
      footer ul {
        text-align: center; } }
  footer .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #a18e62;
    border-radius: 100%; }
    footer .social li a:hover {
      background-color: #a18e62; }
  footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
    color: #a9a9a9; }
  @media (max-width: 575px) {
    footer .footer-logo {
      width: 200px; } }
  footer .iso-link {
    display: inline-block;
    border-color: rgba(255, 255, 255, 0.35) !important; }
    footer .iso-link a {
      display: inline-block;
      width: 50px;
      margin: 0 auto; }
      footer .iso-link a img {
        width: 100%; }
      footer .iso-link a:hover img {
        transform: scale(1.1); }

.fancybox__container {
  z-index: 99999 !important; }

/*.fancybox__slide.has-image>.fancybox__content{
    max-height: calc(100% - 120px);
    margin-top: 120px;
}*/
/**---- Home Page ----**/
:root {
  --hero-height: 800px;
  --img-1-width: 540px;
  --img-2-width: 460px;
  --hero-font-size: 100px;
  --img-1-top: 100px;
  --img-2-top: 240px; }

@media (max-width: 1440px) {
  :root {
    --hero-height: 600px;
    --img-1-width: 400px;
    --img-2-width: 300px;
    --hero-font-size: 80px;
    --img-1-top: 80px;
    --img-2-top: 180px; } }

@media (max-width: 1023px) {
  :root {
    --hero-height: 400px;
    --img-1-width: 300px;
    --img-2-width: 240px;
    --hero-font-size: 60px;
    --img-1-top: 40px;
    --img-2-top: 120px; } }

@media (max-width: 767px) {
  :root {
    --hero-height: 360px;
    --img-1-width: 240px;
    --img-2-width: 200px;
    --hero-font-size: 50px;
    --img-1-top: 40px;
    --img-2-top: 120px; } }

.hero-home {
  height: var(--hero-height); }
  .hero-home .hero-images {
    position: absolute;
    width: 100%;
    height: var(--hero-height);
    overflow: hidden; }
    .hero-home .hero-images img {
      transition: all 0.8s ease-out; }
      @media (max-width: 575px) {
        .hero-home .hero-images img {
          display: none; } }
    .hero-home .hero-images .hero-img-1 {
      width: var(--img-1-width);
      position: absolute;
      right: calc( 8vw - 80px);
      top: var(--img-1-top);
      z-index: 1; }
    .hero-home .hero-images .hero-img-2 {
      width: var(--img-2-width);
      position: absolute;
      left: 8vw;
      top: var(--img-2-top);
      z-index: 2; }
      @media (max-width: 767px) {
        .hero-home .hero-images .hero-img-2 {
          left: 3vw; } }
    .hero-home .hero-images .hero-img-3 {
      position: absolute;
      animation-name: text-rotation;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      animation-duration: 30s;
      top: 100px;
      left: 2vw;
      z-index: 0; }
      html[dir="ltr"] .hero-home .hero-images .hero-img-3 {
        animation-direction: reverse; }
      @media (max-width: 1024px) {
        .hero-home .hero-images .hero-img-3 {
          top: 50px; } }
      @media (max-width: 767px) {
        .hero-home .hero-images .hero-img-3 {
          top: 50px;
          left: -12vw; } }

@keyframes text-rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }
  .hero-home h3 {
    position: relative;
    font-size: var(--hero-font-size);
    text-shadow: 0 0 12px #fff, 0 0 8px #fff;
    z-index: 3; }
    html[dir="ltr"] .hero-home h3 {
      -webkit-text-stroke: 0.25px #fff;
      letter-spacing: 5px; }
  .hero-home .hero-btn {
    margin-top: 24px;
    position: relative;
    z-index: 5;
    padding-bottom: 20px; }
    .hero-home .hero-btn a {
      --ab-width: 1;
      --ab-offset: 6;
      --ab-extend: 4;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      border: 1px solid;
      border-radius: 0;
      font-size: 14px;
      line-height: 1em;
      font-weight: 700;
      color: #222;
      border-color: #a18e62;
      transition: 0.4s;
      padding: 22px 45px;
      text-decoration: none; }
      html[dir="ltr"] .hero-home .hero-btn a {
        letter-spacing: 0.05em; }
      @media (max-width: 767px) {
        .hero-home .hero-btn a {
          background: #881928; }
          .hero-home .hero-btn a .button__text {
            color: #fff; } }
      .hero-home .hero-btn a::before, .hero-home .hero-btn a::after {
        content: "";
        color: #a18e62;
        position: absolute;
        pointer-events: none;
        opacity: 1;
        transition: 0.7s cubic-bezier(0.65, 0, 0.6, 1.55); }
      .hero-home .hero-btn a::before {
        top: 0;
        left: 100%;
        width: calc(1px * var(--ab-width));
        height: calc(100% + 1px * var(--ab-extend));
        border-right: calc(1px * var(--ab-width)) solid currentColor;
        transform: translate(calc(1px * var(--ab-offset)), calc(1px * var(--ab-offset) + 4px)); }
      .hero-home .hero-btn a::after {
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: inherit;
        transition: inherit;
        top: 100%;
        left: 0;
        width: calc(100% + 1px * var(--ab-extend));
        height: calc(1px * var(--ab-width));
        border-bottom: calc(1px * var(--ab-width)) solid currentColor;
        transform: translate(calc(1px * var(--ab-offset) + 4px), calc(1px * var(--ab-offset))); }
      .hero-home .hero-btn a .button__content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        position: relative;
        z-index: 2;
        -webkit-user-select: none;
        user-select: none; }
      .hero-home .hero-btn a:focus, .hero-home .hero-btn a:hover, .hero-home .hero-btn a:active {
        background: #881928; }
        .hero-home .hero-btn a:focus .button__text, .hero-home .hero-btn a:hover .button__text, .hero-home .hero-btn a:active .button__text {
          color: #fff; }
        .hero-home .hero-btn a:focus::before .hero-home .hero-btn a:focus::after, .hero-home .hero-btn a:hover::before .hero-home .hero-btn a:focus::after, .hero-home .hero-btn a:active::before .hero-home .hero-btn a:focus::after, .hero-home .hero-btn a:focus::before .hero-home .hero-btn a:hover::after, .hero-home .hero-btn a:hover::before .hero-home .hero-btn a:hover::after, .hero-home .hero-btn a:active::before .hero-home .hero-btn a:hover::after, .hero-home .hero-btn a:focus::before .hero-home .hero-btn a:active::after, .hero-home .hero-btn a:hover::before .hero-home .hero-btn a:active::after, .hero-home .hero-btn a:active::before .hero-home .hero-btn a:active::after {
          opacity: 0;
          transition: 0.5s, opacity 0.3s 0.2s; }
        .hero-home .hero-btn a:focus::before, .hero-home .hero-btn a:hover::before, .hero-home .hero-btn a:active::before {
          height: 0;
          transform: translate(calc(1px * var(--ab-offset)), -16px); }
        .hero-home .hero-btn a:focus::after, .hero-home .hero-btn a:hover::after, .hero-home .hero-btn a:active::after {
          width: 0;
          transform: translate(-16px, calc(1px * var(--ab-offset))); }

.home-products a {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 60px;
  position: relative;
  text-align: center; }
  @media (max-width: 767px) {
    .home-products a {
      margin-bottom: 30px; } }
  .home-products a:before {
    display: block;
    content: "";
    position: absolute;
    width: 282px;
    height: 282px;
    background: url(../img/home/product-bg.svg) no-repeat top center;
    background-size: contain;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%); }
    @media (max-width: 767px) {
      .home-products a:before {
        width: 200px;
        height: 200px; } }
  .home-products a img {
    width: 320px; }
    @media (max-width: 767px) {
      .home-products a img {
        width: 240px; } }
  .home-products a span {
    display: block;
    font-family: "Marcellus";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    color: #232323;
    margin-top: 20px; }
    @media (max-width: 767px) {
      .home-products a span {
        margin-top: 8px; } }
    html[dir="rtl"] .home-products a span {
      font-family: "Tajawal", Sans-serif; }
  .home-products a:hover:before {
    transform: translateX(-50%) rotate(90deg) scale(1);
    transition-duration: 0.6s; }
  .home-products a:hover img {
    transform: scale(1.2); }
  .home-products a:hover span {
    color: #c19d56; }

:root .fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.95) !important; }

.s-video {
  height: 670px;
  background: url("../img/home/video-bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center; }
  .s-video a {
    border: 1px solid #fff;
    padding: 50px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.1); }
    .s-video a:hover {
      padding: 60px; }
  @media (max-width: 767px) {
    .s-video {
      height: 480px; } }
  @media (max-width: 575px) {
    .s-video {
      height: 400px; } }

.s-why-company {
  background: #F9F3F2;
  overflow: hidden; }
  .s-why-company ul {
    list-style: none;
    margin: 0;
    position: relative;
    z-index: 2; }
    .s-why-company ul li {
      display: flex;
      align-items: flex-start;
      padding-bottom: 36px; }
      .s-why-company ul li .why-text h5 {
        font-family: "Marcellus";
        font-size: 24px; }
        html[dir="rtl"] .s-why-company ul li .why-text h5 {
          font-family: "Tajawal", Sans-serif; }
  .s-why-company .why-img {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center; }
    @media (max-width: 767px) {
      .s-why-company .why-img {
        min-height: 50vw; } }
    .s-why-company .why-img:before {
      content: '';
      display: block;
      width: 550px;
      height: 550px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      border-radius: 100%;
      z-index: 0; }
      @media (max-width: 1399px) {
        .s-why-company .why-img:before {
          width: 32vw;
          height: 32vw; } }
      @media (max-width: 767px) {
        .s-why-company .why-img:before {
          width: 50vw;
          height: 50vw; } }
    .s-why-company .why-img img {
      max-width: 100%;
      position: relative;
      z-index: 1;
      transition: all 0.8s ease-out; }

/**---- About Page ----**/
.s-philosophy,
.s-story {
  text-align: center; }
  .s-philosophy .s-block,
  .s-story .s-block {
    gap: 16px; }
    .s-philosophy .s-block h3,
    .s-story .s-block h3 {
      font-size: 24px;
      text-align: center;
      text-transform: uppercase;
      margin: 0; }
      html[dir="ltr"] .s-philosophy .s-block h3, html[dir="ltr"]
      .s-story .s-block h3 {
        letter-spacing: 2.4px; }
    .s-philosophy .s-block i,
    .s-story .s-block i {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f9f3f2;
      width: 84px;
      height: 84px;
      border-radius: 999px;
      margin: 0 auto; }

.s-our-company {
  background-color: #f9f3f2;
  overflow: hidden; }
  .s-our-company .img-container .our-company-img {
    max-height: 100%;
    max-width: 100%;
    height: 500px;
    margin: auto;
    border-radius: 3.5vw 0 3.5vw 0; }
    @media (max-width: 1199px) {
      .s-our-company .img-container .our-company-img {
        height: auto;
        width: 95%; } }
    @media (max-width: 767px) {
      .s-our-company .img-container .our-company-img {
        width: 100%;
        margin-top: 20px;
        border-radius: 3.5vw; } }
  .s-our-company .s-block p {
    font-size: 18px; }
  @media (max-width: 425px) {
    .s-our-company .s-block i .fs-5 {
      font-size: 1.15rem !important; } }
  .s-our-company .founder-of-company {
    max-width: 100%; }

@media (max-width: 575px) {
  .time-line {
    padding-top: 80px; } }

.time-line .tl-step {
  display: flex; }
  .time-line .tl-step .tl-img {
    flex: 0 0 50%;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px; }
    html[dir="ltr"] .time-line .tl-step .tl-img {
      border-right: 1px solid #c19d56;
      padding-right: 8vw; }
    html[dir="rtl"] .time-line .tl-step .tl-img {
      border-left: 1px solid #c19d56;
      padding-left: 8vw; }
    .time-line .tl-step .tl-img i {
      display: block;
      position: relative; }
      @media (min-width: 576px) {
        .time-line .tl-step .tl-img i:before {
          background: url(../img/about/about-icon.svg) center center no-repeat;
          width: 132px;
          height: 141px;
          content: '';
          position: absolute;
          top: -60px;
          z-index: 0; }
          html[dir="ltr"] .time-line .tl-step .tl-img i:before {
            left: -60px; }
          html[dir="rtl"] .time-line .tl-step .tl-img i:before {
            right: -60px; } }
      .time-line .tl-step .tl-img i img {
        width: 100%;
        position: relative; }
    @media (max-width: 575px) {
      .time-line .tl-step .tl-img {
        flex: 0 0 40%; } }
  .time-line .tl-step .tl-text {
    flex: 0 0 50%;
    /*padding: 4vw;*/
    display: flex;
    align-items: center;
    position: relative; }
    html[dir="ltr"] .time-line .tl-step .tl-text {
      text-align: left;
      padding-left: 150px; }
    html[dir="rtl"] .time-line .tl-step .tl-text {
      text-align: right;
      padding-right: 150px; }
    @media (max-width: 991px) {
      html[dir="ltr"] .time-line .tl-step .tl-text {
        padding-left: 80px; }
      html[dir="rtl"] .time-line .tl-step .tl-text {
        padding-right: 80px; } }
    @media (max-width: 767px) {
      html[dir="ltr"] .time-line .tl-step .tl-text {
        padding-left: 40px; }
      html[dir="rtl"] .time-line .tl-step .tl-text {
        padding-right: 40px; } }
    .time-line .tl-step .tl-text i {
      position: absolute;
      top: 50%;
      display: flex;
      align-items: center; }
      html[dir="ltr"] .time-line .tl-step .tl-text i {
        transform: translate(-6px, -50%);
        left: 0; }
      html[dir="rtl"] .time-line .tl-step .tl-text i {
        transform: translate(6px, -50%);
        right: 0; }
      .time-line .tl-step .tl-text i:before, .time-line .tl-step .tl-text i:after {
        content: '';
        display: block; }
      .time-line .tl-step .tl-text i:before {
        width: 11px;
        height: 11px;
        background-color: #c19d56;
        border-radius: 11px; }
      .time-line .tl-step .tl-text i:after {
        width: 95px;
        height: 1px;
        background-color: #c19d56; }
        @media (max-width: 991px) {
          .time-line .tl-step .tl-text i:after {
            width: 50px; } }
        @media (max-width: 767px) {
          .time-line .tl-step .tl-text i:after {
            width: 20px; } }
    .time-line .tl-step .tl-text .tl-content {
      position: relative; }
      .time-line .tl-step .tl-text .tl-content * {
        position: relative; }
      .time-line .tl-step .tl-text .tl-content h6 {
        font-size: 96px;
        color: #faf0e7;
        position: absolute;
        top: -60px; }
        html[dir="ltr"] .time-line .tl-step .tl-text .tl-content h6 {
          font-family: "Marcellus";
          right: 0; }
        html[dir="rtl"] .time-line .tl-step .tl-text .tl-content h6 {
          font-family: "Tajawal", Sans-serif;
          left: 0; }
      .time-line .tl-step .tl-text .tl-content h3 {
        font-size: 36px;
        text-transform: uppercase; }
        html[dir="ltr"] .time-line .tl-step .tl-text .tl-content h3 {
          letter-spacing: 1.8px; }
      .time-line .tl-step .tl-text .tl-content p {
        font-size: 16px;
        line-height: 30px; }
    @media (max-width: 575px) {
      .time-line .tl-step .tl-text {
        flex: 0 0 60%; } }
  @media (min-width: 576px) {
    .time-line .tl-step:nth-child(even) {
      flex-direction: row-reverse; }
      .time-line .tl-step:nth-child(even) .tl-img {
        padding-right: 0; }
        html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-img {
          border-right: 0;
          padding-left: 8vw; }
        html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-img {
          border-left: 0;
          padding-right: 8vw; }
        .time-line .tl-step:nth-child(even) .tl-img i:before {
          top: -60px; }
          html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-img i:before {
            left: unset;
            right: -60px; }
          html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-img i:before {
            right: unset;
            left: -60px; }
      html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-text {
        border-right: 1px solid #c19d56;
        text-align: right;
        /*padding-left: 4vw;*/
        padding-left: 0;
        padding-right: 150px; }
      html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-text {
        border-left: 1px solid #c19d56;
        text-align: left;
        /*padding-left: 4vw;*/
        padding-right: 0;
        padding-left: 150px; } }
  @media (min-width: 576px) and (max-width: 991px) {
    html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-text {
      padding-right: 80px; }
    html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-text {
      padding-left: 80px; } }
  @media (min-width: 576px) and (max-width: 767px) {
    html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-text {
      padding-right: 40px; }
    html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-text {
      padding-left: 40px; } }
  @media (min-width: 576px) {
      .time-line .tl-step:nth-child(even) .tl-text i {
        flex-direction: row-reverse;
        transform: translate(6px, -50%); }
        html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-text i {
          left: unset;
          right: 0; }
        html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-text i {
          right: unset;
          left: 0; }
      html[dir="ltr"] .time-line .tl-step:nth-child(even) .tl-text .tl-content h6 {
        right: unset;
        left: 0; }
      html[dir="rtl"] .time-line .tl-step:nth-child(even) .tl-text .tl-content h6 {
        left: unset;
        right: 0; } }
  @media (max-width: 575px) {
    .time-line .tl-step {
      flex-direction: column; }
      .time-line .tl-step .tl-img {
        border: 0;
        order: 1;
        padding-top: 0;
        padding-bottom: 100px; }
        html[dir="ltr"] .time-line .tl-step .tl-img {
          border-right: 0;
          border-left: 1px solid #c19d56;
          padding-left: 10vw;
          margin-left: 5vw; }
        html[dir="rtl"] .time-line .tl-step .tl-img {
          border-left: 0;
          border-right: 1px solid #c19d56;
          padding-right: 10vw;
          margin-right: 5vw; }
      .time-line .tl-step .tl-text {
        order: 0; }
        html[dir="ltr"] .time-line .tl-step .tl-text {
          border-left: 1px solid #c19d56;
          padding-left: 10vw;
          margin-left: 5vw; }
        html[dir="rtl"] .time-line .tl-step .tl-text {
          border-right: 1px solid #c19d56;
          padding-right: 10vw;
          margin-right: 5vw; }
        .time-line .tl-step .tl-text i {
          top: 24px; }
      .time-line .tl-step:last-child .tl-img {
        padding-bottom: 0; } }
  @media (min-width: 992px) {
    .time-line .tl-step:hover .tl-content {
      transform: scale(1.1); } }

/**---- Process Page ----**/
.s-products {
  padding-top: 0;
  margin-top: -40px; }
  .s-products .products-header {
    border: 1px solid #c19d56;
    background: #fff; }
    @media (max-width: 991px) {
      .s-products .products-header {
        overflow-x: auto; } }
    .s-products .products-header ul {
      display: flex;
      padding: 0 10px;
      list-style: none;
      font-family: "Marcellus";
      font-weight: 400;
      text-transform: uppercase;
      margin: 0; }
      html[dir="ltr"] .s-products .products-header ul {
        letter-spacing: 1.8px; }
      html[dir="rtl"] .s-products .products-header ul {
        font-family: "Tajawal", Sans-serif; }
      .s-products .products-header ul li {
        padding: 20px 10px; }
        .s-products .products-header ul li a {
          padding: 8px 12px;
          color: #232323;
          text-decoration: none;
          display: block;
          font-size: 18px; }
          .s-products .products-header ul li a:hover {
            color: #c19d56; }
        .s-products .products-header ul li.active a {
          background: #c19d56;
          color: #fff; }
  .s-products .products-container .p-category {
    border: 1px solid #c19d56;
    margin-top: 40px; }
    .s-products .products-container .p-category ul {
      margin: 0;
      padding: 0 40px 40px; }
      @media (min-width: 992px) {
        .s-products .products-container .p-category ul {
          padding: 0 80px 40px; } }
      .s-products .products-container .p-category ul li {
        border-bottom: 1px solid #ddd;
        padding-top: 40px; }
        @media (max-width: 520px) {
          .s-products .products-container .p-category ul li {
            padding-bottom: 40px; } }
        .s-products .products-container .p-category ul li:last-child {
          border-bottom: 0;
          padding-bottom: 0; }
    @media (min-width: 992px) {
      .s-products .products-container .p-category li.even-li .col-lg-5 {
        order: 2; }
      .s-products .products-container .p-category li.even-li .col-lg-7 {
        order: 1; } }
  .s-products .products-container img {
    max-width: 100%;
    max-height: 100%; }
  .s-products .products-container .swiper-slide {
    background-size: cover;
    background-position: center; }
  .s-products .products-container .img-swiper {
    height: 80%;
    width: 100%; }
  .s-products .products-container .thumb-swiper {
    box-sizing: border-box;
    padding: 10px 0; }
    .s-products .products-container .thumb-swiper .swiper-wrapper {
      justify-content: center; }
    .s-products .products-container .thumb-swiper .swiper-slide {
      width: 60px !important;
      height: 60px !important;
      /*opacity: 0.4;*/
      box-sizing: border-box;
      padding: 8px;
      border: 1px solid #DDDDDD; }
      .s-products .products-container .thumb-swiper .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .s-products .products-container .thumb-swiper .swiper-slide-thumb-active {
      border: 1px solid #c19d56; }

/**---- Process Page ----**/
.s-process .pro-img,
.s-process .pro-text {
  padding: 40px; }

.s-process .pro-img img {
  max-width: 100%;
  /*border: 5px solid #fff;
            outline: 1px solid $gold-l-color;
            box-shadow:0 0 10px rgba(0,0,0,0.15);*/ }

@media (max-width: 991px) {
  .s-process .pro-img {
    padding-top: 0; } }

.s-process .pro-text p {
  font-size: 18px;
  line-height: 32px;
  text-align: justify;
  color: #4d4d4d; }

@media (max-width: 991px) {
  .s-process .pro-text {
    padding-bottom: 0; } }

/**---- Branches Page ----**/
.s-branches .branch {
  display: block;
  padding: 12px 12px 60px;
  text-align: center;
  text-decoration: none;
  color: #232323; }
  .s-branches .branch .s-header {
    width: 430px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 8px;
    background: linear-gradient(94.51deg, #a18e62 1.5%, #c19d56 100%);
    color: #fff;
    margin: -60px auto 24px;
    position: relative;
    font-size: 36px;
    z-index: 10; }
    @media (max-width: 575px) {
      .s-branches .branch .s-header {
        padding: 20px; } }
    .s-branches .branch .s-header h4 {
      margin-bottom: 0; }
    .s-branches .branch .s-header h5 {
      color: #fff; }
      .s-branches .branch .s-header h5:before, .s-branches .branch .s-header h5:after {
        background-color: #fff;
        width: 48px; }
  .s-branches .branch p {
    text-align: center;
    padding: 0 12px; }
  .s-branches .branch:hover .s-header {
    background: linear-gradient(97.19deg, #660A17 0%, #881928 100%); }

.s-branches .branches-img img {
  max-width: 100%; }

@media (max-width: 991px) {
  .s-branches .branches-img:not(.main-branch) {
    height: 360px;
    overflow: hidden; }
    .s-branches .branches-img:not(.main-branch) img {
      height: auto;
      max-width: none;
      width: 100%; } }

@media (max-width: 991px) and (max-width: 575px) {
  .s-branches .branches-img {
    display: flex;
    justify-content: center; }
    .s-branches .branches-img img {
      height: 360px !important;
      width: auto !important; } }

.s-branches .main-branch .s-header {
  /*background: linear-gradient(97.19deg, #660A17 0%, #881928 100%);*/ }

@media (max-width: 991px) {
  .s-branches .main-branch .branches-img {
    height: 360px;
    overflow: hidden; }
    .s-branches .main-branch .branches-img img {
      height: 100%;
      max-width: none;
      width: auto; } }

/**---- Contact Page ----**/
.s-contact .contact-info {
  padding-top: 40px; }
  .s-contact .contact-info .contact-info-container {
    padding: 40px; }
  .s-contact .contact-info h3 {
    font-size: 36px;
    color: #881928;
    margin-bottom: 36px; }
  .s-contact .contact-info .s-block h6 {
    font-size: 14px;
    color: #a18e62;
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 24px; }
    html[dir="ltr"] .s-contact .contact-info .s-block h6 {
      letter-spacing: 2.8px; }
    .s-contact .contact-info .s-block h6:after {
      content: '';
      display: block;
      flex: 1 1 auto;
      background: #a18e62;
      height: 1px; }
      html[dir="ltr"] .s-contact .contact-info .s-block h6:after {
        margin-left: 20px; }
      html[dir="rtl"] .s-contact .contact-info .s-block h6:after {
        margin-right: 20px; }
  .s-contact .contact-info .s-block ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 24px;
    margin-bottom: 36px;
    list-style: none; }
    .s-contact .contact-info .s-block ul li label span {
      font-weight: 700;
      font-size: 18px; }
      html[dir="ltr"] .s-contact .contact-info .s-block ul li label span {
        padding-left: 8px; }
      html[dir="rtl"] .s-contact .contact-info .s-block ul li label span {
        padding-right: 8px; }
    .s-contact .contact-info .s-block ul li a {
      margin-bottom: 0;
      direction: ltr;
      display: block;
      color: #232323; }
      html[dir="ltr"] .s-contact .contact-info .s-block ul li a {
        padding-left: 36px; }
      html[dir="rtl"] .s-contact .contact-info .s-block ul li a {
        padding-right: 36px; }

.s-contact .contact-form {
  padding-top: 40px; }
  .s-contact .contact-form .contact-form-container {
    background-color: #f9f3f2;
    box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid #dddddd; }
  .s-contact .contact-form h3 {
    font-size: 36px;
    color: #881928;
    margin-bottom: 36px; }
  .s-contact .contact-form .form-element .form-label {
    font-size: 16px;
    color: #333;
    font-weight: 700; }
  .s-contact .contact-form .form-element .form-control {
    border-radius: 0; }
    .s-contact .contact-form .form-element .form-control:focus {
      border-color: #c19d56;
      box-shadow: 0 0 0 0.25rem rgba(193, 157, 86, 0.25); }

/**---- Map Section ----**/
.s-map {
  padding-top: 0;
  padding-bottom: 2px; }
  .s-map .map-sep {
    /* Section */
    height: 34px;
    width: 100%;
    background: url("../img/branches/Section-sep.jpg") center center no-repeat;
    background-size: cover;
    border-bottom: 2px solid #fff; }
  .s-map .page-map {
    background: #561019;
    text-align: center;
    padding: 24px 0;
    position: relative;
    overflow: hidden; }
    @media (max-width: 1199px) {
      .s-map .page-map {
        display: flex;
        justify-content: left; }
        .s-map .page-map picture {
          display: flex;
          justify-content: left; } }
    @media (max-width: 767px) {
      .s-map .page-map {
        padding: 8px 0 80px; } }
    .s-map .page-map img {
      max-width: 150%; }
    .s-map .page-map .map-content {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100%;
      transform: translate(-50%, 60%);
      display: flex;
      align-items: center;
      text-align: center;
      flex-direction: column; }
      .s-map .page-map .map-content h3 {
        font-weight: 400;
        font-size: 60px;
        color: #a18e62; }
      .s-map .page-map .map-content p {
        font-family: "Marcellus";
        font-weight: 400;
        font-size: 32px;
        color: #FFFFFF; }
        html[dir="rtl"] .s-map .page-map .map-content p {
          font-family: "Tajawal", Sans-serif; }
      .s-map .page-map .map-content a {
        color: #a18e62;
        text-decoration: none;
        border: 1px solid #a18e62;
        padding: 4px 16px; }
        .s-map .page-map .map-content a:hover {
          background: #a18e62;
          color: #fff; }
      @media (max-width: 991px) {
        .s-map .page-map .map-content {
          transform: translate(-50%, 50%); }
          .s-map .page-map .map-content h3 {
            font-size: 40px; }
          .s-map .page-map .map-content p {
            font-size: 24px; } }
      @media (max-width: 767px) {
        .s-map .page-map .map-content {
          transform: translate(-50%, 35%); } }
      @media (max-width: 575px) {
        .s-map .page-map .map-content {
          transform: translate(-50%, 20%); }
          .s-map .page-map .map-content h3 {
            font-size: 32px; }
          .s-map .page-map .map-content p {
            font-size: 18px; } }
      @media (max-width: 420px) {
        .s-map .page-map .map-content {
          transform: translate(-50%, 5%); } }

/**---- Effects ----**/
.shine-effect-img,
.shine-effect-img-absolute {
  position: relative;
  overflow: hidden; }
  .shine-effect-img:before,
  .shine-effect-img-absolute:before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 1;
    opacity: 0;
    transition-duration: 0.85s; }

@keyframes shine {
  100% {
    left: 125%;
    opacity: 1; } }

.shine-effect-img-absolute {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.shine-effect-hover:hover.shine-effect-img:before, .shine-effect-hover:hover.shine-effect-img-absolute:before,
.shine-effect-hover:hover .shine-effect-img:before,
.shine-effect-hover:hover .shine-effect-img-absolute:before {
  /*left: 125%;
                opacity: 1;*/
  animation: shine 0.85s; }
