:root {
    --main-color: #ff9233;
    --dark-gray: #444444;
    --green-color: #88a351;
    --text-color: #5f5f5f;
    --secondary-color: #88a351;
    --footer-bg-color: #f6f6f6;
  }

  .hero-branches .owl-one .item img {
    filter: unset;
  /* start home hero */
  }

  .hero{
      height: auto;
  }

  .hero .barnche-title{
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
  }

  .hero-branches .owl-one .item img{
      filter: unset;
  }
  .hero-branches {
    margin-bottom: 100px;
  }
  .owl-carousel {
    direction: ltr;
    position: relative;
  }
  .owl-one .item{
      height: 520px;

      position: relative;
  }
  
  .owl-one .item img{
      width: 100%;
      height: 100%;
      filter: brightness(.6);
  }
  .item .item-text{
      position: absolute;
      z-index: 100;
      top: 50px;
      border-right: 4px solid var(--green-color);
      padding-right: 20px;
  }
  .item .item-text h1{
      margin-top: 0 !important;
  }
  .owl-one .item .item-text{
      direction: rtl;
      right: 10%;
      top: 50%;
      transform: translateY(-50%);
      color: white;
  }
  .owl-one .owl-dots{

      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }
  .owl-one .item {
    position: relative;
  }
  .hero .owl-one .owl-dots{
    bottom:20px
  }

  .owl-one button.owl-dot{
      padding: 5px !important;
      background-color:#e1dede88  !important;
      margin: 10px;
      border-radius: 50%;
  }
  .owl-one .item img {
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
    object-fit: cover;

  }

  .item .item-text {
    position: absolute;
    z-index: 100;
    top: 50px;
    border-right: 4px solid var(--green-color);
    padding-right: 20px;
  }
  .item .item-text h1 {
    margin-top: 0 !important;
  }

  .item.landing-hero .item-text h3{
    font-size: 22px;
    line-height : 2.5;
  }
 .item .item-text {
    direction: rtl;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
  }
 .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  button.owl-dot {
    padding: 5px !important;
    background-color: #e1dede88 !important;
    margin: 10px;
    border-radius: 50%;
  }
   button.owl-dot.active {
    background-color: #ffff !important;
    padding: 5px 30px !important;
    border-radius: 20px;
    transition: 0.3s;
  }

  /* sub-aboutus */
  .sub-about .main-container {
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    height: auto;
  }
  .sub-about-text {
    width: 50%;
  }
  .sub-about .sub-about-text h2{
      color: var(--main-color);
      padding-bottom: 50px;
  }
.sub-about .sub-about-text p {
    color: var(--text-color);
    font-size: 17px;
}
  .sub-about .sub-about-text span {
    color: var(--dark-gray);
    font-weight: 600;
  }
  .sub-about .sub-about-text .main-btn{
      margin-top: 42px;
      width: 121px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white ;
      font-size: 17px;
      font-weight: 500;
      transition: 0.3s;
  }
  .sub-about .sub-about-text .main-btn:hover{
    color: var(--main-color) !important;
    transform: scale(0.9);
  }
  .sub-about .sub-about-img {
    width: 50%;
    max-height: 100%;
    overflow: hidden;
  }

  .sub-about .owl-one .item{
    height: 400px;


  }
  /* .sub-about .sub-about-img:hover img{
    transform: scale(1.1) rotate(2deg);
  } */
  .sub-about{
    position: relative;
  }
  .sub-about::before{
    content: '';
    width: 285px;
    height: 30px;
    background-color: var(--main-color);
    position: absolute;
    top: -10px;
    left: 25%;


  }
  .sub-about .sub-about-img img{
      width: 100%;
      height: 100%;
      transition: 0.3s;
  }
  .sub-about .hero .owl-one button.owl-dot{
    margin: 10px 5px;
  }
  /*.sub-about .hero .owl-one button.owl-dot.active{*/
  /*  padding: 5px 17px !important;*/
  /*}*/
  /* home categories */
  .our-categories{
    margin: 150px 0;
  }
  .container-header a{
    color: var(--main-color);
  }
  .categories{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;


  }
  .categories .category-card{
    width: calc(100% / 3);
    height: 420px;
    border: 1px solid transparent;
    position: relative;
    color: black;
    transition: .4s all linear;
    box-shadow: 0 5px 5px #00000024;
     
  }
.categories .category-card::before {
    content: '';
    background-color: var(--main-color);
    width: 49%;
    height: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    z-index: -1;
    transition: all .3s linear;
}
  .categories .category-card-img{
    width: 100%;
    height: 70%;
    overflow: hidden;
  }

  .categories .category-card:hover {
    border: 1px solid var(--main-color);
   }

   .categories .category-card:hover span{
    color: var(--main-color);
   }

  .category-card:hover::before {
    width: 100%;
  }

  .categories .category-card-img:hover img{
  transform: scale(1.1) rotate(2deg);
  }
  .categories .category-card-img img{
    width: 100%;
    height: 100%;
    transition: 0.3s;
    cursor: pointer;
  }
  .category-card .category-card-text span{
    font-size: 20px;
    font-weight: 500;
  }
  .category-card .category-card-text p{
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    display: -webkit-box;               /* Display as a WebKit box */
    -webkit-line-clamp: 1;              /* Limit text to 2 lines in WebKit browsers */
    -webkit-box-orient: vertical;       /* Set box orientation to vertical */
    overflow: hidden;                   /* Hide any overflowing content */
    text-overflow: ellipsis;            /* Show ellipsis (...) when truncated */
    max-width: 100%;                    /* Ensure it fits within the container */

    /* Fallback for non-WebKit browsers */
    display: -moz-box;                  /* Fallback for Firefox */
    -moz-box-orient: vertical;          /* Orientation for Firefox */
    line-clamp: 1;
  }
  .category-card .sub-text{
    text-align: start;
    line-height: 1.8;
    padding:20px ;
  }

  .sub-about .sub-about-text .main-btn i{

    padding-right: 4px;
}

  /* doctors-staff */
  .doctors-staff {
    height: 788px;
    margin-top: 120px;
    padding: 50px 0;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    height: 100%;
    background-position: center;
    background-repeat: repeat;
    position: relative;
  }
  .doctors-staff::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00000082;
    position: absolute;
    top:0;
  }

  .doctors-staff{
      height: 788px;
      margin-top: 120px;
      background-repeat: no-repeat;
      background-size: cover;

  }
  .doctors-staff::before{
      content: "";
      width: 100%;
      height: 100%;
      background-color: #00000082;
      position: absolute;
      left: 0;

  }
  .doctors-staff .main-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .doctors-staff .main-container h2{
      color: white;
      text-align: center;
      margin-bottom: 40px;
      padding: 40px 0;
      width: 100%;
  }
  .doctors-staff .img-container {
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
  }
  .doctors-staff .doctor-cards{
      display: flex;
      justify-content: center;
      align-items: center;
      column-gap: 10px;
      width: 100%;
  }
  .doctors-staff .doctors-container{
      width: 100%;
      text-align: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;

  }
  .doctors-staff .doctor-cards .d-card{
      width: 312px;
      height: 452px;
      background-color: #E7E6E6;
     border: 1px solid transparent;
     transition: 0.3s;
  }
  .d-card .sec-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color) !important;
  }
  .d-card .btn-container .sec-btn:hover{
    color: white !important;
  }
  .doctors-staff .doctor-cards .btn-container .d-card:hover{
    border: 1px solid var(--main-color);
  }

  .doctors-staff .doctor-cards .d-card .d-card-img {
    width: 100%;
    height: 64%;
    overflow: hidden;
  }

  .doctors-staff .doctor-cards .d-card .d-card-img:hover img {
    transform: scale(1.1) rotate(2deg);
  }

.doctors-staff .doctor-cards .d-card .d-card-img img {
    width: 100%;
    height: 100%;
    transition: 0.3s all linear;
    object-fit: cover;
}

    .d-card .d-card-text .sub-text {
        text-align: start;
        padding: 0;
    }
  .d-card .d-card-text p {
    margin: 10px 0;
    font-size: 16px;
    color: var(--text-color);
    font-weight : 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .doctors-staff .doctor-cards .d-card .d-card-text span {
    font-size: 18px;
    font-weight: 600;
  }
  .d-card .d-card-text .main-btn {
    margin: auto;
  }
  .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }

  .doctors-container .redirect-btn {
      width: 263px;
      height: 56px;
      margin-top: 60px ;
      color: white !important;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
  }
  .doctors-container .redirect-btn i{
    margin-right: 4px;
  }
  .doctors-container .redirect-btn:hover{
    color: black !important;
  }


  /* ===================== */
  /* ==================== */
  /* products */
  .our-products {
    margin: 150px 0;
  }
  .container-header a {
    color: var(--main-color);
  }
  .products {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
  }
.products .product-card {
    width: calc(100% / 3);
    height: 485px;
    border: 1px solid transparent;
    box-shadow: 0 5px 5px #0000001f;
    transition: 0.4s;
}
  .products .product-card-img {
    width: 100%;
    height: 75%;
    overflow: hidden;
  }

  .products .product-card:hover {
    border :1px solid var(--main-color)
  }

  .products .product-card-img:hover img {
    transform: scale(1.1) rotate(2deg);
  }
.products .product-card-img img {
    width: 100%;
    height: 100%;
    transition: all  0.3s linear;
    cursor: pointer;
    object-fit: cover;
}
  .product-card .product-card-text span {
    font-size: 20px;
    font-weight: 500;
  }
  .product-card .product-card-text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    display: -webkit-box;            /* Display as a WebKit box */
    -webkit-line-clamp: 2;           /* Show only 2 lines */
    -webkit-box-orient: vertical;    /* Set the box orientation to vertical */
    overflow: hidden;                /* Hide the overflowing content */
    text-overflow: ellipsis;         /* Show ellipsis (...) when truncated */
    max-width: 100%;
    display: -moz-box;                  /* Fallback for Firefox */
    -moz-box-orient: vertical;          /* Orientation for Firefox */
    line-clamp: 2;
  }
  .product-card .sub-text {
    text-align: start;

    padding: 16px 10px 10px 0;
  }

  /* ====================== */

  .offers {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
  }

  .offers .row{
    width: 100%;
   
  }
  .offers .offer-card{
      position: relative;
       transition: 0.3s;
      height: 100%;
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
    .offers .offer-card .offer-card-component {
      box-shadow: 0 0px 30px rgba(0, 0, 0, .1);
      position: relative;
       transition: 0.3s;
      border: 1px solid transparent;
      height: 500px;
    }
    .offers .offer-card-component:hover{
      border: 1px solid var(--main-color);
    }

  .offer-card .offer-ticket{
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 66px;
      height: 36px;
      color: white;
      background-color: var(--main-color);
      font-size: 16px;
      font-weight: 600;
      border: none;
      top: 25px;
      left: 36px;
      z-index: 10;
  }
  .offers .offer-card-img{
      width: 100%;
      height: 75%;
      overflow: hidden;
  }



  .offer-card .offer-ticket {
    position: absolute;
    width: 66px;
    height: 36px;
    color: white;
    background-color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    border: none;
    top: 25px;
    left: 36px;
  }
  .offers .offer-card-img {
    width: 100%;
    height: 75%;
    overflow: hidden;
  }

  .offers .offer-card-img:hover img {
    transform: rotate(2deg) scale(1.1);
  }
  .offers .offer-card-img img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover;
  }
  .offer-card .offer-card-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 30px;
  }
  .offer-card-text .img-container {
    margin-top: 26px;
  }
  .offer-card .offer-card-text span {
    font-size: 18px;
    font-weight: 500;
  }
    
  .offer-card .offer-card-text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    margin-right: 5px;
    display: flex;
    flex-wrap: wrap;
  }
  .offer-card .offer-card-text p span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-right: 5px;
    text-decoration: line-through;
  }

  .offer-card .offer-card-text span {
    display: -webkit-box;               /* Display as a WebKit box */
    -webkit-line-clamp: 2;              /* Limit text to 2 lines in WebKit browsers */
    -webkit-box-orient: vertical;       /* Set box orientation to vertical */
    overflow: hidden;                   /* Hide any overflowing content */
    text-overflow: ellipsis;            /* Show ellipsis (...) when truncated */
    max-width: 100%;                    /* Ensure it fits within the container */
    line-height: 1.5em;                 /* Adjust line height as needed */                     /* Set height to match the number of lines (line-height * number of lines) */

    display: -moz-box;                  /* Fallback for Firefox */
    -moz-box-orient: vertical;          /* Orientation for Firefox */
    line-clamp: 2;
  }

  .offer-card .sub-text {
    text-align: start;

    padding: 16px 10px 10px 0;
  }

  .offer-card .btn-container .main-btn{
    align-content: center;
    text-align: center;
  }
  .offer-card .sec-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color) !important;
  }
  .offer-card .sec-btn:hover{
    color: white !important;
  }

  /* ================ */
  /* ================ */
  /* blog */
  .our-blog .blog-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: var(--main-color);
    margin-bottom: 30px;
  }
  .blogs {
    display: grid;
    height: 840px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, calc(840px / 5));
    gap: 10px;
  }
  .blog-card {
    position: relative;
    overflow: hidden;
  }

  .blog-card:hover img {
    transform: scale(1.1) rotate(2deg);
  }

.blog-card img {
    width: 100%;
    height: 100%;
    transition: 0.3s linear all;
    object-fit: cover;
}

  .blogs .blog-card:nth-child(1) {
    grid-column: 2 / span 1;
    grid-row: 1 / span 5;
  }
  .blogs .blog-card:nth-child(2) {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
  }
  .blogs .blog-card:nth-child(3) {
    grid-column: 1 / span 1;
    grid-row: 3 / span 3;
  }
