/* start--fonts */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

/* end--fonts */
:root {
  --main-color: #D61A66;
  --black-color: #000000;
  --yellow-color: #050504;
  --blue-color: #0B5DA7;
  --white-color: #ffffff;
}


.wow {
  animation-duration: 1.5s;
  animation-fill-mode: both;
 }
body.overflow-hidden .arrwa_call {
  display: none;
}



:target::before {
  content: "";
  display: block;
  height: 150px;
  margin: -150px 0 0 0;
}

/* star-railsaudi-- */
@font-face {
  font-family: "saudi_riyal";
  src:
    url("../fonts/regular/saudi_riyal.woff2") format("woff2"),
    url("../fonts/regular/saudi_riyal.woff") format("woff"),
    url("../fonts/regular/saudi_riyal.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.icon-saudi_riyal::before {
  content: "\e900";
  font-family: "saudi_riyal" !important;
  color: inherit;
  font-size: 2rem;
  font-weight: 400;
}

/* end-railsaudi-- */

@media (min-width: 1200px) {
  .container {
    max-width: 1152px;
  }
}

body {
  font-family: "Almarai", sans-serif;
  background-color: #FDFEFF;

  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--main-color);
  color: white;
}

.title_main {
  .title_main {
    font-size: clamp(20px, 3vw, 32px) !important;
    text-align: start;
    padding-top: 30px;
    margin-bottom: 35px;
    font-weight: bold;
    color: #000000;
  }
}

@media (max-width: 600px) {
  .title_main {
    text-align: center !important;
    padding-top: 10px !important;
    margin-bottom: 0 !important;
  }
}

@media (min-width: 600px) {
  .title_main {
    margin-bottom: 0px !important;
  }
}

.subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #001233;
  text-align: center;
  margin-top: 16px;
}

.btn_shopping,
button.woocommerce-Button.button,
a.button.wc-forward,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.wc-block-components-button {
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
  padding: 8px 35px 8px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  /* width: fit-content; */
  background: transparent;

  i {
    font-size: 16px;
    margin-right: 5px;
    transition: .3s;
  }

  &:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
    box-shadow: 0px 4px 4px 0px #00000014;
  }

  &:hover i {
    color: var(--white-color);
  }
}

.btn_whatsapp {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  transition: .3s;
  background-color: #ADD036;
  border-radius: 24px;
  padding: 11px 38px;
  display: inline-block;

  i {
    color: var(--black-color);
    transition: .3s;
    margin-right: 4px;
    font-size: 16px;
  }

  &:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
    box-shadow: 0px 4px 4px 0px #00000014;
  }

  &:hover i {
    color: var(--white-color);
  }
}

.activee {
  display: block !important;
}

.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.scroll {
  overflow: hidden;
}

/* --------start scroll--------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--main-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--black-color);
  border-radius: 20px;
  border: 5px solid rgb(0, 0, 0);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--black-color);
  border-radius: 20px;
}

/* ---end- subheader- */
/* ---start- subheader- */
#sub_header {
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 555;

  .subheader {
    .logo {
      img {
        width: 172px;
        height: 70px;
      }
    }

    .search_web {
      position: relative;

      input {
        border: 1px solid #3D9DD9;
        background-color: #3D9DD90F;
        border-radius: 20px;
        padding-right: 48px;

        &::placeholder {
          /* padding-right: 35px; */
          color: var(--blue-color);
        }
      }

      .search-btn {
        color: #3D9DD9;
        position: absolute;
        top: 0px;
        right: 6px;
        font-size: 18px;
      }
    }

    .icon {
      display: flex;
      justify-content: end;
      align-items: center;
      gap: 20px;

      a,
      .dropdown-parent {
        position: relative;

        i {
          color: var(--main-color);
          font-size: 22px;
        }

        span {
          position: absolute;
          width: 20px;
          height: 20px;
          background-color: var(--main-color);
          color: var(--white-color);
          border-radius: 50%;
          display: block;
          margin: auto;
          top: -10px;
          left: 16px;
          display: flex;
          justify-content: center;
          align-items: center;
          border: 2px solid white;
        }
      }
    }
  }
}

@media(max-width:992px) {
  #sub_header {
    display: none;
    background-color: hsla(106, 25%, 79%, 0.2);

    .subheader {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px;

      .manu_subheader {
        justify-content: flex-end;
        gap: 20px;

        li {
          a {
            /* color: var(--black-color);
            font-size: 16px;
            font-weight: 500;
            transition: .3s;
            display: flex; */

            /* &:hover {
              color: var(--blue-color);
            } */
            /* 
            i {
              font-size: 15px;
              margin-left: 8px;
              font-weight: 500;
              transition: .3s;

              &:hover {
                color: var(--blue-color);
              } */
          }
        }
      }
    }

    /* img {
        width: 80px;
        height: 93px;
        /* display: none; */
  }

  */ .icon {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    justify-content: flex-end;

    a {
      /* display: flex;
          align-items: center; */
      justify-content: space-between;
      margin-left: 10px;
      /* transition: .3s; */

      /* &:hover {
            color: var(--blue-color);
          } */

      i {
        margin-left: 24px;
        /* font-size: 24px; */
        /* color: #1E1E1E;
            transition: .3s;

            &:hover {
              color: var(--blue-color);
            } */
      }

      /* 
          .icon-saudi_riyal {
            font-size: 20px;
            color: var(--black-color);

            span {
              font-size: 20px;
            } */
    }
  }
}




/* ---end- subheader- */
/* --------end scroll--------- */

body {
  background: #fff;
  /* overflow-x: hidden; */

}



.home_header {
  background-color: var(--white-color) !important;
  display: flex;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px #0000001A;

  .header-main-content {
    display: flex;
    justify-content: center;

    .logo_bars {
      display: none;
    }

    .navigtion {
      display: flex;
      justify-content: center !important;
      align-items: center;
      align-content: center;
      padding: 10px;
      border-top: 1px solid hsla(156, 22%, 33%, 0.161);
    }

  }

  .icons_searchs {
    display: flex;
    justify-content: end;
    align-items: center;
    display: none;

    a {
      display: flex;
      align-items: center;
      justify-content: end;
      margin-left: 10px;
      transition: .3s;

      &:hover {
        color: var(--blue-color);
      }

      i {
        margin-left: 24px;
        font-size: 24px;
        color: #1E1E1E;
        transition: .3s;

        &:hover {
          color: var(--blue-color);
        }
      }

      .icon-saudi_riyal {
        font-size: 20px;
        color: var(--black-color);
        transition: .3s;

        &:hover {
          color: var(--blue-color);
        }

        span {
          font-size: 20px;
          transition: .3s;

          &:hover {
            color: var(--blue-color);
          }
        }
      }
    }
  }

}

.form-control:focus {
  box-shadow: none !important;
  border-color: #41665729 !important;
}

.class_search {
  position: relative;
  margin: auto;
  transition: .3s;
  opacity: 0;
  height: 0;
  background-color: #41665729;
  visibility: hidden;


  input {
    border: 1px solid #3D9DD9;
    background-color: #3D9DD90F;
    border-radius: 20px;
    width: 100%;
    margin-bottom: 20px;
    padding: 7px 20px;
    caret-color: var(--main-color);
    transition: .3s;
    margin: auto;
    display: flex;
  }

  i {
    position: absolute;
    left: 20px;
    top: 14px;
  }
}

