@media screen and (max-width: 767.98px) {
  .fliter-order{
    order: -1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  padding: 20px;
}

.specs-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-height: 420px;
}

/* تب‌ها */
.specs-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  padding: 15px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  position: relative;
  transition: all 0.3s;
}

.tab-btn.active {
  color: #2196f3;
}

.tab-btn.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  height: 3px;
  background: #2196f3;
  border-radius: 3px 3px 0 0;
}
/*----------------amozeshgah info start in header------------*/
    form {
        padding: 20px;
        border-radius: 5px;
    }


    label {
        display: block;
        margin-bottom: 10px;
    }
    /* Reset و تنظیمات پایه */
:root {
    --primary-color: #4285f4;
    --primary-dark: #3367d6;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #F44336;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}


.amozeshgah-info-responsive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* هدر */
.info-header {
    text-align: center;
    margin-bottom: 30px;
}

.institute-name {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.contact-prompt {
    color: var(--text-light);
    font-size: 1rem;
}

/* بخش اصلی اطلاعات */
.info-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card, .contact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    background:white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.info-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-color);
}

/* کارت تماس */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.3);
    margin-bottom: 25px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.telegram { background-color: #0088cc; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.whatsapp { background-color: #25D366; }

/* مودال تماس */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 15px 20px;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

.modal-title i {
    color: var(--warning-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.modal-body {
    padding: 20px;
}

.modal-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.phone-number-section {
    background-color: var(--light-gray);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-color);
    direction: ltr;
    text-align: center;
    justify-content: center;
}

.modal-footer {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--medium-gray);
}

.timer-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.circular-progress {
    position: relative;
    width: 100%;
    height: 100%;
}

.progress-ring-circle {
    transition: stroke-dashoffset 0.35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.timer-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.action-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    flex: 1;
    text-align: center;
}

.confirm-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.confirm-btn:hover {
    background-color: var(--primary-dark);
}

.cancel-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cancel-btn:hover {
    background-color: rgba(66, 133, 244, 0.1);
}

/* رسپانسیو برای تبلت */
@media (min-width: 768px) {
    .info-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-btn {
        width: auto;
        min-width: 200px;
    }
    
    .modal-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .action-buttons {
        width: auto;
    }
    
    .btn {
        min-width: 120px;
    }
}

/* رسپانسیو برای موبایل */
@media (max-width: 480px) {
    .amozeshgah-info-responsive {
        padding: 15px;
    }
    
    .institute-name {
        font-size: 1.5rem;
    }
    
    .info-card, .contact-card {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .info-label {
        margin-bottom: 2px;
    }
    
    .contact-btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modal-content {
        max-width: 100%;
    }
}

/* رسپانسیو برای دستگاه‌های خیلی کوچک */
@media (max-width: 360px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/*----------------amozeshgah info end in header------------*/
.tab-btn:hover {
  color: #2196f3;
  background: rgba(33, 150, 243, 0.05);
}

/* محتوای تب‌ها */
.tab-content {
  display: none;
  padding: 25px;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  margin-bottom: 20px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-content h3 i {
  color: #2196f3;
}

/* بخش مشخصات فنی */
.specs-table {
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  height: 380px !important;
}

.spec-row {
  display: flex;
  border-bottom: 1px solid #eee;
  font-size: 17px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row.highlighted {
  background: #f9f9f9;
}

.spec-name {
  width: 40%;
  padding: 15px;
  font-weight: 600;
  color: #555;
  background: rgba(0, 0, 0, 0.02);
}

.spec-value {
  width: 60%;
  padding: 15px;
  color: #333;
}

.color-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 8px;
  border: 1px solid #ddd;
}

/* حالت واکنش‌گرا */
@media (max-width: 768px) {
  .specs-tabs {
    flex-direction: column;
  }

  .spec-row {
    flex-direction: column;
  }

  .spec-name,
  .spec-value {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* -----------------top-info-amizzeshgah end--------------  */

.amoozeshgah-info-container {
  max-width: 1800px;
  margin: 50px auto;
  padding: 20px;
  color: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.my-row h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.top-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.amoozeshgah-pictures img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.amozeshgah-info {
  padding: 20px;
  /* background-color: #f9f9f9; */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size:25px !important;
}

.amozeshgah-info h4,
.amozeshgah-info h5,
.amozeshgah-info h6 {
  margin: 15px 0;
  color: #34495e;
}

.amozeshgah-info h4 {
  /* font-size: 1.4rem; */
  color: white;
}

.amozeshgah-info h5 {
  /* font-size: 1.2rem; */
  color: white;
}

.amozeshgah-info h6 {
  /* font-size: 1rem; */
  color: #7f8c8d;
}

.amoozeshgah-social ul {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.amoozeshgah-social ul li a {
  color: #fff;
  background-color: #3498db;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.amoozeshgah-social ul li a:hover {
  background-color: #2980b9;
}

.amoozeshgah-social ul li a i {
  font-size: 1.2rem;
}

.s-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #555;
}

.s-info span {
  display: block;
  margin-bottom: 10px;
}

/* رسپانسیو */
@media (max-width: 768px) {
  .top-info {
    flex-direction: column;
  }

  .amoozeshgah-pictures,
  .amozeshgah-info {
    width: 100%;
  }

  .my-row h1 {
    font-size: 2rem;
  }
}

/* Swiper Container */
.swiper-container {
  width: 500px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 600px) {
    .swiper-container{
        width:340px;
        height:200px;
        margin-right:8px;
    }
}
@media screen and (max-width: 347px) {
    .swiper-container{
        width:300px;
        height:200px;
        margin-right:8px;
    }
}


/* Swiper Slides */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.swiper-slide img {
  width: 500px;
  background: rgb(255, 255, 255);
  height: 100%;
  object-fit: cover;
  /* تصویر را به خوبی در اسلاید قرار می‌دهد */
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background-color: #091c8a67;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: #3498db;
  opacity: 1;
}

.top-info {
  display: flex;
  flex-direction: row !important;
  width: 1800px;
}
.my-row h1 {
  color: white;
}
.amoozeshgah-info {
  font-size: large !important;
}



.btN button {
  margin: 0;
  border: none;
  font-size: 15px;
  box-shadow: 0px 0px 5px black;
  color: white !important;
  background-color: #0056b3;
  outline: none;
  border-radius: 5px !important;
  margin-bottom: 30px;
}
/* -----------------------------header end----------------------------- */
/* --------------------------respo-card-start--------------------- */
.class-card-container {
  width: 100%;
  justify-content: space-between;
}
.class-card-container a {
  flex-basis: 45%;
}
/* --------------------------respo-card-end--------------------- */
/* --------------------------filter-start--------------------- */
.main-content {
  width: 100%;
  height: auto;
}

.filter-box {
  padding: 10px;
  border-radius: 8px;
  background-color: #f0e9e9a8;
  transition: all 0.1s;
  margin-bottom: 1rem;
}

.section-title {
  position: relative;
  margin-bottom: 20px;
  z-index: 0;
  margin-bottom: 0.25rem !important;
}
.section-title h2 {
  color: #6f7479;
  line-height: 33px;
  font-size: 25px;
  height: 33px;
  position: relative;
  z-index: 10;
  display: inline-block;
  padding-right: 40px;
  padding-left: 10px;
  font-weight: 700;
}
.section-title h2::before {
  content: "";
  background: url(../img/title-circles.png) left no-repeat;
  display: block;
  position: absolute;
  right: -20px;
  top: 11px;
  height: 14px;
  width: 32px;
  margin-right: 13px;
  height: 14px;
  width: 32px;
}
.widget-search {
  position: relative;
}
.widget-search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 7px;
  font-size: 13px;
  background-color: #fafdfb;
  border: 1px solid #f3f3f3;
  border-radius: 7px;
  outline: none;
}
.widget-search input::placeholder {
  font-size: 12px;
}
.widget-search button.btn-search-widget {
  position: absolute;
  left: 0;
  width: 35px;
  height: 40px;
  background-color: #2014c9;
  border: 0;
  border-radius: 7px 0 0 7px;
  outline: none;
}
.widget-search button.btn-search-widget img {
  max-width: 100%;
}


/*-----------------------acoordion for description start-----------*/


    .hidden-items {
         display:none;
         max-height: 0px;
    }
    .border-b{
        border-bottom:1px solid gray;
    }
    .rating-container {
            direction: rtl; /* برای پشتیبانی از راست به چپ */
            unicode-bidi: bidi-override;
            display: flex;
            flex-direction: row-reverse;
        }
        .rating-star {
            font-size: 30px;
            color: #ddd;
            display: inline-block;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-star:hover,
        .rating-star:hover ~ .rating-star {
            color: #ffcc00;
        }
        .rating-star.active {
            color: #ffcc00;
        }
        .website-visite-btn{
            height:33px;
            font-size:13px;
            transition:all 0.6s;
        }
        .website-visite-btn:hover{
            background: #6895de;
background: linear-gradient(270deg, rgba(104, 149, 222, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(245, 242, 242, 1) 100%, rgba(245, 243, 243, 1) 44%);
    
        }
        .website-visite{
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .modal-content{
            background-color: #fefefe;
            margin: 20% auto;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
  
        @media (max-width: 768px) {
            .truncated-text {
                -webkit-line-clamp: 2;
                /* در موبایل 2 خط نمایش دهد */
            }
        }

        .text-container {
            max-width: 100%;
            margin: 10px;
        }

        .truncated-text {
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* تعداد خطوط قبل از کوتاه شدن */
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
        }

        .truncated-text.expanded {
            -webkit-line-clamp: unset;
            /* نمایش کامل متن */
        }

        .change-btn {
            background:blue;
            border:none;
            outline:none;
            color:black;
            
        }
        .change-btn:hover{
            background:none;
            border:none;
            outline:none;
        }
        
        
        
        
        
        
        
        
        
         .accordion {
            max-width: 800px;
            margin: 20px auto;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            padding: 15px 20px;
            background-color: #f5f5f5;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .accordion-header:hover {
            background-color: #e9e9e9;
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 16px;
            color: #333;
        }

        .accordion-header .icon {
            font-size: 20px;
            transition: transform 0.3s;
        }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: #fff;
        }

        .accordion-content p {
            margin: 0;
            padding: 15px 0;
            color: #555;
            line-height: 1.6;
        }

        .accordion-item.active .accordion-header {
            background-color: #e0e0e0;
        }

        .accordion-item.active .accordion-header .icon {
            transform: rotate(180deg);
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 0 20px;
        }
          


/*-----------------------acoordion for description end-----------*/


/*---------------------------filter Product Start-------------------------*/
.filter-order {
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-product {
  margin-bottom: 1rem;
}
.fa-arrow-down {
  font-size: 20px !important;
}
.btn {
  font-size: 21px !important;
}
.filter-product .card {
  border-radius: 10px;
  border: 1px solid #f3f3f3;
}
.filter-product .card .card-header {
  background-color: #fff;
}
.filter-product .card .card-header h2 {
  margin-bottom: 0;
}
.filter-product .card .card-header button {
  font-size: 14px;
}
.filter-product .card .card-header button i {
  position: absolute;
  left: 10px;
  top: 15px;
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #edf0f5;
  border-radius: 50%;
  font-size: 25px;
  padding-top: 9px;
  text-align: center;
  color: #2014c9;
  transition: 0.2s ease-in-out;
}
.filter-product .card .card-header button[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.custom-control-label {
  padding-right: 30px;
  padding-top: 2px;
  cursor: pointer;
}
.custom-control-label::after,
.custom-control-label::before {
  right: 0;
  left: auto;
}

.filter-product .card .card-body .filter-color {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  vertical-align: top;
  margin-top: 7px;
  margin-left: 6px;
  border: 1px solid #f2f2f2;
  position: absolute;
  left: 0;
}

/*-----------------------filter Product End-------------------------*/

/*---------------------------noUi Start-------------------------*/
.noUi-horizontal {
  height: 3px;
}
.noUi-target {
  border: 0;
  border-radius: 0;
  background-color: #e7e7e7;
}
.noUi-connect {
  background: #f7858d !important;
}
.noUi-horizontal .noUi-handle {
  top: -6px;
  left: -0.375rem;
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}
.noUi-horizontal .noUi-handle.noUi-handle-lower,
.noUi-horizontal .noUi-handle.noUi-handle-upper {
  background-color: #f7858d;
}
.noUi-handle:after,
.noUi-handle:before {
  display: none;
}
/*---------------------------noUi End-------------------------*/

/*---------------------------Switcher Start-------------------------*/
.parent-switcher {
  position: relative;
}
.parent-switcher .ui-statusswitcher {
  position: absolute;
  right: 0;
  top: 0;
}
.parent-switcher .ui-statusswitcher input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}
.parent-switcher .ui-statusswitcher-slider {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 21px;
  border-radius: 29px;
  border: 1px solid #8c8c8c;
  background: #e5e5e5;
  transition: 0.15s ease-in;
}
.parent-switcher .ui-statusswitcher-slider-toggle {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #959595;
  transition: all 0.4s ease;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 2px;
}
.parent-switcher input[type="checkbox"]:checked + .ui-statusswitcher-slider {
  background-color: #f7858d;
  border-color: #f7858d;
}
.parent-switcher
  input[type="checkbox"]:checked
  + .ui-statusswitcher-slider
  span {
  right: 21px;
}
.parent-switcher .label-switcher {
  margin-right: 50px;
  margin-bottom: 5px;
  cursor: pointer;
}
/*---------------------------Switcher End-------------------------*/

/*---------------------------Btn Start-------------------------*/
.btn-block {
  display: block;
  width: 100%;
}
.btn-info {
  box-shadow: 0 2px 6px #82d3f8;
  background-color: #3abaf4;
  border-color: #3abaf4;
  color: #fff;
}
/*---------------------------Btn End-------------------------*/
/* -----------------------------card-responsive start----------------------- */
/*.academy-card{*/
/*    height: 100%;*/
/*    padding-bottom: 20px;*/
/*}*/
a:has(.academy-card){
    margin-bottom: 20px;
}
/* -----------------------------card-responsive end----------------------- */
/* -----------------------------filter-end----------------------- */
@media screen and (max-width: 767.98px) {
  .class-card-container {
    justify-content: center;
  }
  .class-card-container a {
    flex-basis: 80%;
  }
  .filter-order {
    order: -1;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .filter-order {
    order: -1;
  }
  .amoozeshgah-detail-main .my-row {
    justify-content: center !important;
  }
}