.blog-card .blog-text {
    min-height: 147px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    padding: 23px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
  .blog-card .blog-text button {
    width: 160px;
    margin-left: 30px;
    transition: 0.3s;
    cursor: pointer;

  }


  .blog-card .blog-text a{
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 400;
      width: 160px;
      transition: 0.3s all linear;
      cursor: pointer;
  }
  .blog-card .blog-text a i{
    padding-right: 4px;
  }

  .blog-card .blog-text a:hover{
    background-color: white;
    transform: scale(0.9);
    color:black;
  }


  /* ============== */
  /* ============== */
  /* branches */
  .our-branches {
    margin: 150px 0;
  }
  .our-branches .branches-header a {
    color: var(--main-color);
  }
  .branches {
    display: flex;

    gap: 10px;
  }

  .branch-card .branch-text {
    width: auto;
    padding: 30px;
    display: flex;
    align-items: end;
    flex: 1;
  }
  .branch-card .branch-text h3 {
    color: var(--main-color);

  }
.branches .branch-card {
    width: calc(100% / 2);
    display: flex;
    align-items: center;
    height: 181px;
    border: 1px solid transparent;
    transition: .3s all linear;
    box-shadow: 0 0 8px #0000002e;
}

  .branches .branch-card:hover{
    border: 1px solid var(--main-color);
  }
  .branch-card .branch-text p {
    font-size: 16px;
    color: var(--text-color);
  }
  .branch-card .branch-text span:first-child {
    font-weight: 700;
    color: black;
  }
  .branch-text .img-container {
    border: none;

  }
  .branch-card .branch-card-img {
    width: 191px;
    height: 100%;
  }
  .branch-card .branch-card-img img {
    width: 100%;
    height: 100%;
  }

  @keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
  }

  @keyframes rotateBack {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
  }

  .branch-text .img-container img{
    animation: rotateBack 1s forwards;
    transition: transform 1s ease;
  }
  .branch-text .img-container img:hover{
    animation: rotate360 1s forwards;
  }
  .branch-card .branch-card-img{
      width: 191px;
      height: 100%;
  }
  .branch-card .branch-card-img img{
      width: 100%;
      height: 100%;
  }


  /* ============= */
  /* our-partners */
.our-partners {
    margin-bottom: 70px;
    height: auto;
    position: relative;
    padding: 70px;
}
  .our-partners .container-header {
    align-items: center;
    justify-content: center;
    color: white;
  }

  .our-partners::before{
      position: absolute;
      
    z-index: -1;
      width: 100%;
      height:100%;
      content: "";background-color: rgba(0, 0, 0, 0.8);
      left: 0;
      top:0;
  }
  .our-partners .slide-img-container img {
    width: 100%;
    height: 100%;
    max-height: 100px;
    object-fit: contain;
  }
  .our-partners .owl-two .owl-item{
    margin-right: 4px;
  }

  .owl-carousel .owl-two {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .owl-two .owl-nav{

      text-align: center;
      bottom: 0;
      display: flex;
      /* justify-content: center; */
      align-items: end;
      position: absolute;
      bottom: -70px;
      left: 50%;
      transform: translateX(-50%);
  }
  .owl-two .owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .owl-two .owl-nav button span {
    font-size: 45px;
    padding-bottom: 10px;
  }
  .owl-two .owl-nav .owl-prev,
  .owl-two .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    line-height: 35px; /* Center text vertically */

    color: red; /* Text color */
    text-align: center; /* Center text horizontally */
    font-size: 16px; /* Adjust icon size as needed */
    z-index: 100;
    margin: 0 10px 35px !important;
    background-color: transparent !important; /* Button background color on hover */
    color: white !important;
    border: 2px solid white !important;
  }

  .owl-two .owl-nav .owl-prev:hover,
  .owl-two .owl-nav .owl-next:hover {
    background-color: white !important; /* Button background color */
    color: black !important;
    border: 2px solid transparent !important;
  }
  .owl-two .owl-stage {
    display: flex;
    align-items: center;
  }

  /* reviews */
  .reviews{
      background-color: #F6F6F6;
      padding: 20px 0 10px 0;

  }
  .card-review {
    height: 287px;
    background-repeat: no-repeat;
  }
  .card-review .card-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  .card-review .card-img img {
    width: 100%;
    height: 100%;
  }
  .owl-reviews .owl-nav {
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .owl-reviews .owl-nav button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 10px;
  }
  .owl-reviews .owl-nav button span {
    font-size: 45px !important;
    padding-bottom: 9px !important;
  }
  .owl-reviews .owl-nav .owl-prev,
  .owl-reviews .owl-nav .owl-next {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px; /* Center text vertically */
    background-color: transparent !important;
    border: 2px solid var(--main-color) !important;
    color: var(--main-color) !important;
  }

  .owl-reviews .owl-nav .owl-prev:hover,
  .owl-reviews .owl-nav .owl-next:hover{
    background-color: var(--main-color) !important;
    color: white !important;
  }

  .card-review {
    display: flex;
    align-items: center;
  }
  .review-text {
    text-align: center;
    padding: 0px 40px 50px;
    width: 100%;
  }
  .review-text .sub-text {
    position: relative;
  }
  .review-text .sub-text p:first-child {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--main-color) !important;
  }
.review-text .sub-text p:last-child {
    font-size: 16px !important;
    width: 85%;
    color: var(--text-color) !important;
    margin: 15px auto;
}
  .stars i {
    color: var(--main-color);
  }
  .review-text .sub-text::after {
    /* content: url('/images/tabler_quote\ \(1\).png'); */
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -25px;
    right: 15px;
  }
  .review-text .sub-text::before {
    /* content: url(/images/tabler_quote.png); */
    width: 16px;
    height: 16px;
    position: absolute;
    top: 30px;
    left: -20px;
  }

  /* ================= */
  /* ================== */
  /* contact */
  .our-contact {
    padding: 140px 0;
  }
  .contacts {
    min-height: 663px;
    display: flex;
    background-color: #f6f6f6;
  }
  .contacts-data {
    width: 40%;
  }
  .contact-info {
    margin: auto;
    width: 300px;
  }

  .contact-data-header h2{
    text-align: start;
  }
  .contact-info .contact-card{
      display: flex;
      align-items: center;
      justify-content: start;
      line-height: 1;
      text-align: start;
  }
  .contact-card .contact-img {
    margin-left: 15px;
  }
  .contact-card .text-info p {
    font-size: 20px;
    color: var(--text-color);
    transition: 0.3s;
    cursor: pointer;
  }

   .contact-card .text-info h3{
    color: black !important;
  }
  .contact-card .text-info p{
      font-size: 20px;
      color: var(--text-color) ;
      transition: 0.3s;
      cursor: pointer;
  }

  .contact-card .text-info p a{
    color: var(--text-color);
  }



  .contact-card .text-info:hover p {
    color: var(--main-color);
  }

  .contact-card .text-info:hover p a{
    color: var(--main-color);
  }

  .forms {
    width: 60%;

    position: relative;
  }

  .forms::before{
      content: '';
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.64);
      position: absolute;
      left: 0;
      /* z-index: 1; */
  }

  .forms::after{
    content: '';
    width: 15px;
    height: 250px;
    background-color: var(--main-color);
    position: absolute;
    right: -7.5px;
    top: 50%;

    transform: translateY(-50%);
    /* z-index: 1; */
}
  .forms .main-container {
    position: relative;
  }
  .forms .form-header {
    color: white;
    z-index: 99999;
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
  }
  .forms form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;

  }
  .forms form .row{
    row-gap: 12px;
  }
  .forms form .row .error-message{
    font-size: 12px;
  }
  .forms input,
  .forms textarea {
    height: 64px;
    padding: 10px ;
  }

  .forms input:focus,
  .forms textarea:focus{
    border: none !important;
    outline: none !important;

  }

  .forms input::placeholder ,
  .forms textarea::placeholder{
      padding: 10px;

  }

  textarea:focus{
    border: 2px solid var(--main-color) !important;
  }

  .forms input:nth-child(2),
  .forms input:nth-child(4) {
    width: calc(50% - 16px);
  }
  .forms input:nth-child(6),
  .forms input:nth-child(8),
  .forms textarea {
    width: 100%;
  }
  .forms textarea {
    height: 162px;
  }
  .forms form .main-btn{
    margin: 10px 0;
  }

  /* =================== */
  /* ================== */
  /* our brnches page */

  /* location */

  .location {
    margin: 100px 0;
    display: grid;
    height: 645px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, calc(645px / 4));
    gap: 10px;
  }
  .location .location-card:nth-child(1) {
    grid-column: 3 / span 3;
    grid-row: 1 / span 4;
  }
  .location .location-card:nth-child(2) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 3;
  }
  .location .location-card:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 4 / span 1;
  }
  .location .location-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
  }
  .location-header {
    text-align: center;
  }
  .contact-info {
    margin-top: 30px;
  }
  .contact-info .contact-card {
    margin: 20px 0;
  }
  .contact-info .contact-card h3,
  .contact-info .contact-card p {
    margin: 10px 0;
  }
  .contact-info {
    margin: 60px;
  }
  .location-card .sub-text {
    margin: 19px 60px 10px 70px;
  }
  .location-card .sub-text span {
    font-size: 24px;
    color: black;
    font-weight: bold;
  }

  .location-card .sub-text p {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
  }

  /* ======== */
  /* contact-us */
  .reserve-contact .main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px 0;
    gap: 20px;
    flex-wrap: wrap;
  }

  .reserve-contact .main-container .box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    box-shadow: 0 0 30px #d9d7d7a1;
    width: calc(100% / 3 - 20px);
    height: 200px;
    padding: 20px;
  }

.reserve-contact .main-container .box h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2px;
}
.reserve-contact .main-container .box .img {
    border: 1px solid var(--main-color);
    border-radius: 50%;
    padding: 10px;
    height: 60px;
    width: 60px;
}
  .reserve-contact .main-container.box .img img {
    width: 40px;
    height: 40px;
  }

  .reserve-contact .main-container .box p {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 300;
    margin:0;
  }
  .reserve-contact .main-container .box .text {
    text-align: start;
  }

  /* ============ */
  /* contact-form */