.class_search {


  &.active_open {
    opacity: 1;
    height: 60px;
    transition: .3s;
    background-color: var(--white-color);
    visibility: visible;

  }
}

.main-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  list-style: none;
  justify-content: center;
}

.main-menu a {
  text-transform: capitalize;
  transition: 0.3s;
  text-decoration: none;
}

.main-menu>li {
  margin-inline-end: 20px;
}

.main-menu>li>a {
  color: black;
  font-size: 14px;
  padding: 11px 0px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  display: block;
  font-weight: 400;

}

.main-menu>li:hover>a,
.main-menu>li.active>a,
.main-menu>li.current-menu-item>a {
  color: var(--main-color);
  background: var(--secound-color);
  border-radius: 8px;
}

.main-menu>li:last-of-type {
  margin: 0;
}

.show-submenu,
.show-overlay {
  opacity: 1;
  visibility: visible;
}

.submenu-left {
  inset-inline-start: auto !important;
  inset-inline-end: 100% !important;
}

.main-menu .menu-item-has-children {
  position: relative;
  padding: 0;
}

@media (max-width: 991px) {
  .main-menu .menu-item-has-children {
    flex-wrap: wrap;
  }
}

.main-menu .menu-item-has-children>a {
  column-gap: 5px;
  display: flex;
  align-items: baseline;
  position: relative;
}

.main-menu .menu-item-has-children>a::after {
  content: "";
  position: relative;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 10px;
  transition: 0.3s;

}

.main-menu .menu-item-has-children:hover>a::after {
  color: inherit;
}

.main-menu .menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-menu .menu-item-has-children .sub-menu {
  width: 230px;
  opacity: 0;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 0px;
  z-index: 12;
  background: var(--blue-color);
  position: absolute;
  top: 80px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  list-style: none;
  box-shadow: 0px 16px 35px 0px #0000001A;
  padding: 0;
  transition: 0.3s;
  display: block;
  border-radius: 5px;
}

.main-menu .menu-item-has-children .sub-menu li {
  text-align: center;
  transition: 0.3s;
  background-color: var(--secound-color);

}

.main-menu .menu-item-has-children .sub-menu a {
  padding: 12px;
  align-items: center;
  font-size: 14px;
  border-radius: 0;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  justify-content: flex-start;
  font-weight: 400;
  display: flex;
  /* width: 100%; */
  column-gap: 10px;

  &:after {
    transform: rotate(180deg)
  }
}

.main-menu .menu-item-has-children .sub-menu a:hover {
  color: white;
}

@media(max-width:992px) {
  .home_header {
    background-color: var(--white-color) !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    .header-main-content {
      border-top: 1px solid #41665729;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 60px;

      .logo_bars {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;

        .logo {
          width: 135px;

          img {
            display: block;
            width: 100%;
            height: 100%;
            margin-right: 10px;
          }
        }

      }

      .navigtion {
        display: flex;
        justify-content: center !important;
        align-items: center;
        align-content: center;
        padding: 10px;
        border-top: 1px solid hsla(156, 22%, 33%, 0.161);
      }

    }



    .icon {
      display: flex;
      justify-content: end;
      align-items: center;
      margin-right: auto;
      gap: 20px;

      .cart_shopping {
        position: relative;
      }

      a,
      .dropdown-parent {
        i {
          color: var(--main-color);
          font-size: 22px;


        }

        span {
          width: 20px;
          height: 20px;
          background-color: var(--main-color);
          border-radius: 50%;
          display: block;
          position: absolute;
          top: -14px;
          right: -12px;
          border: 2px solid white;
          display: flex;
          justify-content: center;
          align-items: center;
          color: var(--white-color);
        }
      }



    }
  }

}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 4px #41665729;
  background-color: var(--white-color) !important;
  backdrop-filter: blur(30%);
}

@media (min-width: 991px) {
  .main-menu .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    margin-inline-start: auto;
    content: "";
  }
}

.main-menu .menu-item-has-children .sub-menu .sub-menu {
  top: 0;
  inset-inline-start: 100%;
}

@media (max-width: 991px) {
  .main-menu .menu-item-has-children .sub-menu .sub-menu {
    margin: 10px;
    padding: 10px;
    margin-inline-start: 10px;
  }
}

.bars {
  z-index: 20;
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
  background: none;
  border: 0;

}

.bars .line {
  flex-shrink: 0;
  width: 25px;
  display: block;
  height: 2px;
  border-radius: 20px;
  background-color: var(--main-color);
  transition: all 0.3s;
}

.rotate-line1 {
  transform: rotate(45deg) translateX(-2px) translateY(0px);
  transform-origin: 0% 0%;
}

.rotate-line3 {
  transform: rotate(-45deg) translateX(-1px) translateY(-1px);
  transform-origin: 0 100%;
}

.bars .hide-line2 {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1200px) {
  .menu-item-has-children .sub-menu {
    inset-inline-start: 0;
    transform: unset;
  }

  .main-menu>li {
    margin-inline-end: 25px;
  }
}

@media only screen and (max-width: 992px) {
  .navigation .container {
    padding-inline: 12px;
  }

  .rotate-line3 {
    transform: -45deg translateX(-1px) translateY(0px);
  }



  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .main-menu>li {
    margin-inline-end: 0;
    margin-bottom: 8px;
  }

  .main-menu>li>a {
    font-size: 18px;
    font-weight: 500;
    color: white;

    &:hover {

      border-radius: 8px;
      width: 220px;
    }
  }


  .bars {
    display: flex;
    padding: 20px;
  }

  .navigation {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 60px;
    bottom: 0;
    inset-inline-start: -100%;
    width: 100%;
    height: auto;
    transition: 0.3s;
    z-index: 20;
    padding: 0 !important;
  }

  .navigation .main-menu {
    height: 100%;
    margin-top: 0;
    overflow-y: auto;
    width: 50%;
  }

  .open-sidebar {
    opacity: 1;
    visibility: visible;
    inset-inline-start: 0;
  }

  .main-menu .menu-item-has-children>a::after {
    font-size: 14px;
    transition: 0.3s;
    color: black;
    transform: unset;
  }



  .main-menu .menu-item-has-children>a::after {
    font-size: 15px;
    color: white;
  }

  .main-menu .menu-item-has-children .sub-menu {
    position: static;
    background-color: unset;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: unset;
    padding: 0;
    display: none;
    transition: none;
    width: 100%;
    padding-top: 18px;
  }

  .main-menu .menu-item-has-children .sub-menu li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-inline-start: 14px;
  }

  .main-menu .menu-item-has-children .sub-menu li:before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: white;
    font-size: 14px;
    transition: 0.3s;
    transform: rotate(180deg)
  }



  .main-menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
    margin-bottom: 17px;
    padding: 10px;
  }

  .main-menu .menu-item-has-children .sub-menu li {
    text-align: start;
    padding: 10px;
  }

  .main-menu .menu-item-has-children:hover .sub-menu {
    transform: unset;
    background-color: #d61a6699;
  }

  .main-menu .menu-item-has-children .sub-menu a {
    display: flex;
    padding: 0;
    gap: 8px;
    width: max-content;
  }

  .main-menu .menu-item-has-children {
    width: 100%;
    padding: 0;
  }

  .main-menu .menu-item-has-children>a {
    cursor: pointer;
  }

  .main-menu .menu-item-has-children {
    line-height: normal;
  }

  .icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: block;

    .icons {
      display: flex;
      align-items: center;

      i {
        color: black;
        margin-left: 20px;

        &:hover {
          color: var(--main-color);
        }
      }

    }
  }

}