.contact-form {
    height: auto;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-form .contact-forms {
    width: 75%;
    height: auto;
    margin: auto;
    background-color: white;
    direction: rtl !important;
}
  .contact-form .contact-forms input {
    height: 64px !important;
  }
  .contact-forms .form-header {
    z-index: 99999;
    text-align: center;
    margin-bottom: 50px;
  }
  .contact-forms .form-header h2 {
    margin-bottom: 15px !important;
  }
  .contact-form form label {
    display: flex !important;
    justify-content: start !important;
    font-size: 17px;
    font-weight: 600;
  }
  .contact-form form textarea {
    width: 100%;
    height: 210px;
    background-color: #f4f4f4;
    border: none;
    outline: none;
  }

  textarea:focus{
    border: 2px solid var(--main-color);
  }
  .contact-form form .form-field {
    margin-bottom: 24px;
  }
  .contact-form form button.main-btn {
    width: 300px;
    height: 64px;
    margin: 60px auto;
  }
  .contact-form .form-header {
    margin-top: 70px;
  }
  .contact-form form input {
    border-radius: 0 !important;
    background-color: #f4f4f4 !important;
    border: transparent !important   ;
  }
  .contact-form form .form-control {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .contact-form form .form-control:focus {
    box-shadow: 0 0 0 0.2rem var(--main-color);
  }

  /* ================ */
  /* offers page */
  .our-offers {
    margin: 150px 0;
  }
  .offers{
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 20px;
      flex-wrap: wrap;
  }
  .offers-page .offers .offer-card {
    width: calc(100% / 2 - 20px);
    box-shadow: 0 0px 25px 0 rgb(0 0 0 / 9%);
    position: relative;
    padding-bottom: 20px;
  }
  .offers-page .offer-card .offer-ticket {
    position: absolute;
    min-width: 84px ;
    width: auto;
    height: 36px;
    color: white;
    background-color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    border: none;
    top: 25px;
    left: 36px;
    padding: 8px;

  }
  .offers-page .offers .offer-card-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  .offers-page .offers .offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
   .offers-page .offer-card .offer-card-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
  }
   .offers-page .offer-card-text .img-container {
    margin-top: 26px;
  }
  .offers-page .offer-card .offer-card-text span {
    font-size: 19px;
    font-weight: 500;
  }
  .offers-page.offer-card .offer-card-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
  }
  .offers-page .offer-card .offer-card-text .sub-text p span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin-right: 5px;
    text-decoration: line-through;
  }
   .offers-page .offer-card .sub-text {
    text-align: start;

    padding: 16px 10px 10px 0;
  }



  /* ================ */
  /* offer pop up */
  .edit-password .user-take-session,
  .edit-personal-info .user-take-session,
  .reservation-completed .user-take-session,
  .user-take-session1 {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .edit-personal-info .user-take-session .contact-form {
    height: auto;
  }
  /* .editPassword .contact-form{
    height: ;
  } */
  .user-take-session1 .contact-form {
     height: 1050px;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
  }

  .edit-personal-info .user-take-session .contact-form{
    height: auto;
  }
  .user-take-session1 .contact-form{
      height:auto ;
  }
  /* .edit-password .user-take-session .contact-form .contact-forms,
  .edit-personal-info .user-take-session .contact-form .contact-forms,
  .user-take-session1 .contact-form .contact-forms {
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: white;
    direction: rtl !important;
  } */
  /* .user-take-session1 .contact-form .contact-forms{
      width: 100%;
      height: 100%;
      margin: auto;
      background-color: white;
      direction: rtl !important;
  } */


  .edit-password .user-take-session.show,
   .edit-personal-info .user-take-session.show,
  .reservation-completed .user-take-session.show,
  .user-take-session1.show {
    opacity: 1;
    pointer-events: auto;
  }

  .edit-personal-info .form,
  .user-take-session1 .form,
  .user-take-session .form {
    background-color: #fff;
    width: 80%;
    height: 95%;
    padding: 50px;
    overflow-y: auto; /* Make the content within the element scrollable */
    box-sizing: border-box;
    position: relative;
    scrollbar-width: none; /* Firefox: hide scrollbars by default */
    -ms-overflow-style: none; /* IE and Edge: hide scrollbars by default */
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
    scroll-behavior: smooth; /* Enable smooth scrolling */
  }
  .edit-personal-info .form {
      background-color: #fff;
      width: 80%;
      padding:  50px;
      /* overflow-y: auto; Make the content within the element scrollable */
      box-sizing: border-box;
      position: relative;
      scrollbar-width: none; /* Firefox: hide scrollbars by default */
      -ms-overflow-style: none; /* IE and Edge: hide scrollbars by default */
      -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
      scroll-behavior: smooth; /* Enable smooth scrolling */
  }
  /* .edit-personal-info .form{
    width: 968px;
    height: 600px;
  } */
  .edit-personal-info .form {
    padding: 0 10px;
    margin: 100px 0;
  }
  .user-take-session1 .form-header {
    margin-bottom: 70px;
  }
  .user-take-session1 .form::-webkit-scrollbar {
    width: 5px !important; /* Adjust the width of the scrollbar */
    display: none; /* WebKit: hide scrollbars by default */
  }

  .user-take-session1 .form::-webkit-scrollbar-thumb {
    background: var(--main-color); /* Style the scrollbar thumb */
    border-radius: 6px; /* Round the corners of the scrollbar thumb */
    border: 3px solid #fff; /* Add a border around the scrollbar thumb */
    width: 5px !important;
  }

  .user-take-session1 .form::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1); /* Style the scrollbar track */
    border-radius: 6px; /* Round the corners of the scrollbar track */
  }

  .user-take-session1 .form:hover::-webkit-scrollbar,
  .user-take-session1 .form:active::-webkit-scrollbar {
    display: block; /* WebKit: show scrollbars on hover or active */
  }
  .user-take-session1 .form .input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  .user-take-session1 .form .input-container .input {
    flex: 1;
  }

  .user-take-session1 .form label {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
  }

  .user-take-session1 .form input,
  .user-take-session1 .form textarea {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
  }

  .user-take-session1 .form textarea {
    height: 210px;
  }
  .user-take-session1 h2 {
    margin: 100px 0;
  }
  .user-take-session1 .form .main-btn {
    font-size: 20px;
    cursor: pointer;
    margin-top: 50px;
  }

  .edit-personal-info .form .close,
  .user-take-session1 .form .close,
  .user-take-session .form .close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;


  }
  .edit-personal-info .contact-form .contact-forms {
    width: 1000px;
    height: auto !important;
    margin: 30px;
    background-color: white;
    direction: rtl !important;
  }
  .date-picker-container,
  .time-picker-container {
    position: relative;
  }




  /*  */
  .date-icon,
  .time-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: black;
    font-size: 16px;
    /* pointer-events: none; Ensure icon doesn't interfere with clicking */
    cursor: pointer;
  }
  
  .offer-date{
    text-align: right;
  }

  .form-field {
    position: relative;
    margin-bottom: 15px;
  }

  .form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .time-picker-container {
    position: relative;
  }

  .form-control {
    width: 100%;
    padding: 10px 40px 10px 10px; /* Add padding for the icon */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  .form-field {
    position: relative;
    margin-bottom: 15px;
  }

  .form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .date-picker-container {
    position: relative;
  }

  .form-control {
    width: 100%;
    padding: 10px 40px 10px 10px; /* Add padding for the icon */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }






  /*  */


  /* Style for the date icon */
 
  /* reservation-completed */

  .reservation-completed .form-header .img-offer {
    width: 117px;
    height: 117px;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .reservation-completed .form-header .img-offer {
    width: 200px;
    height: 200px;
  }
  .reservation-completed .form-header .img-offer img{
      width: 100%;
      height: 100%;
  }

  .reservation-completed .user-take-session .form-header {
    margin-bottom: 4 0px;
  }
  .reservation-completed .contact-form {
    height: auto;
    display: flex;
    align-items: center;
  }
  .reservation-completed .contact-form .contact-forms {
    width: 749px;
    height: 708px;
    margin: auto;
    background-color: white;
    direction: rtl !important;
  }
  .reservation-completed .contact-form{
      height: auto;
      display: flex;
      align-items: center;
    }
    .reservation-completed .contact-form .contact-forms{
      width: 80%;
      height: auto;
      margin: auto;
      background-color: white;
      direction: rtl !important;
    }

    .reservation-completed .user-take-session .form {
      background-color: #fff;
      width: 80;
      height: auto;
     padding: 0;
  }

  .reservation-completed .user-take-session .form {
    background-color: #fff;
    width: 749px;

    padding: 0;
  }

  .reservation-completed .row .col-12 {
    display: flex;
    justify-content: space-between;
    direction: rtl;
    margin-bottom: 20px;
  }
  .reservation-completed .row .col-12:last-child {
    justify-content: center;
  }
  .reservation-completed .row .col-12 h3:first-child {
    font-weight: 400;
  }
  .reservation-completed .row .col-12 h3:last-child {
    font-weight: bold;
  }

  .reservation-completed .row .col-12 h3{
    font-size: 18px;
  }
  .reservation-completed .main-btn {
    width: 300px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reservation-completed .user-take-session .form .main-btn {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .reservation-completed .user-take-session .form .main-btn:hover {
    color: var(--main-color);
  }


  /* ================ */
  /* ================== */
  /* ====================
  =======================
  =========================*/
  /* profile page */
  /* Profile sidebar styles */
  .profile-sidebar {
    width: 312px;
    height: 446px;
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #FAFAFA;
   }

  /* Profile header styles */
  .profile-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #e4e4e4;
  }

  .profile-image {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 14px;
  }
  .profile-image img {
    width: 100%;
    height: 100%;
  }
  .user-name {
    font-size: 16px;
    font-weight: bold;
  }

  /* Navigation styles */
  .profile-nav {
    box-shadow: none;
  }
  .profile-nav ul {
    direction: rtl;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .profile-nav ul li {
    margin-bottom: 10px;
    width: 100%;
  }

  .profile-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-align: start;
  }

  .profile-nav ul li a:hover,
  .profile-nav ul li .active:hover {
    background-color: var(--main-color);
    color: #fff !important;
  }

  .myAccount {
    text-align: start;
    margin-bottom: 140px;
  }
  .myAccount .info-section {
    display: flex;
    gap: 16px;
  }
  .myAccount .main-form-my-account {
    height: 300px;
    border: 1px solid #e4e4e4;
    padding: 30px;
  }
  .main-form-my-account .title-form-acount {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-form-my-account .title-form-acount .edit-info {
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .edit-info p {
    margin: 0 4px 0 0;
  }
  .edit-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    width: 100%;
    height: 100%;
  }
  .edit-info:hover a {
    color: white;
  }
  .myAccount .form-my-account .my-account-info,
  .myAccount .files-my-account .my-account-info {
    margin: 20px 0;
  }
  .form-my-account .my-account-info p:first-child {
    color: var(--text-color);
    font-weight: 400;
  }
  .form-my-account .my-account-info p:last-child {
    font-weight: 500;
  }
  .main-files-my-account .files-my-account .btn-files {
    width: 277px !important;
    height: 57px !important;
    box-shadow: 0 4px 29px rgba(0, 0, 0, 0.2); /* Bottom shadow */
    transition: box-shadow 0.3s ease;
    background-color: white;
    border: none;
    transition: 0.3s;
  }

  .main-files-my-account .files-my-account .btn-files:hover{
    box-shadow: 0 0 10px var(--main-color)
  }

  .main-files-my-account .files-my-account .btn-files:focus {
    outline: none !important;
  }
  .main-files-my-account .files-my-account .btn-files a {
    color: var(--text-color);
    font-size: 15px !important;
    font-weight: 500px !important;
  }

  .myAccount .main-dates-my-account {
    height: auto;
    border: 1px solid #e4e4e4;
    padding: 30px;
    background-color: #fafafa;
    position: relative;
  }
  .myAccount .dates-my-account .my-account-info {
    margin: 10px 0;
  }
  .main-files-my-account .title-files-acount {
    display: flex;
    justify-content: space-between;
  }
  .main-dates-my-account .title-dates-acount {
    margin-right: 80px;
    display: flex;
    gap: 80px;
    padding-bottom: 10px;
    position: relative;
  }

  .main-dates-my-account .title-dates-acount::after{
    content: '';
    position: absolute;
    bottom: 0;
    background-color: #efe9e991 ;
    width: 100%;
    height: 2px;
  }
  .main-dates-my-account .title-dates-acount a {
    font-size: 18px !important;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
  }
  .dates-my-account .col-12 {
    padding: 40px 0;
    box-shadow: 0 2px #efe9e991;
    position:relative;
  }

  .dates-my-account .col-12:last-child{
    box-shadow: none;
  }
  .dates-my-account .col-12 .dates-details {
    border-left: 1px solid #e4e4e4;
    padding-right: 40px;
    text-align: center;
  }
  .dates-my-account .col-12 .dates-details:last-child {
    border-left: none;
  }
  .dates-my-account .col-12 h4:first-child {
    font-weight: 500;
  }
  .dates-my-account .col-12 h4:last-child {
    font-weight: 400;
    color: var(--text-color);
  }
  .main-dates-my-account .cover-img {
    position: absolute;
    right: 40px;
    top: 95px;
  }
  /* edit password */
  .user-take-session .editPassword.form{
    width: 50%;
  }

  .user-take-session .editPassword.form .contact-form{
    height: auto;
  }
  .user-take-session .editPassword.form .contact-form label{
    font-size: 20px;
  }
  .user-take-session .editPassword.form .contact-form a{
    font-size: 16px ;
    font-weight: 600;
    text-decoration: underline !important;
    margin-right: 15px;
  }






  /* ======================= */
  /*  */

.about-intro {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-direction: column;
    background-position: center bottom;
    background-size: cover;
    position: relative;
}

    .about-intro::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      background-color: #00000073;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .about-intro .links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      z-index: 100;
      color: #fff;
    }

    .about-intro .links a {
      cursor: pointer;
      color: #999;
    }

    .about-intro .links p {
      font-weight: 500;
    }

    .about-page .aboutus-info {
      padding: 100px 5%;
    }

    .about-page .aboutus-info h1 {
      color: var(--main-color);
      text-align: center;
      position: relative;
      width: 160px;
      margin: auto;
      margin-bottom: 50px;
    }

    .about-page .aboutus-info h1::before {
      position: absolute;
      content: "";
      right: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background-color: var(--secondary-color);
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
    }

    .about-page .aboutus-info p.first {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .about-page .aboutus-info p.second {
      font-size: 24px;
      font-weight: 400;
      width: 92%;
    }

    .our-vision {
      padding: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row-reverse;
      gap: 30px;
    }

.our-vision .box {
    width: calc(100% / 3 - 10px);
    text-align: center;
    box-shadow: 0 0 30px #d9d7d7a3;
    min-height: 100%;
    height: auto;
    border-radius: 5px;
    display: flex;
    transition:all .3s linear;
    flex-direction: column;
    padding: 20px;
    padding: 46px 29px;
    border: 1px solid transparent;
}

    .our-vision .box:hover{
      border: 1px solid var(--main-color);
    }

    .our-vision .box .header {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row-reverse;
      gap: 30px;
    }



    .our-vision .box h2 {
        margin:0;
      position: relative;
    }



    .our-vision .box p {
      font-size: 20px;
      margin-top: 20px;
    }

    /* CATEGORY PAGE */

    .categories-boxes {
      padding: 100px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .categories-boxes .category {
      width: calc(100% / 3 - 20px);
      box-shadow: 0 0 15px #e5e2e2;
      position: relative;
      transition: 0.3s;
      cursor: pointer;
      border: 3px solid transparent;
    }

    .categories-boxes .category:hover {
      border: 3px solid var(--main-color);

     }
    .categories-boxes .category:hover::before {
      width: 100%;
    }

    .categories-boxes .category::before {
      position: absolute;
      content: "";
      width: 50%;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      height: 5px;
      background-color: var(--main-color);
      transition: 0.5s;
    }

    .categories-boxes .category .img {
      width: 100%;
      height: 280px;
      overflow: hidden;
    }

    .categories-boxes .category .img:hover img{
      transform: scale(1.2) rotate(4deg);
    }
.categories-boxes .category .img img {
    width: 100%;
    height: 100%;
    transition: all 0.4s linear;
    object-fit: cover;
}
    .categories-boxes .category .text {
      padding: 20px;
      text-align: right;
    }

    .categories-boxes .category .text h4 {
      font-size: 20px;
      font-weight: 500;
      color: var(--dark-gray);
      margin-bottom: 10px;
    }

    .categories-boxes .category .text p {
      color: var(--text-color);
      font-size: 16px;
      display: -webkit-box;        /* Required for -webkit-line-clamp to work */
  -webkit-box-orient: vertical; /* Set the box to vertical orientation */
  -webkit-line-clamp: 2;       /* Limit the content to 2 lines (for WebKit browsers) */
  line-clamp: 2;               /* Standard property (for future compatibility) */
  overflow: hidden;            /* Hide the overflowing text */
  text-overflow: ellipsis;
  margin-bottom:0 ;
    }

    /*  */

    .natural-therapy .slider {
      padding: 0 50px;
    }

    .natural-therapy .about-intro .links {
      direction: rtl;
    }

    .natural-therapy-content {
      padding: 100px 0;
    }

    .natural-therapy .text {
      direction: rtl;
      text-align: center;
    }

    .natural-therapy .text h1 {
      position: relative;
      color: var(--main-color);
      width: 320px;
      margin: auto;
      margin-bottom: 30px;
    }

    .natural-therapy .text p {
      color: var(--text-color);
      font-size: 24px;
    }

    .natural-therapy .text h1::before {
      position: absolute;
      content: "";
      right: -15px;
      top: 0;
      height: 100%;
      width: 3px;
      background-color: var(--secondary-color);
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
    }

    .natural-therapy .video {
      height: 600px;
      padding: 0 50px;
      margin: 50px 0;
    }

    .natural-therapy .video video {
      height: 100%;
      width: 100%;
    }

    .natural-therapy .slider .owl-prev,
    .slider .owl-next,
    .products-page .slider .owl-prev,
    .products-page .slider .owl-next {
      background-color: #d9d9d9 !important;
      position: absolute !important;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 30px !important;
    }

    .natural-therapy .slider .owl-prev,
    .products-page .slider .owl-prev {
      top: 50%;
      left: -25px;
      transform: translateY(-50%);
    }
    .natural-therapy .slider .owl-next,
    .products-page .slider .owl-next {
      top: 50%;
      right: -25px;
      transform: translateY(-50%);
    }

    /* .all-doctors .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-direction: row-reverse;
      padding: 50px;
      color: var(--main-color);
    } */

    .all-doctors .header h1 {
      font-size: 32px;
    }

    .all-doctors .header .more {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row-reverse;
      color: var(--main-color);
      gap: 20px;
    }

    .all-doctors .header .more .img {
      margin-top: -15px;
    }

    .all-doctors.custom {
      margin-top: 100px;
      margin-bottom: 100px;
    }

    .all-doctors .doctors {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding: 10px 50px;
    }

    .all-doctors .doctors .doctor-box {
      width: calc(100% / 4 - 20px);
      box-shadow: 0 5px 5px #00000024;
      background-color: #8684842b;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      border: 1px solid transparent;
      transition: .4s all linear;
    }

    .all-doctors .doctors .doctor-box .text .more{
      color: black;
    }

    .all-doctors .doctors .doctor-box:hover {
      border: 1px solid var(--main-color);
     }

     .all-doctors .doctors .doctor-box:hover img{
      transform: scale(1.1);
     }

    .all-doctors .doctors .doctor-box .img {
      width: 100%;
      overflow: hidden;
      height: 280px;
    }
    .all-doctors .doctors .doctor-box .img img {
      width: 100%;
      transition: 0.3s;
      height: 100%;
      object-fit: cover;
    }

    .all-doctors .doctors .doctor-box .text {
      padding: 20px;
      text-align: right;

      margin-top: -7px;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      flex: 1;
    }

    .all-doctors .doctors .doctor-box .text h3 {
      font-size: 18px;
    }
    .all-doctors .doctors .doctor-box .text p {
      font-size: 16px;
      color: var(--text-color);
      margin: 20px 0;
    }

    .doctor-profile .about-doctor {
      margin: 100px 0;
      padding: 0px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }


    .doctor-profile .about-doctor .doctor-card .img{
        flex: 1;
    }

    .doctor-profile .about-doctor .doctor-card .img img {
      width: 100%;
      height: 100%;
    }

    .doctor-profile .about-doctor .doctor-card .doctor-info {
      padding: 20px;
      width: 65%;
    }

    .doctor-profile .about-doctor .doctor-card .doctor-info h3 {
      font-size: 24px;
      font-weight: 500;
    }


.doctor-profile .about-doctor .doctor-card .doctor-info p.description {
    width: auto;
    font-size: 18px;
    font-weight: inherit;
}
    .doctor-profile .about-doctor .doctor-card .doctor-info .rating {
      display: flex;
      align-items: center;
      margin: 10px 0;
      gap: 5px;
      font-size: 13px;
    }

    .doctor-profile .about-doctor .doctor-card .doctor-info .take-session {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-direction: row-reverse;
      margin: 10px 0;
    }

    .doctor-profile .about-doctor .doctor-card .doctor-info .btns {
      display: flex;
      flex-direction: row-reverse;
      gap: 10px;
    }

    .doctor-profile .about-doctor .doctor-card .doctor-info .btns .btn {
      background-color: var(--main-color);
      color: #fff;
      width: 120px;
      height: 50px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
    }
    .doctor-profile .about-doctor .doctor-card .doctor-info .btns .btn-rate {
      border: 1px solid var(--main-color);
      color: var(--main-color);
      width: 50px;
      height: 50px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
    }
    .doctor-profile .about-doctor .doctor-card .doctor-info .patient-number {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

     .doctor-profile .about-doctor .doctor-card .doctor-info .patient-number h4 {
        font-weight: 800;
        font-size: 26px !important;
        margin: 0 !important;
        line-height: 14px;
        word-spacing: -5px;
    }
    .doctor-profile .about-doctor .doctor-card .doctor-info .patient-number p {
      font-size: 14px;
      margin:0 !important;
    }

    .doctor-profile .about-doctor .doctor-card .doctor-info .rating i {
      color: #ffcc47;
    }

    .doctor-profile .about-doctor .doctore-qualifications h2 {
      font-size: 24px;
      font-weight: 500;
      /* margin:10px 0px; */
      margin-bottom: 10px;
    }

    .doctor-profile .about-doctor .doctore-qualifications ul {
      margin-bottom: 10px;
    }
    .doctor-profile .about-doctor .doctore-qualifications ul li {
      list-style-type: disc;
      margin-right: 20px;
      color: var(--text-color);
      font-size: 18px;
      font-weight: 300;
    }

     .doctor-slider {
      direction: ltr;
      padding: 50px 0;
    }

   .doctor-slider h1 {
      text-align: center;
      color: var(--main-color);
      text-align: center;
      position: relative;
      width: 270px;
      margin: auto;
      margin-bottom: 50px;
    }

     .doctor-slider h1::before {
      position: absolute;
      content: "";
      right: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background-color: var(--secondary-color);
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
    }

     .doctor-slider .user-feedback {
      box-shadow: 0 0 30px #d9d7d752;
      position: relative;
      padding: 50px;
      margin: 20px 0;
     
      border: 2px solid transparent;
      transition: 0.3s;
    }

     .doctor-slider .user-feedback::before {
      position: absolute;
      content: ";;";
      color: var(--main-color);
      top: 20px;
      left: 20px;
      font-size: 25px;
      transform: rotate(180deg);
    }

     .doctor-slider .user-feedback::after {
      position: absolute;
      content: ";;";
      color: var(--main-color);
      bottom: 20px;
      right: 20px;
      font-size: 25px;
    }

     .doctor-slider .user-feedback:hover {
      border-color: var(--main-color);
    }

     .doctor-slider .user-feedback p {
      font-size: 16px;
      text-align: center;
      color: var(--text-color);
    }

     .doctor-slider .user-feedback .rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      margin: 10px 0;
    }

   .doctor-slider .user-feedback .rating i {
      color: #ffcc47;
      font-size: 14px;
    }

   .doctor-slider .user-feedback h3 {
      font-size: 16px;
      font-weight: 500;
      text-align: center;
    }

     .doctor-slider .arows {
      position: absolute;
      bottom: 20px;
      left: 50%;
      display: flex !important;
      flex-direction: row-reverse !important;
    }

   .doctor-slider .swiper-wrapper {
      /* padding: 50px; */
      padding-bottom: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

     .doctor-slider .arows .swiper-button-prev,
     .doctor-slider .arows .swiper-button-next {
      transform: rotate(180deg);
      border: 1px solid var(--main-color);
      padding: 10px;
      color: var(--main-color);
      height: 30px;
      width: 30px;
      font-size: 14px !important;
    }

   .doctor-slider .arows .swiper-button-prev::after,
   .doctor-slider .arows .swiper-button-next::after {
      font-size: 12px;
    }

   .doctor-slider .arows .swiper-button-prev {
      background-color: var(--main-color);
      color: #fff;
    }

    .user-rate {
      /* position: fixed;
      top: 0;
      left: 0; */
      height: 100vh;
      
    }

    /* .user-rate.show {
      left: 0;
    } */
    .user-rate .box {
      background-color: #fff;
      padding: 20px;
      z-index: 99999999999 !important;
      opacity: 1;
      width: 400px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      text-align: center;
      padding-top: 40px;
    }

    .user-rate .box .close {
      position: absolute;
      top: 30px;
      cursor: pointer;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #f1f1f1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .user-rate .box h4 {
      font-size: 32px;
      color: var(--dark-gray);
    }

    .user-rate .box p {
      font-size: 24px;
      color: var(--text-color);
      margin-top: 20px;
    }

    .user-rate .box .rating {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row-reverse;
      margin: 10px 0;
      color: #ffcc47;
      gap: 5px;
    }

    .user-rate .box .rating i {
      cursor: pointer;
    }

    .user-rate .box .btn {
      background-color: var(--main-color);
      color: #fff;
      cursor: pointer;
      width: 280px;
      font-size: 20px;
      font-weight: 400;
      margin: auto;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
    }

    .user-rate .box textarea {
      height: 100px;
      border: 1px solid #d2d2d2;
      padding: 10px;
      outline: none;
    }

    .user-take-session {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      background-color: #00000047;
      z-index: 99999999999999999;
      left: -100%;
      transition: 0.4s;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .user-take-session.show {
      left: 0;
    }

    .user-take-session .form {
      background-color: #fff;
      padding: 20px 50px;
      margin: 0;
    }

    .user-take-session .form form input {
      height: 30px;
    }

    .user-take-session .form form label {
      font-size: 14px;
      width: 100%;
    }

    .user-take-session .form form textarea {
      height: 100px;
    }

    .user-take-session .form h1 {
      font-size: 25px;
      margin-bottom: 20px;
    }

    .user-take-session .form form .input {
      margin: 0;
    }

    .user-take-session .form form .btn {
      background-color: var(--main-color);
      color: #fff;
      width: 200px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      margin: auto;
      font-size: 18px;
      font-weight: 600;
      margin-top: 15px;
    }

  .about-intro::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #00000073;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .about-intro h1 {
    z-index: 0;
    color: #fff;
  }

  .about-intro .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 0;
    color: #fff;
  }

  .about-intro .links a {
    cursor: pointer;
    color: #999;
    transition: 0.3s;
  }

  .about-intro .links a:hover{
    color: var(--main-color);
  }

  .about-intro .links p {
    font-weight: 500;
    white-space: nowrap;
  }

  .about-page .aboutus-info {
    padding: 100px 50px;
  }

  .about-page .aboutus-info h1 {
    color: var(--main-color);
    text-align: center;
    position: relative;
    width: 160px;
    margin: auto;
    margin-bottom: 50px;
  }

  .about-page .aboutus-info h1::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
  }

  .about-page .aboutus-info p.first {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .about-page .aboutus-info p.second {
    font-size: 24px;
    font-weight: 500;
    width: 92%;
  }

  .our-vision {
    padding: 50px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 30px;
  }


  .our-vision .box .header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 30px;
  }



  .our-vision .box h2 {
    position: relative;
  }

  .our-vision .box h2::before {
    position: absolute;
    content: "";
    right: -15px;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
    height: 40px;
    top: 60%;
    transform: translateY(-50%);
  }
.our-vision .box p {
    font-size: 18px;
    margin-top: 20px;
}
  /* CATEGORY PAGE */

  .categories-boxes {
    padding: 100px 50px;
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
  }





  .categories-boxes .category::before {
    position: absolute;
    content: "";
    width: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    background-color: var(--main-color);
    transition: 0.5s;
  }


  .natural-therapy .slider {
    padding: 0 50px;
  }

  .natural-therapy .about-intro .links {
    direction: rtl;
    flex-wrap: wrap;
  }

  .natural-therapy-content {
    padding: 100px 0;
  }

  .natural-therapy .text {
    direction: rtl;
    text-align: center;
  }

  .natural-therapy .text h1 {
    position: relative;
    color: var(--main-color);
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    font-size:28px;
  }

    .natural-therapy .text p {
        color: var(--text-color);
        font-size: 20px;
        margin: 0 0 0;
    }
  .natural-therapy .text h1::before {
    position: absolute;
    content: "";
    right: -15px;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
  }

  .natural-therapy .video {
    height: 600px;
    padding: 0 50px;
    margin: 50px 0;
  }


    .natural-therapy.natural-therapy .video img {
    height: 95%;
    width: 100%;
    object-fit: cover;
   }
  .natural-therapy .slider .item{
      height: 460px;
  }

  .natural-therapy .slider .item img{
      height: 100%;
      width: 100%;
  }
  .natural-therapy .slider .item video{
      height: 100%;
      width: 100%;
      background-color: black;
  }
  .natural-therapy .slider .owl-prev,
  .slider .owl-next,
  .products-page .slider .owl-prev,
  .products-page .slider .owl-next {
    background-color: #d9d9d9 !important;
    position: absolute !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px !important;
  }

  .natural-therapy .slider .owl-prev,
  .products-page .slider .owl-prev {
    top: 40%;
    right: -25px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .natural-therapy .slider .owl-next,
  .products-page .slider .owl-next {
      top: 40%;
      right: -25px;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .all-doctors .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 50px;
    color: var(--main-color);
    padding-bottom: 20px;
    padding-top: 0;
  }


  .all-doctors .header h1 {
    font-size: 32px;
  }

  .all-doctors .header .more {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    color: var(--main-color);
    gap: 20px;
  }



  .all-doctors.custom {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .all-doctors .doctors {
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 50px;
  }


  .all-doctors .doctors .doctor-box .text {
    padding: 20px;
    text-align: right;
    margin-top: 0;
  }

.all-doctors .doctors .doctor-box .text h3 {
    font-size: 18px;
    margin: 0 !important;
}
  .all-doctors .doctors .doctor-box .text p {
    font-size: 16px;
    color: var(--text-color);
    margin: 10px 0;
  }
.all-doctors .doctors .doctor-box .text .btn {
    width: 70%;
    height: 50px;
    display: flex;
    align-items: start;
    padding: 9px 0;
    justify-content: center;
    margin:20px auto 0;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}
  .form {
    margin: 100px 100px;
    padding: 50px;
    box-shadow: 0 0 30px ;
  }

  .form h1 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-gray);
    margin-bottom: 50px;
  }

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

  .form form input,
  .form form textarea,
  .form form select {
    border: none;
    outline: none;
    background-color: #f4f4f4;
    width: 100%;
    padding: 10px;
    border-radius: 1px;
    height: 45px;
    direction: rtl;
    border: 2px solid transparent;
  }

  .form form input:focus {
    border-color: var(--main-color);
    background-color: transparent;
  }

  .form form select option {
    padding: 10px;
    font-size: 17px;
  }

  .form form textarea {
    height: 200px;
  }

  .form form .input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .form form .input {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
    margin: 10px 0;
  }

  .form form input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .form form input[type="date"]::placeholder {
    color: transparent;
  }

  .form form label {
    margin: 10px 0;
    font-size: 16px;
    color: #1f1f1f;
    width: 100%;
  }

  .form form .btn {
    background-color: var(--main-color);
    color: #fff;
    width: 290px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
  }


.doctor-profile .about-doctor .doctor-card {
    display: flex;
    box-shadow: 0 0 30px #d9d7d7bf;
    height: auto;
    min-height: 370px;
    width: calc(65% - 10px);
    flex: 1;
}
  .doctor-profile .about-doctor .doctor-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover ;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info {
    padding: 20px;
    width: 65%;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info h3 {
    font-size: 24px;
    font-weight: 500;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info p {
    font-size: 18px;
    font-weight: normal;
    color: var(--text-color);
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info p.description {
    width: 90%;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info .rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 5px;
    font-size: 13px;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info .take-session {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 10px 0;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info .btns {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
  }

.doctor-profile .about-doctor .doctor-card .doctor-info .btns .btn {
    background-color: var(--main-color);
    color: #fff;
    width: 120px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border-radius: 0;
}
  .doctor-profile .about-doctor .doctor-card .doctor-info .btns .btn-rate {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
  }
  .doctor-profile .about-doctor .doctor-card .doctor-info .patient-number {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .doctor-profile .about-doctor .doctor-card .doctor-info .patient-number p {
    font-size: 14px;
    margin-left: 20px;
  }

  .doctor-profile .about-doctor .doctor-card .doctor-info .rating i {
    color: #ffcc47;
  }

.doctor-profile .about-doctor .doctore-qualifications {
    box-shadow: 0 0 30px #d9d7d7bf;
    padding: 20px;
    width: calc(35% - 10px);
    min-height: 370px;
    height: fit-content;
}
  .doctor-profile .about-doctor .doctore-qualifications h2 {
      font-size: 20px;
      font-weight: 500;
    /* margin:10px 0px; */
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .doctor-profile .about-doctor .doctore-qualifications ul {
    margin-bottom: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .doctor-profile .about-doctor .doctore-qualifications ul li {
    list-style-type: disc;
    margin-right: 20px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
  }

  .doctor-profile .doctor-slider {
    direction: ltr;
    padding: 50px 0;
  }

  .doctor-profile .doctor-slider h1 {
    text-align: center;
    color: var(--main-color);
    text-align: center;
    position: relative;
    width: 270px;
    margin: auto;
    margin-bottom: 50px;
  }

  .doctor-profile .doctor-slider h1::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
  }

  .doctor-profile .doctor-slider .user-feedback {
    box-shadow: 0 0 30px #d9d7d784;
    position: relative;
    padding: 50px;
    margin: 20px 0;
   
    border: 2px solid transparent;
    transition: 0.3s;
  }

  .doctor-profile .doctor-slider .user-feedback::before {
    position: absolute;
    content: ";;";
    color: var(--main-color);
    top: 10%;
    left: 10%;
    font-size: 38px;
    font-family: fantasy;
    transform: rotate(180deg);
  }

  .doctor-profile .doctor-slider .user-feedback::after {
    position: absolute;
    content: ";;";
    color: var(--main-color);
    bottom: 10%;
    right: 10%;
    font-size: 38px;
    font-family: fantasy;
  }

  .doctor-profile .doctor-slider .user-feedback:hover {
    border-color: var(--main-color);
  }

  .doctor-profile .doctor-slider .user-feedback p {
    font-size: 16px;
    text-align: center;
    color: var(--text-color);
  }

  .doctor-profile .doctor-slider .user-feedback .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
  }

  .doctor-profile .doctor-slider .user-feedback .rating i {
    color: #ffcc47;
    font-size: 14px;
  }

  .doctor-profile .doctor-slider .user-feedback h3 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color:#000;
  }

  .doctor-profile .doctor-slider .arows {
    position: absolute;
    bottom: auto;
    left: 50%;
    display: flex !important;
    flex-direction: row-reverse !important;
  }

  .doctor-profile .doctor-slider .swiper-wrapper {
    /* padding: 50px; */
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .doctor-profile .doctor-slider .arows .swiper-button-prev,
  .doctor-profile .doctor-slider .arows .swiper-button-next {
    transform: rotate(180deg);
    border: 1px solid var(--main-color);
    padding: 10px;
    color: var(--main-color);
    height: 30px;
    width: 30px;
    font-size: 14px !important;
  }

  .doctor-profile .doctor-slider .arows .swiper-button-prev::after,
  .doctor-profile .doctor-slider .arows .swiper-button-next::after {
    font-size: 12px;
  }

  .doctor-profile .doctor-slider .arows .swiper-button-prev {
    background-color: var(--main-color);
    color: #fff;
  }



  /* .user-rate.show {
    left: 0;
  } */

  #exampleModal-rate .modal.show .modal-dialog{
    --bs-modal-width: 500px !important;
  }

  #exampleModal-rate .modal-content{
    border-radius: 0;
  }

  .user-rate .box {
    background-color: #fff;
    padding: 20px;
    z-index: 99999999999 !important;
    opacity: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
  }

  .user-rate .box .close {
    position: absolute;
    top: 30px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }

  .user-rate .box h4 {
    font-size: 28px !important;
    color: var(--dark-gray);
  }

  .user-rate .box p {
    font-size: 24px;
    color: var(--text-color);
    margin-top: 20px;
  }

  .user-rate .box .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    margin: 10px 0;
    color: #ffcc47;
    gap: 5px;
  }

  .user-rate .box .rating i {
    cursor: pointer;
  }

  .user-rate .box .btn {
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
    width: 280px;
    font-size: 20px;
    font-weight: 400;
    margin: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 0;
  }

  .user-rate .box textarea {
    height: 100px;
    border: 1px solid #d2d2d2;
    padding: 10px;
    outline: none;
  }

  .user-take-session {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #00000047;
    z-index: 99999999999999999;
    left: -100%;
    transition: 0.4s;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .user-take-session.show {
    left: 0;
  }

  .user-take-session .form {
    background-color: #fff;
    padding: 20px 50px;
    margin: 0;
  }

  .user-take-session .form form input {
    height: 64px;
  }

  .user-take-session .form form label {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
  }

  .user-take-session .form form textarea {
    height: 100px;
    resize: none;
  }

  .user-take-session .form h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .user-take-session .form form .input {
    margin: 0;
  }

  .user-take-session .form form .btn {
    background-color: var(--main-color);
    color: #fff;
    width: 200px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    border-radius: unset;
  }

  .doctor-slider .form form{
    direction: rtl;
    margin: 20px 0;
  }
  .blug-container {
    margin: 50px 0;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .blug-container .blug {
    position: relative;
    width: calc(100% / 2 - 20px);
    height: 330px;
  }

  .blug-container .blug .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .blug-container .blug .img img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }

  .blug-container .blug .img:hover img {
    transform: scale(1.1) rotate(2deg);
  }

.blug-container .blug .text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #000000a8;
    left: 0;
    height: 130px;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    gap: 35px;
}

.blug-container .blug .text p {
    font-size: 20px;
    color: #fff;
    width: auto;
    margin: 0 !important;
}

  .blug-container .blug .text .blug-btn a {
    position: relative;
    color: #fff;
    border: 1px solid #fff;
    font-size: 17px;
    width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    transition: 0.3s;
  }

  .blug-container .blug .text .blug-btn:hover a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    transform: scale(0.9);
  }

  .blug-container .blug .text .blug-btn a i {

    padding-right: 20px;


  }

  .blug-news-section {
    height: 300px;
    background-position: center;
    background-size: cover;
    margin-top: 200px;
    margin-bottom: 50px;
    padding: 0 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blug-news-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000047;
  }

  .blug-news-section .img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .blug-news-section .img img {
    width: 100%;
    height: 100%;
  }

  .blug-news-section .blug-news-content {
    width: 800px;
    color: #fff;
    z-index: 999;
  }

  .blug-news-section .blug-news-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .blug-news-section .blug-news-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .blug-news-section .blug-news-content .input {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
    height: 60px;
  }

  .blug-news-section .blug-news-content input {
    border: none;
    outline: none;
    height: 100%;
    flex: 1;
    font-size: 20px;
    color: var(--text-color);
  }

  .blug-news-section .blug-news-content .btn {
    background-color: var(--main-color);
    color: #fff;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
    margin-bottom: 0;
  }

  .blug-details .blug-details-img {
    width: 100%;
    height: 600px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0 50px;
  }

  .blug-details .blug-details-img img {
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .blug-details-text {
    padding: 0 50px;
  }

  .blug-details-text .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.blug-details-text .header h1 {
    font-size: 24px;
    font-weight: 400;
}
  .blug-details-text .header .date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

.blug-details-text .header .date .text {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

  .blug-details-text .header .date .img img {
    width: 100%;
    height: 100%;
  }

  .blug-details-text p {
    font-size: 19px;
    font-weight: 400;
    color: var(--dark-gray);
    width: 85%;
    margin-top: 30px;
  }

  .blug-more-navigate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin: 50px 0;
    color: var(--main-color);
  }

  .blug-more-navigate h2 {
    font-size: 24px;
    font-weight: 500;
  }

  .blug-more-navigate a {
    display: block;
    cursor: pointer;
    position: relative;
    color: var(--main-color);
    margin-left: 0px;
    font-size: 17px;
  }

  .blug-more-navigate a i {

  padding-right: 5px;
  }

  .all-partners {
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 100px 0;
  }

  .all-partners .partner {
    width: calc(100% / 4 - 20px);
    box-shadow: 0 0 30px #d9d7d782;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 3px solid transparent;
  }

  .all-partners .partner:hover{
    border: 3px solid var(--main-color);
  }

  .all-partners .partner .img {
    width: 200px;
    height: 100px;
  }

  .all-partners .partner .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .all-branches {
    margin: 100px 0;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .all-branches .branche {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    border: 3px solid transparent;
    box-shadow: 0 0 30px #d9d7d7a1;
    width: calc(100% / 2 - 20px);
    transition: 0.3s;

  }

  .all-branches .branche:hover {
    border: 3px solid var(--main-color);
  }

  .all-branches .branche .img {
    height: 180px;
    width: 180px;
  }
  .all-branches .branche .text{
    flex:1;
  }
  .all-branches .branche .img img {
    height: 100%;
    width: 100%;
  }

  .all-branches .branche .text h2 {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .all-branches .branche .text p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
  }

  .all-branches .branche .map {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 5px;
    border: 1px solid var(--main-color);
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .all-branches .branche .map img {
    width: 80%;
    height: 100%;
    animation: rotateBack 1s forwards;
    transition: transform 1s ease;
  }

  .all-branches .branche .map img:hover {
    animation: rotate360 1s forwards;
  }

  .all-branches .branche .text p span {
    font-weight: 500;
    color: #000;
  }

  .reserve-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    padding: 0 50px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .reserve-contact .box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    box-shadow: 0 0 30px #d9d7d752;
    width: calc(100% / 3 - 20px);
    height: 200px;
    padding: 20px;
    transition: 0.3s;
    border: 3px solid transparent;

  }

  .reserve-contact .box:hover{
    border: 3px solid var(--main-color);

  }

  .reserve-contact .box h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .reserve-contact .box .img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .reserve-contact .box .img img {
    width: 30px;
    height: 30px;
  }

  .reserve-contact .box p  a{
    font-size: 20px;
    color: var(--text-color);
    font-weight: 300;
  }


  .reserve-contact .box p  a:hover{
    color: var(--main-color);
  }



  .login-page .content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 120vh;
  }
  .login-page.register .content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 220vh;
  }
  .login-page .content .right,
  .login-page .content .left {
    width: 50%;
    height: 100%;
  }

  .login-page .left img {
    width: 100%;
    height: 100%;
  }

  .login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px #d9d7d7a8;
    background-color: #fff;
    width: 800px;
    padding: 50px;
  }

  .login-form .header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--text-color);
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
  }

  .login-form .header .link {
    width: 150px;
    text-align: center;
    color: #828282;
    font-size: 24px;
    position: relative;
  }
  .login-form .header .link.active {
    color: #000;
  }

  .login-form .header .link.active::before {
    position: absolute;
    content: "";
    bottom: -11px;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: var(--main-color);
  }

  .login-form .input {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .login-form .input label {
    font-size: 20px;
    color: #1f1f1f;
    margin-top: 20px;
  }

  .login-form input {
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
    outline: none;
    height: 45px;
    font-size: 20px;
    padding: 10px;
    width: 100%;
  }

  .login-form input:focus {
    border-color: var(--main-color);
    background-color: transparent;
  }

  .login-form .forget-password a {
    display: block;
    margin-top: 20px;
    text-decoration: underline !important;
    color: #1f1f1f;
    font-size: 16px;
  }

  .login-form .btn {
    width: 250px;
    height: 64px;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.3s;
    border-radius: 0;
  }

  .login-form .social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 40px;
  }

  .login-form .social .icon {
    cursor: pointer;
    width: 45px;
    height: 45px;
  }

  .login-form .social .icon img {
    width: 100%;
    height: 100%;
  }

  .login-form .input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .login-form .input-container .input {
    width: 48%;
  }

  .login-form .agree {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .login-form .agree label {
    font-size: 17px;
    color: #1f1f1f;
    font-weight: 500;
  }
  s input[type="checkbox"] {
    background-color: var(--main-color) !important;
  }

  .login-form h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .login-form p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom: 20px;
  }

  .input-check-code {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 20px;
  }

  .input-check-code input {
    width: 50px;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .login-form .re-send-code {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;

  }

  .login-form .re-send-code span {
    color: var(--main-color);
    cursor: pointer;
    font-weight: 600;
  }
  .login-form .re-send-code span a{
    color: var(--main-color);
    text-decoration: underline !important;
  }

  .products-page .slider {
    direction: ltr;
    margin: 50px;
  }

  .products-page .slider .item {
    box-shadow: 0 0 10px #d9d7d7;
    height: auto;

  }
  .products-page .slider .item .img{
    height: 270px;

  }

  .products-page .slider .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

  }
  .products-page .slider .text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    padding: 18px;
    color: var(--dark-gray);
  }

  .products-page .owl-stage-outer {
    padding: 20px 0;
  }

  .products-page .slider h1 {
    text-align: right;
    color: var(--main-color);
    font-size: 27px;
    font-weight: 500;
    margin: 20px 0;
    margin-top: 100px;
  }

  .products-page .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    color: var(--main-color);
  }

  .products-page .header .sort{
    border: 1px solid var(--main-color);
    padding-left: 10px;
    cursor: pointer;
    transition: 0.3s;
  }

  .products-page .header .sort:hover{
    transform: scale(0.9);
  }

  .products-page .header .sort select {
    width: 120px;
    height: 50px;
    position: relative;
    border: none;
    padding: 0 20px;
    outline: none;
    color: var(--main-color);
    font-size: 17px;
    cursor: pointer;
  }

  .products-page .header h1 {
    font-size: 27px;
    font-weight: 500;
  }

  .products-page .all-products {
    padding: 0 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .products-page .all-products .product-component {
    width: calc(100% / 4 - 15px);
  }


  .products-page .all-products .product-component .text .link{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .products-page .all-products .product-component .text .link h3{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

  }

  .product-component {
    position: relative;
    box-shadow: 0 0 30px #d9d7d785;
    ;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
  }

  .product-component:hover{
    border: 1px solid var(--main-color);
  }

.product-component .icon {
    position: absolute;
    left: 15px;
    top: 15px;
}

  .product-component .icon i {
    cursor: pointer;
    color: #c9c9c9;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-component .icon i:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: rotate(360deg);
  }

.product-component .product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    margin: 0px 0 10px;
    width: 100%;
}
.product-component .product-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
  .product-component .text h3 {
    font-size: 16px;
    color: var(--dark-gray);
  }

  .product-component .rate {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #ffcc47;
    font-size: 12px;
    gap: 5px;
    margin: 10px 0;
  }

  .product-component .price {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
  }

  .product-component .cart-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    background-color: var(--main-color);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
  }

  .product-component .cart-icon:hover {
    transform: rotate(360deg);
  }

  .most-salled .btn {
    background-color: var(--main-color);
    width: 200px;
    color: #fff;
    padding:0px;
    margin: 50px auto;
    text-align: center;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    align-items: center;
    justify-content: center;

  }

  .most-salled .btn a{
    color: white;
    width: 100%;
    height: 100%;
    font-weight: 600;

  }

  .product-filter .filter-content {
    margin: 100px 0;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .product-filter .filters {
    width: 300px;
  }

  .product-filter .filtered-products {
    flex: 1;
  }

  .product-filter .filtered-products .all-products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-filter .filtered-products .all-products .product-component {
    width: calc(100% / 3 - 15px);
  }

  .product-filter .filtered-products .header,
  .product-filter .filters .header {
    background-color: #f5f5f5;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 5px;
    height: 60px;
  }

  .product-filter .filters .header {
    cursor: pointer;
    margin-bottom: 0;
  }

  .product-filter .filtered-products .header .select {
    background-color: #fff;
    width: auto;
    height: 40px;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 2px;
  }

  .product-filter .filtered-products .header .select select{
    padding: 5px 40px 5px 10px;
  }
  .product-filter .filtered-products .header .select select {
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
    height: 100%;
    font-size: 16px;
  }

  .product-filter .filtered-products .header p {
    font-size: 20px;
  }

  .product-filter .filters .filter {
    margin-bottom: 0px;
    box-shadow: 0 0 30px #d9d7d752;
  }

  .product-filter .filters .filter-body {
    padding: 20px;
    height: auto;
    overflow: hidden;
    transition: 0.3s;
  }

  .product-filter .filters .filter-body.show {
    height: 0;
    padding: 0;
  }

  .product-filter .filters .filter-body .filter-option {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    cursor: pointer;
    color: var(--dark-gray);
    font-size: 18px;
    margin: 15px;
  }

  
  .product-filter .filters .filter-body .filter-option label {
    cursor: pointer;
  }

  .product-filter .filters .filter-body .slider {
    background-color: #f5f5f5;
    height: 5px;
    border-radius: 5px;
    position: relative;
    margin-top: 20px;
  }

  .product-filter .filters .filter-body .slider .progress {
    background-color: var(--main-color);
    height: 5px;
    border-radius: 5px;
    position: absolute;
    left: 0%;
    right: 0%;
  }
  .product-filter .filters .filter-body .range-input {
    position: relative;
  }
  .product-filter .filters .filter-body .range-input input {
    position: absolute;
    height: 5px;
    top: -5px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    background: none;
  }

  .product-filter
    .filters
    .filter-body
    .range-input
    input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border: 5px solid var(--main-color);
    border-radius: 50%;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    background-color: #fff;
  }
  .product-filter .filters .filter-body .range-input .renage-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 16px;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
  }

  .pagination .item {
    width: 50px;
    height: 50px;
    border: 1px solid #ababab;
    color: #ababab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3;
    background-color: #fff;
  }

  .pagination .item:hover {
    color: #fff;
    border-color: var(--main-color) !important;
    background-color: var(--main-color) !important;
  }

  .pagination .item.active {
    color: #fff !important;
    border-color: var(--main-color) !important;
    background-color: var(--main-color) !important;
  }
  .pagination .item.arrow {
    color: var(--main-color);
    border-color: var(--main-color);
  }

  .pagination .item.arrow:hover {
    color: #fff !important;
  }

  .product-details-page .product-details {
    margin: 100px 0;
    padding: 0 50px;
    display: flex;
    align-items: top;
    justify-content: space-between;
    gap: 30px;
  }