@media only screen and (max-width: 992px) {

  .navigation .container {
    padding-inline: 20px;
  }

  .main-menu .menu-item-has-children .sub-menu li a:hover {
    background-color: transparent;
    color: #171717;
  }

  .navigation .main-menu {
    background-image: linear-gradient(#0b5da7c2, #0b5da7c2), url(../image/slider1.jpg);
    height: 100%;
    overflow-y: auto;
    width: 100%;
    padding: 40px 30px;
    position: absolute;
    right: 0;
  }

  .main-menu .menu-item-has-children {
    padding: 0;
  }
}

@media only screen and (max-width: 425px) {
  .navigation .main-menu {
    width: 100%;
  }

}

.dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  border: 0;
}

.icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: none;

  .icons {
    display: flex;
    align-items: center;

    i {
      color: black;
      margin-left: 20px;

      &:hover {
        color: var(--main-color);
      }
    }

  }


  .btn_shopping {
    position: relative;
    background-color: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
    font-weight: bold;
    font-size: 16px;
    border-radius: 10px;
    padding: 7px 30px;
    font-weight: 600;
    overflow: hidden;
    transition: 0.3s ease;
    z-index: 1;

    &:hover {
      background: #FFFFFF;
      color: var(--main-color);
      border-color: #FFFFFF;
      box-shadow: 0 3px 6px hwb(0 0% 100% / 0.16);
    }

    a {
      color: white;

    }


  }
}

.dropdown-menu {
  background-color: white;
  text-align: center;
  border: 1px solid var(--black-color);
  transform: translate3d(none) !important;

  li {
    border: none !important;
    padding: 0px;

  }

  a {
    border: 1px solid rgb(255, 250, 250);
    border-radius: 5px;
    color: var(--black-color) !important;

  }

  a.dropdown-item {
    background: transparent;
    border: none !important;
    color: #fdf7f7 !important;
    line-height: 3;

    &:hover {
      background-color: var(--black-color);
      color: var(--main-color) !important;
    }
  }
}

.dropdown-menu.show {
  display: block;
  background: var(--black-color);
  width: 250px;
  position: absolute !important;
  transform: translatey(45px) !important;
}

@media(max-width:1200px) {
  header {
    nav {
      display: flex;
      justify-content: center;
      align-items: center;
      align-content: center;
      padding: 8px;
    }

    >ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      align-content: center;
      margin-bottom: 0;
      margin-left: 0;
      padding-left: 0;

      li {

        a {
          margin-left: 18px;
          color: black;
          padding: 10px 8px;
          font-size: 14px;
          font-weight: 600;

          &:hover {
            color: var(--main-color);
          }

          .dropdown-menu {
            li {
              font-size: 18px;

              a {
                font-size: 14px;
              }
            }
          }

          .dropdown-menu .show {
            position: absolute !important;
            top: calc(100% + 80px);

            li {
              font-size: 18px;

              a {
                font-size: 14px;
              }
            }
          }

        }

        .active {
          color: var(--main-color);

        }
      }

      .nav-item {

        a {
          font-size: 14px;
          font-weight: 600;

          &:hover {
            color: var(--main-color);
          }
        }

      }
    }

    .icon {
      display: none;
      justify-content: space-between;
      align-items: center;

      .icons {

        i {
          color: black;
          margin-left: 20px;

          &:hover {
            color: var(--main-color);
          }
        }
      }
    }
  }
}


/* @media(max-width:992px) {
  header {
    /* box-shadow: 1px 1px 5px black; */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 8px;



  /* ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;

    li {

      a {
        margin-left: 18px;
        color: black;
        padding: 10px 8px;
        font-size: 14px;
        font-weight: 600;
        transition: .3s;

        &:hover {
          color: white;
          background-color: var(--blue-color);
          border-radius: 8px;
        }

        .dropdown-menu {
          li {
            font-size: 18px;

            a {
              font-size: 14px;
              color: rgb(0, 0, 0);
            }
          }
        }

      }

      .active {
        color: var(--main-color);

      }
    }

    .nav-item {

      a {
        font-size: 14px;
        font-weight: 600;
        color: rgb(252, 252, 252);

        &:hover {
          color: var(--main-color);
        }
      }

    }
  } */

  .openbtn {
    width: 35px;
    height: 35px;
    position: relative;
    background: var(--main-color);
    cursor: pointer;
    border-radius: 5px;
    z-index: 3;
    flex: 1 0 auto;
    /* transform: translateX(342px); */
  }

  .icon {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .icons {

      i {
        color: black;
        margin-left: 20px;

        &:hover {
          color: var(--main-color);
        }
      }
    }
  }

  .icon {
    display: flex;
    justify-content: space-between;
    align-items: center;

    a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-left: 10px;
      transition: .3s;

      &:hover {
        color: var(--blue-color);
      }

      i {
        margin-left: 24px;
        font-size: 20px;
        color: #1E1E1E;
        transition: .3s;

        &:hover {
          color: var(--blue-color);
        }
      }

      .icon-saudi_riyal {
        font-size: 20px;
        color: var(--black-color);

        span {
          font-size: 20px;
        }
      }
    }
  }
}

.open_menu {
  transform: translatex(0);
}

.close {
  display: block !important;
}

.dropdown-menu.show {
  display: block;
  background: var(--black-color);
  width: 250px;
  position: static !important;
  transform: translate3d(0px, 0px, 0px) !important;
}

.open_menu {
  transform: translatex(0);
}

.close {
  display: block !important;
}

.dropdown-menu.show {
  display: block;
  background: var(--black-color);
  width: 250px;
  position: statiac !important;

}

.open_menu {
  transform: translatex(0) !important;
}

.headen {
  display: block !important;
}

.headen::before {
  content: "\f00d";
  font-family: "Font Awesome 6 pro";
  font-weight: 900;
}

/* --------start slide background--------- */
.landin_bg {
  width: 100%;

  img {
    width: 100%;
    height: 100%;
    display: block;
  }
}

/* --------end slide background---------- */
/* ----start-Sections products---- */
.products_Sections {
  .brands {
    .brand_item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 30px 0;

      a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .imageslider {
          width: 172px;
          height: 172px;
          transition: .3s;
          border-radius: 50%;

          img {
            width: 100%;
            height: 100%;
          }
        }

        .title_product {
          font-size: 14px;
          font-weight: 400;
          color: #000000;
          margin-top: 20px;
          transition: .3s;

        }

        &:hover .imageslider {
          box-shadow: 0px 4px 4px 0px #0000001A;
        }

        &:hover .title_product {
          color: var(--blue-color)
        }
      }
    }
  }
}

@media(max-width:600px) {
  .products_Sections {
    .brands {
      .brand_item {
        a {
          .imageslider {
            width: 150px;
            height: 150px;

          }
        }
      }
    }
  }
}

/* ---- end-Sections products----- */
.swiper-pagination-bullet {
  width: 19px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--main-color);
  opacity: 60%;
  transition: .3s;

}