.product-details-page .product-details .product-text {
    flex: 1;
    width: calc(60% - 30px);
}
  .product-details-page .product-details .product-container .img {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff92335c;
  }

  .product-img {
    width: 200px;
    height: 200px;
  }

.product-details-page .product-details .product-container .images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.product-details-page .product-details .product-container .images .img {
    width: calc(100% / 3 - 7px);
    height: 140px;
    cursor: pointer;
    transition: 0.3s;
    overflow: hidden;
}
  .product-details-page .product-details .product-container .images .img:hover {
    border: 1px solid var(--main-color);
  }

  .product-details-page
    .product-details
    .product-container
    .images
    .img:hover
    img {
    transform: scale(1.2) rotate(2deg);
  }

  .product-details-page .product-details .product-container .images .img img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }

  .product-details-page .product-details .product-text .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-details-page .product-details .product-text .header .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .product-details-page .product-details .product-text .header .icons .icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--main-color);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
  }

  .product-details-page
    .product-details
    .product-text
    .header
    .icons
    .icon:hover {
    background-color: var(--main-color);
    color: #fff;
  }

  .product-details-page .product-details .product-text .header h2 {
    font-size: 24px;
    color: var(--dark-gray);
    font-weight: 500;
  }

.product-details-page .product-details .product-text .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: start;
    font-size: 19px;
    color: #ffcc47;
    margin: 20px 0;
}
  .product-details-page .product-details .product-text .price p {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .product-details-page .product-details .product-text .description p {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 400;
    margin: 10px 0;
  }

  .product-details-page .product-details .product-text .product-sell {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 50px;
    margin-top: 20px;
  }

  .product-details-page .product-details .product-text .product-sell .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

.product-details-page .product-details .product-text .product-sell .counter input {
    width: 45px;
    border: none;
    text-align: center;
    box-sizing: content-box;
    outline: 0;
}

.product-details-page .product-details .product-text .product-sell .counter button {
    border: none;
    background-color: #F8F8F8;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #444444;
    font-size: 37px;
    line-height: 0;
    padding: 0 0 6px;
}

  .product-details-page .product-details .product-text .product-sell .counter p {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark-gray);
    background-color: #c9c6c6;
    transition: 0.3s;
  }

  .product-details-page
    .product-details
    .product-text
    .product-sell
    .counter
    p:hover {
    background-color: var(--main-color);
    color: #fff;
  }

  .product-details-page .product-details .product-text .product-sell .btn {
    background-color: var(--main-color);
    cursor: pointer;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
  }

  .product-details-page .results {
    padding: 0 5%;
  }

  .product-details-page .results .links {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e3e3e3;
    margin-bottom: 20px;
  }

  .product-details-page .results .links .link {
    font-size: 20px;
    color: #899097;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
  }

  .product-details-page .results .rating-result {
    display: none;
  }

  .product-details-page .results .rating-result.block {
    display: block;
  }

  .product-details-page .results .rating-result .rating-result-box {
    border: 1px solid #d7d7d7;
    padding: 20px;
    margin: 20px 0;
  }

  .product-details-page .results .rating-result .rating-result-box .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-details-page .results .rating-result .rating-result-box .header .name {
    font-size: 22px;
    color: #383838;
  }

  .product-details-page .results .rating-result .rating-result-box .stars {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 5px;
    margin: 3px  0;
  }

  .product-details-page .results .rating-result .rating-result-box p {
    font-size: 16px;
    color: #899097;
  }

  .product-details-page .results .rating-result .rating-result-box .header .date {
    font-size: 16px;
    color: var(--dark-gray);
  }

  .product-details-page .give-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }

.product-details-page .give-comment .give-rate {
    font-size: 12px;
    gap: 5px;
    background-color: #f4f4f4;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .product-details-page .give-comment input {
    flex: 1;
    height: 60px;
    border: none;
    outline: none;
    background-color: #f4f4f4;
    padding: 10px;
    font-size: 16px;
  }

  .product-details-page .give-comment input[type= 'radio'] {
    opacity:0 ;
    position: absolute;
    z-index: -1;
  }

  .product-details-page .give-comment .give-rate i {
    cursor: pointer;
    color: #e0e0e0;
    font-size: 18px;
  }


  .product-details-page .give-comment .give-rate i.active{
    color: #ffc107 !important;
  }

  .product-details-page .give-comment .btn {
    cursor: pointer;
    background-color: var(--main-color);
    width: 300px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
  }

  .product-details-page .results .links .link:hover {
    color: var(--dark-gray);
  }

  .product-details-page .results .links .link.active {
    color: var(--dark-gray) !important;
  }

  .product-details-page .results .links .link.active::before {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    bottom: -23px;
  }

  .product-details-page .results .text-result {
    display: none;
  }

  .product-details-page .results .text-result.block {
    display: block;
  }

  .product-details-page .results .text-result p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-top: 10px;
  }

  .product-details-page .related-products {
    margin: 80px 0;
    padding: 0 5%;
  }

  .product-details-page .related-products .related-products-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