.swiper-pagination-bullet-active-main {
  transition: .2s transform, .2s left;
  width: 40px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--main-color) !important;
  transition: .3s;
  opacity: 1;
}

.swiper-wrapper {
  margin-bottom: 35px;
}

.product_box {
  background-color: var(--white-color);
  transition: .3s;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px #00000005;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;

  .holder_image {
    width: 102px;

    img {
      width: 100%;
      height: 206px;
      object-fit: contain;
    }
  }

  .body_item {
    padding: 24px 16px 16px;
    text-align: start;
    display: flex;
    flex-direction: column;
    height: 100%;

    .header_titel {
      font-size: 16px;
      font-weight: 400;
      color: var(--black-color);
    }

    .price_wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;

      .icon-saudi_riyal {
        margin-bottom: 0;

        span {
          font-size: 24px;
          font-weight: bold;
          margin-left: 4px;
        }

        &.old-price {
          text-decoration: line-through;
          color: #777;
          opacity: 0.7;

          &::before {
            font-size: 1.2rem;
          }

          span {
            font-size: 16px;
            font-weight: 400;
          }
        }
      }
    }

  }

  .btn_shopping {
    margin: auto;
  }

  &:hover {
    box-shadow: 0px 4px 4px 0px #0000001A;

  }
}

/* -- -----start-baner1-section---  */
.baner_section {
  margin: 30px 0;
	img {
		width:100%;
	}
}

/* - -----end-baner1-section---  */
/* - -----start-baner2-section---  - */
.sections-linksbaner {
  margin-top: 40px;

  a {
    display: block;
    width: 100%;
    height: 100%;


  }

  img {
    width: 100%;
    /* height: 100%; */
    border-radius: 20px;
    /* object-fit: cover; */
  }
}

/* - -----end-baner2-section---  */
/* -- start-about-Qatr Al-shifa--- -- */
.blog_menu {

  display: flex;
  justify-content: flex-start;
  padding: 28px 0 0;
  gap: 5px;
  color: #00000066;

  a,
  span {
    font-weight: 400;
    display: block;
    color: #00000066;
    font-size: clamp(10px, 2vw, 14px) !important;

  }



}


.about_alshawi {
  margin-top: 80px;
  padding-bottom: 80px;

  .text_aboutus {
    font-size: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 0;
  }
}

.about_us {
  margin: 30px 0;

  .title_main {
    margin-bottom: 45px !important;
  }

  .title_aboutus {
    text-align: start;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black-color);
  }

  .text_aboutus {
    text-align: start;
    font-size: 20px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.4;
    padding-top: 0;
    width: 101%;
    margin-bottom: 16px;
  }

  .imgabout {
    box-shadow: 0px 4px 4px 0px #0000000A;
    border-radius: 20px;

    img {
      border-radius: 20px;
      box-shadow: 0px 4px 4px 0px #0000000A;

    }
  }

  a.btn_order {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .about_us {
    .text_aboutus {
      text-align: center;
    }

    a.btn_whatsapp {
      display: flex;
      justify-content: center;
    }
  }
}

.aboutsection {
  padding: 90px 0 20px;

  .bg_about {
    background-image: linear-gradient(180deg,
        rgba(255, 255, 255, 0.24) 0%,
        rgba(13, 18, 58, 0.24) 64%);
    position: relative;
    z-index: -1;
    padding: 1px;
    border-radius: 5px;
    height: 100%;

    .box_aboutus {
      background-color: var(--white-color);
      position: relative;
      text-align: center;
      box-shadow: 0px 4px 4px 0px #0000000a;
      border-radius: 5px;
      padding: 17px;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      height: 100%;

      .img_aboutus {
        width: 140px;
        height: 140px;
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translate(-50%, -50%);

        img {
          width: 100%;
          height: 100%;
        }
      }

      .body_about {
        margin-top: 40px;

        .title_about {
          font-size: 20px;
          font-weight: bold;
          margin-bottom: 16px;
        }

        .contant_about {
          font-size: 16px;
          font-weight: 500;
        }
      }
    }
  }
}

/* -- end-about-Qatr Al-shifa--- -- */
/* - -----start-holdbanners---- -- */
.baners_sections {
  margin: 30px 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(11, 93, 167, 0.9) 47.6%), url(../image/banner10.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;

  .content_banner {
    display: block;
    /* flex-direction: column;
    align-items: center;
    justify-content: flex-start; */
    line-height: 48px;
    padding: 62px 0 40px;

    .text_banner {
      font-size: clamp(20px, 3vw, 32px);
      font-weight: bold;
      color: var(--white-color);
    }
  }
}

.btn_ersel {
  background-color: var(--white-color);
  font-size: 16px;
  font-weight: bold;
  color: var(--blue-color);
  display: block;
  padding: 0 36px;
  border-radius: 24px;
  width: fit-content;
  margin: 32px 0 20px;
  transition: .3s;

  &:hover {
    background-color: var(--main-color);
    color: var(--white-color);
  }

}

/* -----end-holdbanners---- - */
/* -- start-Sections services- */
.swiper-backface-hidden .swiper-slide {
  height: auto;
}




/* ------ end-Sections products---- */
/* - ------start_details------ - */
.details {
  background-color: var(--blue-color);
  margin: 40px 0 120px;
  width: 100%;

  .body_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 31px 17px;
    transition: .3s;
    border-radius: 0 0 20px 20px;
    transition: 0.3s ease;
    transform-origin: top;
    height: 100%;

    i {
      color: var(--white-color);
      font-size: 40px;
      margin-bottom: 24px;
    }

    .title_box {
      color: var(--white-color);
      font-size: 20px;
      text-align: center;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .description {
      color: var(--white-color);
      font-size: 16px;
      text-align: center;
      font-weight: 400;
    }

    &:hover {
      transform: scaleY(1.1);
      border-radius: 0 0 20px 20px;
      box-shadow: 0px 4px 4px 0px #0000001A;
      background: linear-gradient(180deg, #0B5DA7 0%, #0D6DC4 23.72%);

    }
  }
}

@media(max-width:768px) {
  .details {
    .body_box {
      padding: 42px 0;
    }
  }
}

/* - -- ------end_details------ -  */
/* -----start---Customer opinions------ */
.Customer_opinions {
  .swiper-wrapper {
    margin-bottom: 55px;
  }

  .swiper-pagination-bullet {
    width: 19px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--blue-color);
    opacity: 60%;
    transition: .3s;

  }

  .swiper-pagination-bullet-active-main {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--blue-color) !important;
    transition: .3s;
    opacity: 1;
  }

  .item_opinion {
    padding: 16px;
    background-color: #ADD0361A;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ADD03652;
    height: 100%;
    transition: .3s;
    margin: 20px 0;

    .head {
      .head_icon {
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;

        .stars_icon {
          margin-bottom: 31px;

          i {
            color: #fce340;
          }
        }
      }
    }

    .content {
      display: flex;
      flex-direction: row;
      gap: 10px;
      align-items: center;

      .icon_user {

        img {
          width: 30px;
          height: 30px;
        }
      }
    }

    p {
      font-size: 16px;
      font-weight: 400;
      color: var(--black-color);
      height: 100%;
      text-align: start;
    }

    &:hover {
      border-color: #ADD036;
      box-shadow: 0px 4px 4px 0px #0000001A;

    }
  }
}