.product-details-page .related-products h1 {
    color: var(--main-color);
    font-size: 27px;
    margin-bottom: 30px;
}
  .product-details-page
    .related-products
    .related-products-container
    .product-component {
    width: calc(100% / 4 - 15px);
  }

  .cart-page .cart-progress {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .cart-page .cart-progress .progress__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cart-page .cart-progress .progress__item.active span {
    border: 2px solid var(--main-color);
  }

  .cart-page .cart-progress .progress__item.active p {
    color: var(--main-color);
  }

  .cart-page .cart-progress .progress__item span {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a5a5a5;
  }

  .cart-page .cart-progress .progress__item p {
    font-size: 20px;
    color: #a5a5a5;
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
  }

  .cart-page .cart-progress .line {
    width: 130px;
    height: 1px;
    background-color: #a5a5a5;
    margin-top: 20px;
  }

  .cart-page .cart-progress .line.active{
    background-color: var(--main-color);
  }

  .cart-page .cart-container {
    display: flex;
    justify-content: center;
    padding: 0 50px;
    margin-top: 50px;
    gap: 20px;
    margin-bottom: 50px;
    
  }

  .cart-page .cart-container .cart-list {
    flex: 1;
    box-shadow: 0 0 30px #aca8a852;
    padding: 20px;
  }

  .cart-page .cart-container .cart-list::-webkit-scrollbar{
    height: 3px;
  }
  .cart-page .cart-container .cart-list::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
  }

  .cart-page .cart-container .cart-list .header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
    min-width: 630px;
  }

  .cart-page .cart-container .cart-list .header p {
    font-size: 22px;
  }

  .cart-page .cart-container .cart-list .header .product-price,
  .cart-page .cart-container .cart-list .header .product-amount,
  .cart-page .cart-container .cart-list .header .salary {
    width: 100px;
    text-align: center;
    font-weight: 600;
   }

   .cart-page .cart-container .cart-list .header .product-amount{
    text-align: center;
   }

  .cart-page .cart-container .cart-list .header .product-name {
    flex: 1;
  }

  .cart-page .cart-container .cart-list .item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
    padding-top: 20px;
    min-width: 630px;
  }

  .cart-page .cart-container .cart-list .item .product-price,
  .cart-page .cart-container .cart-list .item .product-amount,
  .cart-page .cart-container .cart-list .item .salary {
    width: 100px;
    display: flex;
    font-size: 18px;
    color: var(--dark-gray);
    text-align: center;
  }


  .cart-page .cart-container .cart-list .item .product-price div,
  .cart-page .cart-container .cart-list .item .product-amount div,
  .cart-page .cart-container .cart-list .item .salary div{
    width: 100%;
  }

  .cart-page .cart-container .cart-list .item .salary {
    color: var(--main-color);
    text-align: center;
  }

  .cart-page .cart-container .cart-list .item .product-amount p {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 13px;
    background: #ede9e9;
    border-radius: 50%;
    font-size: 22px;
    text-align: center;
  }

  .cart-page .cart-container .cart-list .item .product-amount{
    gap: 10px;
    margin-top: 20px;
  }

  .cart-page .cart-container .cart-list .item .product-amount span{
    width: 20px;
    text-align: center;
  }

  .cart-page .cart-container .cart-list .item .product {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .cart-page .cart-container .cart-list .item .product .remove {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 13px;
    background: #ede9e9;
    border-radius: 50%;
  }

  .cart-page .cart-container .cart-list .item .product .img {
    width: 50px;
    height: 50px;
  }

  .cart-page .cart-container .cart-list .item .product .img img {
    width: 100%;
    height: 100%;
  }

  .cart-page .cart-container .cart-list .item .product p {
    font-size: 18px;
    color: var(--dark-gray);
  }

  .cart-page .cart-container .delever-form{
    flex: 1;
    background-color: #fff;
    box-shadow: 0 0 30px #d9d7d752;
    padding: 50px;
  }

  .cart-page .cart-container .delever-form .input{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
  }

  .cart-page .cart-container .delever-form .input .add-adress{
    color: var(--main-color);
    position: absolute;
    left: 0;
    text-decoration: underline;
    cursor: pointer;
  }


  .cart-page .cart-container .delever-form .input input,
  .cart-page .cart-container .delever-form .input select
  {
    border: none;
    outline: none;
    height: 45px;
    background-color: #F4F4F4;
    padding: 0 20px;
  }

  .cart-page .cart-container .delever-form .input label{
    color: #1F1F1F;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .cart-page .cart-container .delever-form .main-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 200px;
    margin: auto;
  }

  .cart-page .cart-container .delever-form .main-btn a{
    color: #fff
  }

  .cart-page .cart-container .delever-form .main-btn:hover a{
    color: var(--main-color);
  }

  .cart-page .cart-container .cart-checkout {
    background-color: #f8f8f8;
    width: 400px;
    padding: 20px;
  }

  .cart-page .cart-container .cart-checkout h3{
    font-size: 22px;
    font-weight: 400;
  }

  .cart-page .cart-container .cart-checkout .price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    color: var(--dark-gray);
  }

  .cart-page .cart-container .cart-checkout .price h4{
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 500;
  }

  .cart-page .cart-container .cart-checkout .discount{
    display: flex;
    align-items: center;
    background-color: #fff;
    height: 65px;
    padding: 10px;
  }

  .cart-page .cart-container .cart-checkout .discount .btn-discount{
    background-color: var(--main-color);
    color: #fff;
    height: 100%;
    width: 120px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
  }

  .cart-page .cart-container .cart-checkout .discount .btn-discount:hover{
    transform: scale(0.9);
  }

  .cart-page .cart-container .cart-checkout .discount input{
    flex: 1;
    border: none;
    outline: none;
    height: 100%;
    width: 240px;
   }

  .cart-page .cart-container .cart-checkout .discount-value{
    margin-top: 40px;
    border-top: 1px solid #bdb9b9;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: var(--dark-gray);
  }

  .cart-page .cart-container .cart-checkout .main-value{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    color: var(--dark-gray);
  }

  .cart-page .cart-container .cart-checkout .cart-btn{
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    transition: 0.3s;
  }

  .cart-page .cart-container .cart-checkout .cart-btn a{
    color: #fff !important;
  }

  .cart-page .cart-container .cart-checkout .cart-btn:hover{
     transform: scale(0.9);
  }

  .cart-page .cart-container .cart-checkout .products-cart{
    border-top: 2px solid #f1f1f1;
    margin-top: 20px;
   padding-top: 20px;
  }

  .cart-page .cart-container .cart-checkout .products-cart p{
    font-size: 18px;
    color: var(--dark-gray);
  }

  .cart-page .cart-container .cart-checkout .cart-product .product{
    display: flex;
    align-items: end;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    margin: 10px 0;
  }

  .cart-page .cart-container .cart-checkout .cart-product .product .img{
    width: 35px;
    height: 35px;
  }


  .cart-page .cart-container .cart-checkout .cart-product .product img{
    width: 100%;
    height: 100%;
  }

  .cart-page .cart-container .cart-checkout .cart-product .product .product-info{
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cart-page .cart-container .cart-checkout .cart-product .product p{
    margin: 0;
    margin-bottom: 2px;
    font-size: 16px;
  }

  .empty-cart{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .empty-cart .empty-cart-content{
    width: 600px;
    height: 350px;
    box-shadow: 0 0 30px #d9d7d752;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .empty-cart .empty-cart-content p {
    font-size: 16px;
    color: var(--dark-gray);
  }

  .empty-cart .empty-cart-content .img{
    width: 80px;
    height: 80px;
  }

  .empty-cart .empty-cart-content .img img{
    width: 100%;
    height: 100%;
  }
  .empty-cart .empty-cart-content .main-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
  }

  .empty-cart .empty-cart-content .main-btn:hover a{
    color: var(--main-color);
  }

  .empty-cart .empty-cart-content .main-btn a,
  .most-salled .btn a{
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    align-content: center;
    padding: 10px;
  }
 

  .all-devices .header{
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -75px;
    margin-top: 50px;
  }

  .all-devices .header h1{
    color: var(--main-color);
    font-size: 32px;
  }

  .all-devices .header a{
    display: flex;
    color: var(--main-color);
    cursor: pointer;
    gap: 10px;
  }

  .device-page{
    padding-top: 0;
  }

  .device-description{
    padding: 0 50px;
    margin-top: 50px;
  }

  .device-description .header{
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 3px solid #edecec;
  }

  .device-description .header p{
    cursor: pointer;
    font-size: 20px;
    color: #899097;
    transition: 0.3s;
    position: relative;
  }

  .device-description .header p.active{
    color: #000 !important;
   }

   .device-description .header p.active::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    bottom: -19px;
   }

  .device-description .header p:hover{
    color: #000;
  }

  .device-description .description-text{
    margin-top: 20px;
  }

  .device-description .description-text{
    display: none;
  }

  .device-description .description-text.block{
    display: block;
  }

  .device-description .description-text p{
    font-size: 18px;
    color: var(--dark-gray);
  }

  .device-description .description-text p span{
    color: #000;
    font-weight: 500;
  }

  .device-description .description-text ul {
    display: flex;
    flex-direction: column;
    list-style-type: disc;
    align-items: start;
    gap: 10px;
    margin-right: 30px;
  }


  button:focus{
    outline: none !important;
  }

  .btn{
    display: flex !important;
  }

  .payment-card-page{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000073;
  }


  /* .payment-card {
    background-color: #fff;
    padding: 20px;
  }

  .payment-card .payment-ways{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .payment-card .payment-ways .img{
    cursor: pointer;

  } */




  /* hom-care page */
  .reserve .form {
    box-shadow: 0 0 30px #d9d7d7;
    padding: 0;
    margin: 50px 150px;
    border-radius: 5px;
    padding: 50px;
  }

  .reserve .form form label {
    width: 100%;
  }

  .form {
    margin: 100px 100px;
    padding: 50px;
    box-shadow: 0 0 30px #d9d7d7;
  }

  .form h1 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-gray);
    margin-bottom: 50px;
  }

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

  .form form input,
  .form form textarea,
  .form form select {
    border: none;
    outline: none;
    background-color: #f4f4f4;
    width: 100%;
    padding: 10px;
    border-radius: 1px;
    height: 64px;
    direction: rtl;
    border: 2px solid transparent;
  }

  .form form input:focus {
    border-color: var(--main-color);
    background-color: transparent;
  }

  .form form select option {
    padding: 10px;
    font-size: 17px;
  }

  .form form textarea {
    height: 200px;
  }

  .form form .input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .form form .input {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
    margin: 10px 0;
  }

  .form form input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .form form input[type="date"]::placeholder {
    color: transparent;
  }

  .form form label {
    margin: 10px 0;
    font-size: 20px;
    color: #1f1f1f;
    width: 100%;
  }


  .form form .btn {
    background-color: var(--main-color);
    color: #fff;
    width: 290px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    transition: .4s;
    border-radius: 0;
  }

  /* end home care */



  .user-take-session-offer{
    position: fixed;
    top: 0;
    z-index: 9999999;
    background-color: #00000047;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    overflow-y: scroll;
  }

  .user-take-session-offer.show{
    left: 0;
  }

  .user-take-session-offer::-webkit-scrollbar{
    width: 5px;
  }

  .user-take-session-offer .form{
    box-shadow: none !important;
  }

  .user-take-session-offer.show .close{
    cursor: pointer;
      position: relative;
      top: 200px;
      right: 100px;
      background: #999;
      width: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 26px;
      padding-bottom: 6px;
  }

  .user-take-session-complete .img-offer{
    width: 200px;
    height: 200px;
  }

  .user-take-session-complete .img-offer img{
    width: 100%;
    height: 100%;
  }
  .reservation-completed {
    position: fixed;
    top: 0;
    z-index: 9999999;
    background-color: #00000047;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    overflow-y: scroll;
    left: -100%;
  }

  .reservation-completed.show{
    left: 0;
  }

  .reservation-completed .form{
    box-shadow: none;
  }

  .reservation-completed .close{
    position: relative;
    position: relative;
    top: 68px;
    right: 170px;
    background: #999;
    border-radius: 50%;
    width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
    cursor: pointer;
  }

  .preferred-products-container{
    width: 100%;
    box-shadow: 0 0 30px #d9d7d7;
    padding: 20px;
   padding-top: 30px;
   border-radius: 5px;
   }

  .preferred-products-container .preferred-product{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    border-bottom: 1px solid #dddcdc;
   }

   .preferred-products-container .preferred-product .product-price{
    flex: 1;
    text-align: right;
   }

  .preferred-products-container .preferred-product .product{
      display: flex;
      align-items: center;
      gap: 20px;
      color: var(--dark-gray);
      flex: 1;

  }

  .preferred-products-container .preferred-product .product .delete{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #d3d3d3;
    cursor: pointer;
  }

  .preferred-products-container .preferred-product .product .delete a{
    color: black !important;
  }

  .preferred-products-container .preferred-product .img{
     width: 50px;
     height: 50px;
  }

  .preferred-products-container .preferred-product .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .preferred-products-container .preferred-product .icons{
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .preferred-products-container .preferred-product .icons .icon{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }

  .preferred-products-container .preferred-product .icons .icon:hover {
    transform: rotate(360deg);
  }

  .preferred-products-container .preferred-product  .price{
    font-size: 18px;
    color: var(--dark-gray);
  }

  .delete-account-form{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000047 ;
    top: 0;
    left: -100% ;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.3s;
  }

  .delete-account-form.show{
    left: 0;
  }

  .delete-card{
    background-color: #fff ;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    position: relative;
    padding: 0 20px 20px;
  }

  #logOutModal,
  #addAddressModal,
  #addNewAddress{
    --bs-modal-width: 700px !important;
    
  }
  
  #editPasswordModal{
    --bs-modal-width: 600px !important;
  }

  #editPersonalInfoModal{
    --bs-modal-width: 900px !important;
  }
  
  #logOutModal .modal-content,
  #addAddressModal .modal-content,
  #editPasswordModal .modal-content,
  #editPersonalInfoModal .modal-content,
  #addNewAddress .modal-content
  {
    
    border-radius: 0;
  }

  #logOutModal .modal-content a{
    color : white !important;
    width: 100%;
    height: 100%;
    align-content: center;
    text-align: center;

  }

  #logOutModal .modal-header,
  #editPasswordModal .modal-header,
  #editPersonalInfoModal  .modal-header,
  #addAddressModal .modal-header,
  #addNewAddress .modal-content .modal-header
  {
    padding-top: 40px;
    padding-right: 40px;
  }
  #logOutModal .modal-body{
    padding-top: 0px;
   
  }

  #addNewAddress .modal-body .form{
    
    margin: 0;
    padding: 0;
    box-shadow: none;
  }

  #editPasswordModal .modal-body input,
  #editPersonalInfoModal .modal-body input,
  #addAddressModal .modal-body input,
  #addNewAddress .modal-body input{
    height: 64px;
    background-color: #F4F4F4;
    border: none;
    border-radius: 0px;
  }

  #addAddressModal .modal-body select
  #addNewAddress .modal-body .input select{
    height: 64px;
    background-color: #F4F4F4;
  }

  #editPasswordModal .modal-body button,
  #editPersonalInfoModal .modal-body button,
  #addAddressModal .modal-body button
  { 
    height: 64px;
    width: 250px;
    font-weight: 500;
  }

  #editPersonalInfoModal .modal-body button{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: 30px auto ;
  }
  #addNewAddress .modal-body button{
    border: var(--main-color);
  }

  .pass-edit{
    position: relative;
  }

  .pass-edit i{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%); 
  }


  .delete-card .close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: #F1F1F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
  }

  .delete-card .close-btn p{
    font-size: 15px;
  }

  .delete-card .img{
    width: 120px;
    height: 120px;
  }

  .delete-card .img img{
    width: 100%;
    height: 100%;
  }

  .delete-card p{
    font-size: 24px;
    color: var(--dark-gray);
  }

  .delete-card .input{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    margin-top: -30px;
   }

   .delete-card .input label{
     font-size: 20px;
     color: #1F1F1F;
   }

  .delete-card .input input{
    width: 100%;
    border: none;
    outline: none;
    background-color: #F4F4F4;
    border: 1px solid #F4F4F4;
    height: 50px;
  }

  .delete-card .input input:focus{
    border: 1px solid var(--main-color);
  }

  .delete-card p.add-location-p{
    font-size: 24px;
    color: var(--dark-gray);
    margin-top: -45px;
    font-weight: 500;
  }

  .delete-card .delete-btns-container{
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .delete-card .delete-btns-container .delete-btn{
    width: 200px;
    height: 60px;
    cursor: pointer;
    transition: 0.3s;
    background-color: var(--main-color);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
  }

  .delete-card .delete-btns-container .delete-btn:nth-child(2){
    background-color: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
  }

  .delete-card .delete-btns-container .delete-btn:hover{
    transform: scale(0.9);
    
  }

  .titles-section{
    box-shadow: 0 0 30px #d9d7d752;
    width: 100%;
    padding: 50px 20px;
  }

  .titles-section .titles-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .titles-section .titles-header h4{
    font-size: 20px;
  }

  .titles-section .titles-header .add-title{
    color: var(--main-color);
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
  }

  .titles-section .title-card {
    position: relative;
    background-color: #FAFAFA;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
  }

  .titles-section .title-card .delete-title {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d6d5d5;
    font-size: 14px;
    
   }


   .titles-section .title-card .delete-title a{
    color: black;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
   }
  .titles-section .title-card .delete-title p{
    font-size: 13px;
  }

  .titles-section .title-card .title-card-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }


  .titles-section .title-card .title-card-header h3{
    font-size: 20px;
  }

  .titles-section .title-card .title-card-header .edite-title{
    border: 1px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    width: 100px;
    cursor: pointer;
    border-radius: 30px;
    color: var(--main-color);
    padding: 5px;
    gap: 5px;
    transition: 0.3s;
  }

  .titles-section .title-card .title-card-header .edite-title:hover{
    transform: scale(0.9);
  }

  .titles-section .title-card .title-card-header .edite-title p{
    margin: 0 !important;
    font-size: 14px;
   }

   .titles-section .title-card .title-card-body{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
   }

   .titles-section .title-card .title-description{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 16px;
    flex-direction: column;
    color: var(--dark-gray);

   }

   .titles-section .title-card  .title-city{
    display: flex;
    align-items: start;
    justify-content: space-between;
    color: var(--dark-gray);
    font-size: 16px;
    margin-top: 30px;
    flex-direction: column;
   }


   .titles-section .title-card .title-description p:first-child,
   .titles-section .title-card  .title-city p:first-child{
    color: #899097;
    font-size: 18;
    font-weight: 600;

   }

   .orders-section {
     box-shadow: 0 0 30px #d9d7d752;
    width: 100%;
    padding: 50px 20px;
    border-radius: 5px;
   }

   .orders-section .orders-section-head {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 350px;
    background-color: #FAFAFA;
    padding: 10px;
   }

   .orders-section .orders-section-head .order-btn{
    cursor: pointer;
    width: 50%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
   }

   .orders-section .orders-section-head .order-btn:hover{
    transform: scale(0.9);
   }

   .orders-section .orders-section-head .order-btn.active{
    background-color: #fff;
   }

   .orders-section .user-orders{
    background-color: #FAFAFA;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-radius: 5px;
   }

   .orders-section .user-orders .order{
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
   }

   .orders-section .user-orders .order .img{
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   }

   .orders-section .user-orders .order .img img{
    width: 50px;
    height: 50px;
   }

   .orders-section .user-orders .order h4{
    font-size: 16px;
    color: var(--dark-gray);
   }

   .orders-section .user-orders .order p{
    color: var(--main-color);
   }

   .orders-section .user-orders .user-checkout{
    flex: 1;
    border-right: 1px solid #CECECE;
    padding: 20px;
    padding-right: 50px;
   }

   .orders-section .user-orders .user-checkout .user-checkout-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
   }

   .orders-section .user-orders .user-checkout .user-checkout-info h3{
      font-size: 16px;
      font-weight: bold;
      margin: 20px 0;
   }

   .orders-section .user-orders .user-checkout .user-checkout-info p{
    font-size: 16px;
    color: var(--dark-gray);
   }



  .aside-nav{
     background-color: #FAFAFA !important;
     padding-top: 20px;
   }

   .branche-map-contact{
    display: flex;
    gap: 50px;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 0 50px;
    justify-content: space-between;
   }

   .branche-map-contact .info-section{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-top: 10px;
   }

   .branche-map-contact .info-section .img{
    margin: 0 15px;
   }

   .branche-map-contact .info-section p{
    margin-bottom: 10px;
    font-weight: bold;
   }

   .branche-map-contact .info-section a{
    color: #5F5F5F;
    transition: 0.3s;
   }

   .branche-map-contact .info-section a:hover{
    font-weight: bold;
    color: var(--main-color);
   }

   .branche-map-contact .branche-contact-info .info{
    box-shadow: 0 0 30px #d9d7d752;
    padding-bottom: 10px;
   }

  .branche-map-contact .hour-work{
     box-shadow: 0 0 30px #d9d7d752;
     margin-top: 20px;
    padding: 20px;
   }

   .branche-map-contact .hour-work p{
    color: #5F5F5F;
    width: 400px;
   }
   .branche-map-contact .hour-work p span{
    color: #000;
    font-weight: bold;
   }

   .branche-map-contact .branch-map{
    flex: 1;
    box-shadow: 0 0 30px #d9d7d752;
    }

   .branche-map-contact .branch-map iframe{
    width: 100%;
    height: 100%;
   }


  .order-user-section{
    display: none;
  }

  .order-user-section.show{
    display: block;
  }

  .product-filter .filters .filter-body .filter-option.active {
    color: black !important;
  }
  .product-filter .filters .filter-body .filter-option.active input{
    display: none;
  }
  .product-filter .filters .filter-body .filter-option.active input:checked ~ label{
    color: var(--main-color);
  }

  .dates-container-toggle{
    display: none;
  }

  .dates-container-toggle.show{
    display: block;
    position: relative;
  }

  .dates-container-toggle.show .border-circle{
    position: absolute;
    width: 3px; /* Adjust the width as needed */
    height: 111%; /* Adjust the height as needed */
    background-color: orange;
    margin: 0px auto;
    top: 0;
    right: 0;
  }
  .dates-container-toggle .border-circle::after{
    content: '';
    position: absolute;
    right: -6px;
   
    width: 15px;
    height: 15px;
    background-color: white;
    border: 3px solid orange;
    border-radius: 50%;
  }

  .dates-container-toggle.dates-my-account .col-12:last-child .border-circle:before{
    content: '';
    position: absolute;
    right: -6px;
   
    width: 15px;
    height: 15px;
    background-color: white;
    border: 3px solid orange;
    border-radius: 50%;
    bottom: 0;
  }

  .dates-container-toggle.show .border-circle::after{
    top: 0;
  }

  /* .dates-container-toggle.show .border-circle::before{
    bottom: 0;
  } */


  .dates-container-toggle.show .border-circle .circle-midle{
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: white;
    border: 3px solid orange;
    border-radius: 50%;
  }
  

  .user-take-session .form{
    box-shadow: none;
    border-radius: 5px;
  }