@media (max-width: 768px) {
  .swiper-wrapper {
    padding-block: 0 0 50px;
  }

  .swiper-slide {
    padding-top: 0;
  }

  .Customer_opinions {
    .item_opinion {
      p {
        font-size: 12px;
      }

      .content {
        gap: 5px;
      }
    }
  }
}

/* ------end_Customer opinions------ - */
/*------------start-footer ------- --*/
.footer {
  background:
    linear-gradient(#FFFFFFF0, #FFFFFFF0), url(../image/footerimg.png);
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  .total_footer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 40px 0 15px;
    justify-content: center;
    align-content: center;
    /* justify-items: start; */
    text-align: center;

    div .addrass {
      font-weight: bold;
      color: var(--black-color);
      text-align: start;
      font-size: 16px;
    }

    ul {
      text-align: start;
    }

    .Terms ul li a {
      margin-bottom: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .Terms ul li P {
      margin-bottom: 0px;
    }
  }

  .bottomfooter {
    align-items: center;
    border-top: 1px solid #D61A6652;
    box-shadow: 2px 2px 5px white;
    text-align: center;

    .icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 20px;
      align-items: center;

      div {
        padding: 5px 12px;
        border-radius: 10px;

        &:hover {
          box-shadow: 2px 2px 15px var(--main-color);
        }
      }
    }

    .pragre {
      color: var(--thired-color);
      font-size: 16px;
      font-weight: 400;
      padding: 20px;
      transition: 0.3s;

      span {
        a {
          color: var(--blue-color);
          font-weight: 600;
          transition: 0.3s;
        }
      }

      &:hover {
        color: var(--blue-color);
      }

      &:hover span {
        color: var(--main-color);
      }
    }
  }

  ul {
    padding-right: 0px;

    li {
      display: flex;

      a {
        color: var(--black-color);
        line-height: 2.5;
        transition: 0.3s;
        font-size: 16px;
        font-weight: 400;

        &:hover {
          color: var(--main-color);
          transform: scale(0.98);
        }

        &:hover i {
          color: var(--main-color);
          transform: scale(0.98);
        }

        i {
          padding: 10px;
          text-align: center;
          transition: 0.3s;
          width: 40px;
          height: 40px;
          color: var(--thired-color);
          font-weight: 500;

          &:hover {
            color: var(--blue-color);
            transform: scale(0.98);
          }
        }
      }
    }
  }
}

.footer .arrwa_call {
  display: flex;
  align-items: center;
  flex-direction: column;
  bottom: 10px;
  right: 10px;
  position: fixed;
  z-index: 5555;
  gap: 15px;

  .call {
    color: white;
    bottom: 30px;
    right: 35px;
    border: 1px solid green;
    border-radius: 50%;
    background: green;
    width: 65px;
    height: 65px;
    z-index: 22;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;

    i {
      font-size: 40px;
      transition: 0.3;
    }

    &:hover {
      background: var(--black-color);
      color: white;
      box-shadow:
        2px 2px 7px green,
        -2px -2px 7px green;
    }
  }

  .arrwa {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #fff;
    padding: 15px 19px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 999;
    width: 50px;
    height: 50px;
    right: 40px;

    &:hover {
      background: var(--black-color);
      color: white;
      box-shadow:
        2px 2px 7px var(--main-color),
        -2px -2px 7px var(--main-color);
    }
  }
}

.total_footer {
  .social {
    .logo_footer {
      display: flex;
      justify-content: center;
      align-content: center;
      align-items: center;
      margin-bottom: 10px;
      width: 196px;

      /* height: 104px;  */
      img {
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
      }
    }
  }

  .text_footer {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    text-align: start;
    transition: .3s;

    &:hover {
      color: var(--main-color);
    }
  }
}

@media(max-width:992px) {
  .total_footer {
    .text_footer {
      width: 92%;
    }
  }
}

@media(max-width:600px) {
  .total_footer {
    .text_footer {
      width: 100%;
      text-align: center;
    }
  }
}

.socail_menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;

  .link_socail {
    .sub_link {
      width: 35px;
      height: 35px;
      background-color: var(--main-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s;

      i {
        color: var(--white-color);
        font-size: 20px;
        transition: 0.3s;
      }
    }

    &:hover .sub_link {
      background-color: var(--blue-color);
    }

    &:hover i {
      color: var(--white-color);
      transform: rotate(360deg);
    }
  }
}

@media (max-width: 1024px) {
  .footer {
    .total_footer {
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
  }
}

@media (max-width: 600px) {
  .footer {
    .total_footer {
      display: block;
    }
  }
}

@media (max-width: 600px) {
  .footer {
    .total_footer {
      .social {
        display: flex;
        justify-content: center;
      }

      ul {
        text-align: center;
      }
    }
  }

  .total_footer {
    .social {
      display: flex;
      justify-content: center !important;
      align-items: center;
      flex-direction: column;

      .logo_footer {
        img {
          margin-bottom: 10px;
          width: 100%;
          height: 100%;
        }
      }
    }

    .text {
      font-size: 20px;
      font-weight: 500;
      color: white;
      text-align: center;
    }
  }
}

/*------------end- footer------- --*/
/* ------start--Ourmessage----  */
.Our_message {
  margin: 120px 0;

  .item_Our_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

    i {
      font-size: 45px;
      color: var(--main-color);
      margin-bottom: 24px;
    }

    .title_Our_message {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px;
      color: #000000;
    }

    .text_ourmessage {
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      color: #000000;
      position: relative;

      &:before {
        content: "“";
        position: absolute;
        width: 30px;
        height: 30px;
        transform: rotate(180deg);
        font-size: 74px;
        display: block;
        top: -22px;
        color: #D61A6652;
        right: 3px;

      }

      &::after {
        content: "“";
        position: absolute;
        width: 30px;
        height: 30px;
        font-size: 74px;
        display: block;
        bottom: -22px;
        color: #D61A6652;
        left: 3px;
        font-weight: bold;

      }
    }
  }
}

/* -- ------end--Ourmessage---- */
/* -----start-section-Single_service--- */
.Single_service {
  margin-top: 80px;

  .imgabout {
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px #0000000a;
    transition: 0.3s;
    margin-bottom: 20px;

    img {
      border-radius: 5px;
    }

    &:hover {
      box-shadow: 0px 4px 4px 0px #00000041;
    }
  }

  .title-Single_service {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: bold;
    margin-bottom: 24px;
  }

  .text_aboutus {
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 500;
    line-height: 1.5;

    span {
      font-size: 20px;
      font-weight: bold;
      color: var(--thired-color);
      margin-left: 2px;
    }
  }

  a.btn_order {
    padding: 11px 90px 10px 90px;
    background: #32939c !important;
    transition: 0.3s;

    i {
      margin-left: 5px;
      font-size: 20px;
      transition: 0.3s;
    }

    &:hover {
      background-color: var(--white-color) !important;
      color: var(--thired-color);
      border: 1px solid var(--thired-color);
    }

    &:hover i {
      color: var(--thired-color);
    }
  }
}

@media (max-width: 768px) {
  .Single_service {
    a.btn_order {
      display: flex;
      justify-content: center;
    }
  }
}

.content_page {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    text-align: start;
    margin-top: 30px;
    color: #000e2e;
  }

  h1 {
    font-size: 32px;
    font-weight: bold;
  }

  h2 {
    font-size: 28px;
    font-weight: 700;
  }

  h3 {
    font-size: 25px;
    font-weight: 600;
  }

  h4 {
    font-size: 20px;
    font-weight: 500;
  }

  h5 {
    font-size: 16px;
    font-weight: 400;
  }

  h6 {
    font-size: clamp(10px, 3vw, 14px);
    font-size: 14px;
    font-weight: 200;
  }

  ul {
    margin-bottom: 30px;

    li {
      font-size: clamp(12px, 3vw, 18px);
      font-weight: 400;
      position: relative;

      &:after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        right: -17px;
        top: 50%;
        background-color: #000e2e;
      }
    }
  }
}

/* -----end-section-Single_service--- */
/* -----start-section-Single_product--- */
.sections_product {

  /* margin-top: 80px !important; */
  .products {
    margin: 50px 0 80px;
  }
}

@media (max-width: 1024px) {
  .products {
    .product_card {
      .body_product {
        .btn_card {
          a.btn_order2 {
            padding: 10px 30px 10px 30px !important;
          }
        }
      }
    }
  }
}

@media (max-width: 425px) {
  .products {
    .product_card {
      .body_product {
        .btn_card {
          a.btn_order2 {
            padding: 10px 20px 10px 20px !important;
          }
        }
      }
    }
  }
}

.menu_singel,
.nav-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;

  .menu_pages,
  span,
  a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--blue-color);
    background-color: var(--white-color);
    color: var(--blue-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    color: var(--blue-color);
    font-size: 16px;
    font-weight: bold;


    &:hover,
    &.current {
      background-color: var(--blue-color);

      color: var(--white-color);

    }


  }
}

/* -----end-section-Single_product--- */
/* ----start-conactus---- */
.Contact_us {
  margin-bottom: 150px;

  .total_input {
    border: 1px solid var(--blue-color);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    margin-top: 30px;
  }

  .total_sumite {
    padding: 32px 20px 32px;

    .tilte_conact {
      font-size: 20px;
      font-weight: bold;
      color: var(--blue-color);
      margin-bottom: 48px;
    }
  }

  .title_main {
    font-size: clamp(20px, 3vw, 36px);
    margin-bottom: 50px !important;
    font-weight: 500;
    color: black;
    margin-top: -29px;

  }

  label {
    font-weight: Bold;
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--blue-color);
  }

  .form-control::placeholder {
    color: var(--blue-color);
  }

  select {
    display: block;
    width: 100%;
    border-radius: 20px;
    transition: 0.3s;
    margin-bottom: 24px;
    border-color: transparent;
    padding: 9px 5px;
    outline: none !important;
    caret-color: var(--blue-color);

    &:invalid {
      color: var(--blue-color);
    }

    &:focus-visible {
      border: 0px solid transparent;
      box-shadow: none;
    }
  }

  input:not([type="submit"]) {
    border-radius: 20px;
    background-color: #0B5DA71A;
    box-shadow: 0px 4px 4px 0px #0000000a;
    transition: 0.3s;
    margin-bottom: 24px;
    border-color: #32939c1a;
    caret-color: var(--blue-color);
    padding: 7px 16px;
  }

}

textarea {
  border-radius: 20px;
  background-color: #0B5DA71A;
  box-shadow: 0px 4px 4px 0px #0000000a;
  transition: 0.3s;
  margin-bottom: 24px;
  border-color: transparent;
  caret-color: var(--blue-color);

  &:hover {
    background-color: #32939c2b;
    box-shadow: 0px 4px 4px 0px #0000001a;
  }
}

&::placeholder {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-color) !important;
}

.form-control,
select {
  background-color: #0B5DA71A;
  transition: .3s;
  border-radius: 20px;
  border-color: transparent;
  color: var(--blue-color);

  &:focus,
  &:focus-visible,
  &:hover,
  &:active {
    border: 1px solid #0B5DA780;
    box-shadow: 0px 4px 4px 0px #0000001A;
    background-color: #0B5DA71A;
  }
}

.btn_consultion {
  padding: 8px;
  background-color: var(--blue-color);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid var(--blue-color);
  width: 40%;
  display: block;
  transition: 0.3s;


  &:hover {
    background-color: white;
    color: var(--blue-color);
  }
}