.delete-card.address form{
    width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px
}
.delete-card.address .input {
    margin-top: 5px !important;
    margin-bottom: 5px;
}
.delete-card.address .input select{
    height: 64px;
    background-color: #F4F4F4;
    border-radius: 0;
}
.delete-card.address .input input{
    border:1px solid #ccc;
    border-radius: 4px;
}
.delete-card.address .delete-btn{
    margin-top: 30px ;
}

.add__title__delever {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: -120%;
    background-color: #99999978;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 999;
  }

  .add__title__delever.active{
    left: 0;
  }

  .add__title__delever .form__addTitle{
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    position: relative;
    width: 700px;
  }

  .add__title__delever .form__addTitle .close{
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #99999978;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  .add__title__delever .form__addTitle .img{
    width: 120px;
    height: 120px;
    margin: auto;
  }

  .add__title__delever .form__addTitle .img img{
    width: 100%;
    height: 100%;
  }


  .add__title__delever .form__addTitle .input{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }

  .add__title__delever .form__addTitle .input label{
    margin-bottom: 10px;
    font-size: 22px;
  }

  .add__title__delever .form__addTitle .input input{
    height: 45px;
    border:  1px solid #f4f4f4;
    border-radius: 5px;
    background-color: #f4f4f4;
    outline: none;
    padding: 20px;
  }

  .add__title__delever .form__addTitle .input input:focus{
    background-color: transparent;
    border-color: var(--main-color);
  }

   .add__title__delever .confirm__btn{
    background-color: var(--main-color);
     border-radius: 5px;
     cursor: pointer;
     color: #fff;
     transition: 0.3s;
     margin: 20px auto;
     text-align: center;
     width: 200px;
     padding: 10px;
   }

   .add__title__delever .confirm__btn:hover{
    transform: scale(0.9);
   }

   .rating input[type="radio"]{
    display: none;
   }

   .offers-booking-form{
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 50px !important;
    margin-bottom: 50px  !important;
  }

  .offers-booking-form .contact-form{
    height: 100vh;
  }

  .offers-booking-form .contact-form .close{
    top: 50px;
    right: 50px;
    display: block;
    text-align: center;

  }

  textarea{
    resize: none;
  }

  .login-form input {
    height: 64px;
}