.Contactus_socail {
  background-color: var(--blue-color);
  border-radius: 0 20px 20px 0;
  padding: 32px 24px 41px;
  box-shadow: 0px 4px 4px 0px #0000001A;

  .tilte_call {
    font-weight: bold;
    font-size: 20px;
    color: var(--white-color);
    text-align: start;
    margin-bottom: 16px;
  }

  .content_text {
    font-size: 13px;
    font-weight: 400;
    text-align: start;
    color: var(--white-color);
    margin-bottom: 32px
  }

  .menu_links {
    margin: auto;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid white;
    margin-bottom: 32px;

    .contact_us_link {
      color: var(--white-color);
      font-size: 16px;
      font-weight: 400;
      transition: 0.3s;
      display: flex;
      flex-direction: row;
      align-items: center;
      margin-bottom: 24px;

      a {
        color: var(--white-color);
        text-align: center;
        display: block;
        font-size: 16px;
        font-weight: 400;
        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;

        i {
          color: var(--blue-color);
          margin-left: 10px;
          font-size: 24px;
          font-weight: bold;
          transition: 0.3s;
          background-color: var(--white-color);
          border-radius: 50%;
          width: 48px;
          height: 48px;
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }

      &:hover a {
        color: var(--main-color);
      }

      &:hover i {
        color: var(--main-color);
      }
    }
  }

  .socail_menu {
    padding: 0;

    .link_socail {
      .links_sub {
        width: 35px;
        height: 35px;
        background-color: var(--white-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s;

        i {
          color: var(--thired-color);
          font-size: 20px;
          transition: 0.3s;
        }
      }
    }
  }
}

@media (max-width: 992px) {
  .Contact_us {
    .Contactus_socail {
      border-radius: 20px 20px 0 0;
    }

    .btn_consultion {
      width: 60%;
      margin: auto;
    }
  }
}

/* ----end-conactus---- */
/* -start privacy policy--- */
.privacy_policy {
  margin-bottom: 90px;

  .main_titlehero {
    text-align: start;
    margin: 20px 0;
    font-size: clamp(14px, 3vw, 20px);
    font-weight: bold;
    color: #07091F;
  }

  .content {
    padding-bottom: 20px;
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 400;
    color: #07091f;
    line-height: 1.3;
  }
}

/* --end privacy policy ---- */
/* - ---start-page-blog--- -- */
.blog_page {
  margin: 0 0 60px;

  .box_blog {
    background-color: #ffffff;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px #00000005;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;

    .img_card {
      border-radius: 20px 20px 0 0;
      position: relative;

      img {
        border-radius: 20px 20px 0 0;
      }

    }

    .body-card {
      .date {
        border-radius: 20px;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-bottom: 10px;

        i {
          color: #D61A667A;
        }

        span {
          color: #D61A667A;
          margin-left: 5px;
          font-size: 15px;
          font-weight: 400;
        }
      }

      display: flex;
      flex-direction: column;
      align-items: flex-start;
      height: 100%;
      background-color: #ffffff;
      text-align: center;
      padding: 16px 16px 24px 16px;
      border-radius: 0 0 20px 20px;

      .title_blog {
        font-size: 16px;
        font-weight: bold;
        color: #07091f;
        text-align: start;
      }

      .text_card {
        font-size: 16px;
        font-weight: 400;
        color: #07091f;
        text-align: start;
        margin: 16px 0 24px;
        height: 100%;
      }
    }

    &:hover {
      box-shadow: 0px 4px 4px 0px #0000001A;

    }
  }
}

/* - ---end-page-blog--- -- */
/* ----start_single-blog----- - */
.singel_blog {

  /* margin: 90px 0  50px; */
  .singleimg_blog {
    position: relative;
    border-radius: 5px;

    img {
      border-radius: 20px;
    }
  }

  .date {
    border-radius: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-bottom: 32px;

    i {
      color: #D61A667A;
    }

    span {
      color: #D61A667A;
      margin-left: 5px;
      font-size: 15px;
      font-weight: 400;
    }
  }

  .title-Single_service {
    font-size: 24px;
    font-weight: bold;
    color: var(--black-color);
    padding-bottom: 24px;
  }

  .text_aboutus {
    font-size: 16px;
    font-weight: 400;
    color: #07091F;
    padding-bottom: 10px;
  }

  .btn_shopping {
    margin: 0;
    box-shadow: 0px 4px 4px 0px #00000014;
  }

  .artical_single {
    margin-top: 80px;

    .main_titlehero {
      margin-top: 40px;
      font-size: 20px;
      font-weight: bold;
      color: var(--black-color);
    }

    .content {
      font-size: 16px;
      font-weight: 400;
      color: var(--black-color);
      margin-bottom: 50px;
    }
  }
}

/* ----end_single-blog----- - */
.dropdown-parent {
  position: relative;
  display: inline-block;

  i {
    font-size: 20px;

    @media (max-width:768px) {
      font-size: 1rem;
    }
  }

  i.fa-light.fa-chevron-down {
    font-size: 12px;
  }
}

.dropdown-parent .dropdown-list {
  width: 230px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform-origin: center top;
  transform-style: preserve-3d;
  border-radius: 8px;
  z-index: 12;
  background-color: #fff;
  position: absolute;
  top: 80px;
  inset-inline-end: -22px;
  list-style: none;
  box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 12px;
  transition: all 0.4s;

  @media (max-width:768px) {
    inset-inline-end: 0;

  }
}

.dropdown-parent .dropdown-list li {
  text-align: center;
  transition: 0.3s;
}

.dropdown-parent .dropdown-list a {
  padding: 10px;
  align-items: center;
  font-size: 16px;
  color: #171717;
  text-align: center;
  justify-content: flex-start !important;
  display: flex;
  width: 100%;
  column-gap: 10px;
  transition: 0.3s;
}

.dropdown-parent .dropdown-list a:hover {
  color: #171717;
}

.dropdown-parent:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: auto;
}

/* Hide WooCommerce standard "View Cart" extra link */
.added_to_cart.wc-forward {
  display: none !important;
}

/* Optional: styling for add to cart button when in "View Cart" state */
.btn_shopping.btn-added-state {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: var(--main-color);
}

.btn_shopping.btn-added-state i {
  color: var(--white-color);
}



.product_dateils {
  .blog_menu {

    ul {
      display: flex;
      justify-content: flex-start;
      padding-top: 28px;

      li {
        a {

          font-weight: 400;
          display: block;
          color: black;
          padding-left: 5px;
          font-size: clamp(12px, 2vw, 18px) !important;


          &::after {
            content: "|";
          }
        }

        &:last-child a::after {
          content: "" !important;
        }
      }
    }

  }

  .image_product {
    img {
      max-height: 466px;
      width: 100%;
    }
  }

  .colection_btn form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .gallery-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }

  .gallery-main {
    width: 75% !important;
    height: 440px;
    box-shadow: 0 50px 75px 50px rgba(#1e1e1e, 0.18);

    .swiper-button {

      &-prev,
      &-next {
        position: absolute;
        bottom: 0;
        right: 0;
        top: auto;
        left: auto;
        height: 75px;
        width: 40px;
        color: #e9e9e9;
        background: #1e1e1e;

        &::after {
          font-size: 12px;
        }
      }

      &-prev {
        right: 40px;
        border-right: 1px solid #e9e9e9;
      }
    }
  }

  .input-group {
    width: 172px !important;
    height: 40px !important;

    .btn-dark,
    .btn-outline-secondary {
      width: 40px;
      height: 40px;
      font-size: 24px;
      font-weight: bold;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      background-color: var(--blue-color);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: .3s;
      border-color: transparent;

      &:hover {
        background-color: var(--blue-color);
      }


    }

    .text-center {
      font-size: 20px;
      font-weight: bold;
      height: 40px;
    }


  }

  .btn_shopping {
    padding: 6px 81px 7px;
    background-color: var(--blue-color);
    transition: .3s;
    color: white;
    border-color: transparent;

    &:hover {
      background-color: var(--main-color);
    }
  }

  .socail {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    align-items: center;

    .title_social {
      font-weight: 500;
      font-size: 16px;
      color: black;

    }


    ul {
      display: flex;
      gap: 15px;
      margin-bottom: 0;
      padding-right: 0;

      i {
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        color: var(--black-color);
        width: 18px;
        height: 20px;

      }
    }
  }



  .gallery-title {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: "Epilogue", sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(#000, 0.3);
    color: #ffffff;

    .swiper-slide-active & {
      animation: slide-in 0.3s ease-in both;
    }
  }

  .gallery-thumbs {
    order: -1;
    width: 25%;
    height: 390px;
    margin-right: 15px;
    padding-left: 15px;
    overflow: hidden;

    .swiper-slide {
      img {
        transition: 0.3s;
      }

      &-active {
        opacity: 0.9;
      }

      &-thumb-active {
        opacity: 1;

        img {
          margin-left: -15px;
        }
      }
    }
  }

  .swiper-button-prev::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    color: black;
    position: absolute;
    font-size: 15px;
    background-color: #F4F0ED;
    padding: 8px 18px;
    border-radius: 15px;

  }

  .swiper-button-next::after {
    content: "\f106";
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    color: black;
    font-size: 15px;
    background-color: #F4F0ED;
    padding: 8px 18px;
    border-radius: 15px;
  }

  .swiper-button-next {
    top: 95%;
    right: 15%;
  }

  .swiper-button-prev {
    top: 95%;
    right: 5%;
  }

  .swiper-slide {
    padding-top: 0 !important;
    border-radius: 20px !important;
  }

  .swiper-slide img {
    border-radius: 20px;
    object-fit: cover;
  }

  .swiper-vertical>.swiper-wrapper {
    gap: 10px
  }








  .product_title {
    margin-bottom: 32px;

    .third_tilte {
      font-size: clamp(18px, 3vw, 24px);
      font-weight: Bold;

    }

    .fa-solid {
      color: #FCE340;
      margin-bottom: 20px;
    }

    .icon-saudi_riyal {
      color: black;
      font-weight: bold;
      font-size: 24px;
      margin-left: 10px;

      &::before {
        margin-right: 6px;
        position: relative;
      }

    }

    span {
      color: black;
      font-weight: bold;
      font-size: 24px;
      margin-right: 10px;
    }

    .product-short-description {
      border-top: 1px solid #eaeaea;
      padding: 16px;
      border-bottom: 1px solid #eaeaea;
      font-size: clamp(14px, 3vw, 20px);
      font-weight: 500;
      margin-block: 1rem;
    }

    .we {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .form-select {
      /*       width: 60%; */
      /*       background-color: #FFD79A; */
      /*       border-radius: 15px; */
      /*       margin-bottom: 20px; */

      &:focus {
        box-shadow: none;
        /*         border-color: transparent; */
      }
    }

    /* .input-group {
      width: 50%px !important;
    } */

    .buttons_sell {
      border: 1px solid black;
      border-radius: 8px;

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


  }

  .tabs_main {
    transition: .3s;


    .nav-tabs {

      display: flex;
      flex-direction: row !important;
      justify-content: center;
      background-color: transparent;
      transition: .3s;
      border-bottom: 1px solid #eaeaea !important;
      padding-bottom: 16px;


    }

    .nav-tabs .nav-link {
      color: var(--blue-color);
      border: 0;
      font-size: 18px;
      transition: .3s;

      &::after {
        content: "|";
        margin-right: 32px;
      }

      &.active {
        color: black;
        font-weight: bold;
        border-radius: 0;
        background-color: transparent;
      }

    }
  }

  .nav-item {
    &:last-child .nav-link::after {
      content: "";
    }
  }

  #myTabContent {
    .content_tabs:not(.product-reviews) {
      font-size: clamp(14px, 3vw, 20px);
      font-weight: 500;
      text-align: start;
      border-bottom: 1px solid #eaeaea;
      margin-top: 24px;
      padding-bottom: 48px;


      .tiltle_product {
        margin-bottom: 20px;
      }

      .text_product {
        margin-bottom: 15px;
      }

      img {
        width: 15px;
        height: 15px;
        margin-left: 10px;
      }
    }

  }
}

@media(max-width:768px) {
  .product_dateils {
    .image_product {
      display: flex;
      justify-content: center;


    }

    .product_title {
      margin-bottom: 32px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      /*       align-items: center; */
    }

  }

  .swiper-button-prev::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    color: black;
    position: absolute;
    font-size: 15px;
    background-color: #F4F0ED;
    padding: 8px 8px;
    border-radius: 15px;

  }

  .swiper-button-next::after {
    content: "\f106";
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    color: black;
    font-size: 15px;
    background-color: #F4F0ED;
    padding: 8px 8px;
    border-radius: 15px;
  }


  .gallery-main {

    height: 342px;

  }

  .gallery-thumbs {
    height: 290px;
  }



}

@media(max-width:600px) {
  .product_dateils {
    .colection_btn {
      display: flex;
      flex-direction: column;

      /*       .buttons_sell {
        margin: auto;
      } */
    }



  }

  .swiper-button-prev::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    color: black;
    position: absolute;
    font-size: 15px;
    background-color: #F4F0ED;
    padding: 8px 8px;
    border-radius: 15px;

  }

  .swiper-button-next::after {
    content: "\f106";
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    color: black;
    font-size: 15px;
    background-color: #F4F0ED;
    padding: 8px 8px;
    border-radius: 15px;
  }


  .gallery-main {

    height: 342px;

  }

  .gallery-thumbs {
    height: 290px;
  }



}


.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: rtl;
}


.woocommerce-info {
  border-top-color: var(--secound-color);

  &:before {
    color: var(--secound-color);

  }
}

.woocommerce a.added_to_cart,
a.wc-block-components-product-name,
.review-form-wrapper a {
  color: var(--secound-color);
}

p.logged-in-as,
.wc-block-components-checkbox__label,
.form-helper {
  a {
    color: var(--secound-color);
  }
}

.product-reviews {
  margin-top: 24px;
}

p.comment-form-comment {
  display: flex;
  flex-direction: column;
}

:root {
  --wp--preset--font-size--small: 16px;
}

.wc-block-components-product-metadata__description {
  display: none;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {

  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.wc-block-checkout__form .wc-block-components-address-form__country .wc-blocks-components-select {
  margin-top: 12px;
}

textarea#comment {
  border-radius: 8px;
  border: 0;
  box-shadow: 0 0 0 1px var(--secound-color);
  padding: 10px;
  transition: .3s;
  margin-top: 10px;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: rtl;
}

form.contact-form.woocommerce-form {
  background: #f4f9fd;
  padding: 1rem;
  border-radius: 8px;

  label {
    margin-bottom: 10px;
  }
}


.search-results {
  list-style: none;
  background: #F3F3F3;
  max-height: 400px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 30px;
  z-index: 2;
  width: calc(100% - 24px);
  margin-inline: auto;
}

.search-results::-webkit-scrollbar-track {
  margin-top: 10px;
  margin-bottom: 20px;
}

.search-results.open {
  padding: 10px 20px;
}

.search-results li {
  margin-bottom: 15px;
}

.search-results li a {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  font-size: 16px;
  color: var(--main-color);
}

.search-results li a img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  flex-grow: 0;
  flex-shrink: 1;
}

.search-results li a:hover {
  color: var(--secound-color);
}

nav.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  background: #f4f9fd;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2rem;

  a {
    color: var(--secound-color);

    line-height: 2;

    &:hover {
      color: var(--main-color);
    }
  }
}

header.woocommerce-Address-title.title {
  font-size: 16px;
  text-align: start;
}

.woocommerce-account .addresses .title .edit {
  float: left;
  font-size: 13px;
}



.variation-row.mb-3 {
  display: flex;
  gap: 20px;
  align-items: center;

  select {
    min-width: 200px;

  }
}

.woocommerce-variation-add-to-cart.variations_button {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

button.btn_shopping.single_add_to_cart_button.wc-variation-selection-needed {
  opacity: 0.5;
  cursor: not-allowed;
}

.variations.mb-4 {
  margin-bottom: 0 !important;
}

.woocommerce-variation.single_variation {
  margin-bottom: 20px;
}

/* ========================================
   WooCommerce Product Gallery Styles
   ======================================== */
.woocommerce-product-gallery-wrapper {
  width: 100%;
}

.woocommerce-product-gallery {
  position: relative;
  margin-bottom: 20px;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image {
  overflow: hidden;
  border-radius: 10px;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
	max-height: 400px;
    object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Thumbnails styling */
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

.woocommerce-product-gallery .flex-control-thumbs li {
  width: calc(25% - 8px);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
}

.woocommerce-product-gallery .flex-control-thumbs li:hover,
.woocommerce-product-gallery .flex-control-thumbs li.flex-active {
  opacity: 1;
  border-color: var(--secound-color);
}

.woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Zoom icon */
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: var(--secound-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
  opacity: 1;
}

.woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
  width: 20px;
  height: 20px;
}

/* FlexSlider navigation arrows (if enabled) */
.woocommerce-product-gallery .flex-direction-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.woocommerce-product-gallery .flex-direction-nav a {
  pointer-events: auto;
  background: var(--secound-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.woocommerce-product-gallery .flex-direction-nav a:hover {
  opacity: 1;
}

/* Hide text, show icon */
.woocommerce-product-gallery .flex-direction-nav a.flex-prev::before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .woocommerce-product-gallery .flex-control-thumbs li {
    width: calc(25% - 6px);
  }

  .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    width: 35px;
    height: 35px;
  }
}

.woocommerce-order {
  margin-top: 40px;
}