.all-doctors .doctors .doctor-box .text p{
  display: -webkit-box;               /* Display as a WebKit box */
  -webkit-line-clamp: 2;              /* Limit text to 2 lines in WebKit browsers */
  -webkit-box-orient: vertical;       /* Set box orientation to vertical */
  overflow: hidden;                   /* Hide any overflowing content */
  text-overflow: ellipsis;            /* Show ellipsis (...) when truncated */                /* Ensure it fits within the container */
  display: -moz-box;                  /* Fallback for Firefox */
  -moz-box-orient: vertical;          /* Orientation for Firefox */
  line-clamp: 2;
}

.time-box {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: white;
    display: none;
    position: absolute;
    z-index: 1000;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-box div {
    padding: 8px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    cursor: pointer;
    flex: 1 0 30%;
    text-align: center;
    box-sizing: border-box;
}

.time-box div:hover {
    background-color: #f0f0f0;
}

.offers-page .offer-card .btn-container a{
  align-content: center;
  text-align: center;
  font-size: 18px;
  color: var(--main-color) !important;
  background-color: white;
  border: 1px solid var(--main-color) !important;
}

.offers-page .offer-card .btn-container a:hover{
  color:white !important;
  background-color: var(--main-color);
  transform: scale(.9);
}


.main-btn.booking-offer-btn{
  font-size: 20px !important;
}

.modal-dialog.modal-lg .form{
  margin: 0 !important;
  box-shadow: unset !important;
}

.modal-dialog.modal-lg .modal-body{
  padding: 0 !important;
}

.modal-dialog.modal-lg .modal-header{
  border-bottom: unset;
}


.doctor-booking .flatpickr-calendar.animate.open{
 
  left: 0 !important;
  top: auto !important;
  width: 100%;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px; /* Adjust this value to move pagination up/down */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.doctor-profile .doctor-slider .owl-nav{
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-profile .doctor-slider .owl-nav button {
  border: 2px solid var(--main-color);
  color : var(--main-color);
  width: 35px;
  height:35px;
  display:flex;
  align-items: center;
  justify-content: center;
  margin:  0 4px; 
  
}
.doctor-profile .doctor-slider .owl-nav button span{
  font-size: 50px;
  padding-bottom: 10px;

}

.owl-rate .center .item .user-feedback{
  border: 2px solid var(--main-color);
  margin: 20px 0 
}

.owl-rate .owl-stage{
  display: flex;
 
}

.owl-rate .owl-item .item{
 margin: 0 10px
}

    input[type="date"]::-webkit-calendar-picker-indicator {
            display: none;
        }
       
/*  */

/* Base styling for the container */
.agree {
  display: flex;
  align-items: center; /* Align checkbox and label vertically */
}

/* Hide the default checkbox */
#agree {
  appearance: none; /* Hide the checkbox */
  -webkit-appearance: none; /* For Safari */
  background-color: white; /* Orange background color */
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 8px; /* Space between checkbox and label */
  border: 2px solid var(--main-color); /* Optional: white border around the checkbox */
  position: relative;
  overflow: hidden;
}

/* Custom checkmark using a pseudo-element */
#agree:checked::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free"; /* Font Awesome font family */
  font-weight: 600;
  color: white;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 14px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

#agree:checked{
  background-color: var(--main-color);
}

/* Styling error message */
.text-danger {
  color: #ff0000;
  margin-left: 10px;
}

/* Styling label for the checkbox */
.form-label {
  user-select: none; /* Disables text selection */
  cursor: pointer;
}


.products-page .slider .text p {
    font-size: 18px;
    margin: 0;
    font-weight: normal;
}


/* =====================================
start new style ====================
============================1*/
.top-nav ul {
    font-size: 20px;
    padding: 0 !important;
}

.cotact-info .sub-info {
    padding-left: 15px;
    font-size: 17px;
}


.top-nav ul li {
    padding-left: 0;
}
.owl-one button.owl-dot {
        height: 8px !important;
width:8px !important;
    padding: 0 !important;

}

.owl-one button.owl-dot.active {
    padding: 0 !important;
    width: 40px !important;
    height: 7px !important;
}
.cotact-info .sub-info:hover img {
     animation: infinite; 
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes  rubberBand {
    
0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1);
}
40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1);
}
50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1);
}
65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
}
75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
}
100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


}
.sub-info span, .sub-info a  {
    transition:all .3s linear;
    display:inline-block;
}
.sub-info:hover span , .sub-info:hover a {
    color: #005BAA !important;
}
.owl-dots button  {
    transition:all .8s linear;
    margin:3px !important;
}
.owl-one .item {
  
    overflow: hidden;
}

.owl-one .item img
{
        transition:all 1s linear;
    transform:scale(1.3);
}
.owl-one .owl-item.active  .item img {
    transform: scale(1);
}
.owl-one .owl-item.active .item-text h1 {
-webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-duration: 0.8s;
    opacity: 1;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
        animation-delay: 0.5s;

    
}    
.owl-one .owl-item.active .item-text h3 {
-webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-duration: 0.8s;
    opacity: 1;
    animation-duration: 0.8s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}    
@keyframes  lightSpeedInRight {

0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
}
60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
}
80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
}
100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
}
.category-card .category-card-text span {
    font-size: 18px;
    font-weight: 500;
    transition: .3s linear all;
}
.container-header {
    margin-bottom: 50px;
}
.categories .category-card-img img {
    transition: 0.3s all linear;
    object-fit: cover;
}
.blog-card .blog-text h3 {
    font-size: 20px;
}
.branch-text .sub-text > span {
    color: #ff9a42 !important;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}
.contact-info .contact-card h3, .contact-info .contact-card p {
    font-size: 17px;
}
.footer-colum .footer-colum-text .footer-title {
    font-size: 20px;
}
.footer-colum h3 {

    font-size: 18px;
}
.footer-colum h3 {
    font-weight: 400;
    margin: 20px 0;
    font-size: 17px !important;
}

.title-aboutus-info {
    text-align:center;
}
.title-aboutus-info > h2 {
    position: relative;
    padding: 20px;
    display: inline-block;
    margin: auto;
    font-size: 34px;
    color: var(--main-color);
}
.title-aboutus-info > h2::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 59px;
    top: 56%;
    transform: translateY(-50%);
    right: 0;
    background-color: #88A351;
}
.text-info-about {
    margin: 40px 0 0;
}
.text-info-about * {
    font-size: 21px !important;
}
.title-center {
    text-align: center;
    margin-bottom: 50px;
}
.title-center h2 {
    position:relative;
padding: 0px 20px;
margin:0;
color: var(--main-color);
display:inline-block;
    
}
.title-center h2::after {
    content: '';
    height: 45px;
    width: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color:#88A351;
}
.owl-nav span {

    line-height: 0;
    display: block;
    margin-bottom: 6px;
}
.product-container {
    width: 40%;
}
.product-img {
    width: 250px;
    height: 251px;
    object-fit: contain;
}