#ax77 {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 24px auto;
}

#ax77:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  max-width: 100%;
}

.section-row {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.section-slider {
  width: 100%;
  max-width: 100%;
}

.section-title-mobile,
.section-title-desktop {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* نمایش/مخفی کردن عناوین و دکمه‌ها بر اساس دستگاه */
@media (max-width: 767px) {
  .section-title-desktop {
    display: none;
  }
  .section-title-mobile {
    display: block;
  }
  .section-nav-desktop {
    display: none !important;
  }
  .section-nav-mobile {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  .section-title-mobile {
    display: none;
  }
  .section-title-desktop {
    display: block;
  }
  .section-nav-mobile {
    display: none !important;
  }
  .section-nav-desktop {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}

/* استایل آیتم‌های اسلایدر */
.bxslider-unified li,
.bxslider-special li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 300px; /* ارتفاع ثابت برای آیتم‌ها */
  justify-content: space-between; /* تراز کردن محتوا */
}

.bxslider-unified img,
.bxslider-special img {
  max-width: 100%;
  height: 150px; /* ارتفاع ثابت برای تصاویر */
  object-fit: cover; /* جلوگیری از اعوجاج تصویر */
  border-radius: 5px;
}

.best-seller-name {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
  min-height: 48px; /* ارتفاع ثابت برای عنوان (تقریباً 2 خط) */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* اجازه چندخطی بودن */
  width: 100%;
}

.best-seller-price {
  font-size: 14px;
  color: #28a745;
  margin-bottom: 10px;
}

.best-seller-price .old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.best-seller-button {
  background-color: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.best-seller-button:hover {
  background-color: #218838;
}

/* استایل دکمه‌های ناوبری (دایره‌ای) */
.section-nav-mobile button,
.section-nav-desktop button {
  background-color: #007bff;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 18px;
}

.section-nav-mobile button:hover,
.section-nav-desktop button:hover {
  background-color: #0056b3;
}
```










.bxslider-unified a {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 999 !important;
  display: block;
}

.product-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.product-grid-item {
  width: calc(25% - 12px);
  background-color: #e0f0ff;
  border-radius: 12px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 768px) {
  .product-grid-item {
    width: calc(50% - 8px);
  }
}

.product-grid-inner {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.product-grid-image {
  max-width: 100%;
  max-height: 190px;
  margin: 0 auto;
  display: block;
}

.product-grid-title {
  font-size: 16px;
  color: #000;
  text-align: right;
  margin-top: 10px;
  min-height: 60px;
  line-height: 22px;
}

.product-grid-brand {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
  text-align: right;
}

.product-grid-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: rtl;
  margin-top: 12px;
}

.product-grid-price-current {
  color: red;
  font-size: 15px;
}

.product-grid-price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  background: url('/images/str.png') repeat-x center;
}

.product-grid-button {
  margin-top: 10px;
  background-color: #ff8800;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.product-grid-button:hover {
  background-color: #e67600;
}

.product-grid-tag {
  position: absolute;
  top: 1px;
  left: 1px;
  background-color: green;
  color: white;
  padding: 3px 6px;
  font-size: 12px;
  border-radius: 5px;
}

.product-grid-discount {
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: red;
  color: white;
  padding: 3px 6px;
  font-size: 12px;
  border-radius: 5px;
}










.product-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.product-card-box {
    width: calc(25% - 16px);
    background-color: #e0f0ff;
    border-radius: 12px;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%; /* باکس‌ها هم‌ارتفاع می‌شن */
    transition: box-shadow 0.3s ease;
}

.product-card-box:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}


@media screen and (max-width: 768px) {
    .product-card-box {
        width: calc(50% - 16px);
    }
}

.product-card-inner {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.product-card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.product-card-title {
    font-size: 16px;
    color: black;
    text-align: right;
    line-height: 22px;
    margin: 8px 0;
    min-height: 60px;
}

.product-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
    direction: rtl;
}

.product-card-price-current {
    color: red;
    font-size: 16px;
}

.product-card-price-old {
    color: #999;
    text-decoration: line-through;
}

.product-card-button {
    margin-top: 12px;
    background-color: #e2001a; /* قرمز بوش */
    color: #ffffff;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.product-card-button:hover {
    background-color: #c00016; /* قرمز تیره‌تر برای حالت هاور */
}


.product-card-discount-badge {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: red;
    color: white;
    padding: 3px 5px;
    font-size: 13px;
    border-radius: 5px;
}

.product-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ccc;
    color: blue;
    padding: 2px 5px;
    font-size: 11px;
    border-radius: 5px;
}






.main-horizontal-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 10px;
background: linear-gradient(to left, #EC1C24, #FFFFFF);
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  direction: rtl;
}

.main-horizontal-menu a {
  color: #FFFFFF; /* متن سفید */
  font-size: 14px;
  text-decoration: none;
  background-color: rgba(236, 28, 36, 0.85); /* قرمز برند بوش با شفافیت */
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.main-horizontal-menu a:hover {
  background-color: #FFFFFF; /* پس‌زمینه سفید در حالت هاور */
  color: #EC1C24; /* متن قرمز برند بوش */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .main-horizontal-menu {
    display: none !important;
  }
}

  
  
    
  #myCarousel .carousel-inner img {
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  #myCarousel .item {
    overflow: hidden;
    padding: 4px;
  }

  #myCarousel .item:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  #myCarousel .carousel-indicators {
    display: none;
  }
.latest-news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  background-color: #f2faff;
}
 #myCarousel .carousel-indicators {
    display: none;
  }
   #myCarouse2 .carousel-indicators {
    display: none;
  }
.latest-news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-top: 4px solid #00bcd4;
}

.latest-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.latest-news-image {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.latest-news-title {
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  color: #222;
  height: 60px;
  line-height: 24px;
}

.latest-news-link {
  display: block;
  text-align: center;
  padding: 10px;
}

.latest-news-link a {
  background-color: #00bcd4;
  color: white;
  padding: 6px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.latest-news-link a:hover {
  background-color: #0097a7;
}
 .dynmenu-nav {
    background-color: #fff;
    direction: rtl;
}
.dynmenu-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.dynmenu-nav li {
    position: relative;
}
.dynmenu-nav > ul > li > a {
    display: block;
    padding: 15px 15px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s;
}
.dynmenu-nav > ul > li > a:hover {
    background-color: #f0f0f0;
}
.dynmenu-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
.dynmenu-nav li:hover > .dynmenu-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.dynmenu-submenu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-weight: normal;
    white-space: nowrap;
}
.dynmenu-submenu li a:hover {
    background-color: #f7f7f7;
}

.dynmenu-submenu.multi-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 520px;
}
@media (max-width: 768px) {
    .dynmenu-nav {
        display: none;
    }
}
 .hamburger-wrapper {
    width: 100%;
    background: #FFD700;
    padding: 10px;
    position: relative;
    z-index: 99999;
  }

  .hamburger-icon {
    font-size: 32px;
    color: #333;
    cursor: pointer;
  }

  .hamburger-menu {
    display: none;
    background: #fff;
    padding: 10px;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hamburger-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-family: Tahoma;
  }

  .hamburger-item > a {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
    display: block;
  }

  .hamburger-submenu {
    display: none;
    padding-top: 8px;
  }

  .hamburger-subitem {
    padding: 6px 20px;
    margin: 4px 0;
    background: #f9f9f9;
    border-left: 3px solid #0074D9;
  }

  .hamburger-subitem a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
  }

  @media(min-width: 768px) {
    .hamburger-wrapper {
      display: none !important;
    }
  }    
  
  
        .jadval5 {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.jadval5 th, .jadval5 td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid #ddd;
}

.jadval5 th {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.jadval5 tr:nth-child(even) {
    background-color: #f2f2f2;
}

.jadval5 tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jadval5 td {
    font-size: 16px;
    color: #333;
}

.jadval5 td a {
    color: #4CAF50;
    text-decoration: none;
}

.jadval5 td a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .jadval5 th, .jadval5 td {
        padding: 8px 10px;
    }
}
#whatsapp-button {
    position: fixed;
    bottom: 60px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#whatsapp-popup {
    position: fixed;
    bottom: 140px;
    left: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    direction: rtl;
    font-family: tahoma;
}

.popup-header {
    background: #25d366;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header #close-popup {
    cursor: pointer;
    font-size: 20px;
}

.popup-options {
    padding: 0;
}

.popup-options a {
    display: block;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-options a:last-child {
    border-bottom: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.popup-options a:hover {
    background-color: #e6f9f0;
    color: #25d366;
}
.ef1{-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}

@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}
.fq{
	display:inline-block;width:90%;
}
.g22{
	background-color: #12052E;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%231b0a3c' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23251049' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23301854' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%233b215d' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23462C65' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%233e2a61' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%2337275d' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23302559' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23292355' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23232151' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.g67{
	background-color: #E8E8E8;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%23E8E8E8' width='11' height='11'/%3E%3Crect fill='%23e8e8e8' x='10' width='11' height='11'/%3E%3Crect fill='%23e9e9e9' y='10' width='11' height='11'/%3E%3Crect fill='%23e9e9e9' x='20' width='11' height='11'/%3E%3Crect fill='%23eaeaea' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23eaeaea' y='20' width='11' height='11'/%3E%3Crect fill='%23eaeaea' x='30' width='11' height='11'/%3E%3Crect fill='%23ebebeb' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23ebebeb' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23ebebeb' y='30' width='11' height='11'/%3E%3Crect fill='%23ececec' x='40' width='11' height='11'/%3E%3Crect fill='%23ececec' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23ededed' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23ededed' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23ededed' y='40' width='11' height='11'/%3E%3Crect fill='%23eeeeee' x='50' width='11' height='11'/%3E%3Crect fill='%23eeeeee' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23efefef' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23efefef' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23efefef' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23f0f0f0' y='50' width='11' height='11'/%3E%3Crect fill='%23f0f0f0' x='60' width='11' height='11'/%3E%3Crect fill='%23f1f1f1' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23f1f1f1' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23f1f1f1' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23f2f2f2' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23f2f2f2' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23f2f2f2' x='70' width='11' height='11'/%3E%3Crect fill='%23f3f3f3' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23f3f3f3' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23f4f4f4' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23f4f4f4' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23f4f4f4' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23f5f5f5' x='80' width='11' height='11'/%3E%3Crect fill='%23f5f5f5' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23f6f6f6' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23f6f6f6' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23f6f6f6' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23f7f7f7' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23f7f7f7' x='90' width='11' height='11'/%3E%3Crect fill='%23f8f8f8' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23f8f8f8' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23f8f8f8' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23f9f9f9' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23f9f9f9' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23fafafa' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23fafafa' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23fafafa' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23fcfcfc' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23fcfcfc' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23fdfdfd' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23fdfdfd' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23fdfdfd' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23fefefe' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23fefefe' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23ffffff' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23FFFFFF' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.hz{

}

#aq1{
	float:right;width:49%;margin-bottom:2%;padding:3px;background-color:#F0F0F0;padding-right:8px;
}
#aq2{
	float:left;width:49%;margin-bottom:2%;padding:3px;background-color:#F0F0F0;padding-right:8px;
}
#bz1{
	float:right;width:24%;margin-bottom:2%;
}
#bz2{
	float:right;width:24%;margin-bottom:2%;margin-right:1.3%;
}
#bz3{
	float:right;width:24%;margin-bottom:2%;margin-right:1.3%;
}
#bz4{
	float:left;width:24%;margin-bottom:2%;
}
#br1{
	margin:0px;;float:right;width:15%;
}
.gif{display:none;
	
}
.giff{display:block;
	
}
#br2{
	margin:0px;float:right;width:15%;margin-right:6.66%;
}
video {
height:auto;
width:60%;
}

#br3{
	margin:0px;float:right;width:15%;margin-right:6.66%;
}
#br4{
	margin:0px;float:right;width:15%;margin-right:6.66%;
}
#br5{
	margin:0px;float:left;width:15%;
}
#ax810{
	max-width:650px;border:2px #FFCC00 solid;margin-top:12px;margin-bottom:12px;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}

#ax67{
	max-width:550px;border:2px #FFCC00 solid;margin-top:12px;margin-bottom:12px;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;

	
}

#whats{border-radius: 50% 50% 50% 50%;
-moz-border-radius: 50% 50% 50% 50%;
-webkit-border-radius: 50% 50% 50% 50%;
	position:fixed;left:10px;bottom:10%;border:3px yellow solid;z-index:9999999999999999;text-align:center;padding:8px;background-color:#00CC00;color:white;line-height:28px;padding-top:4px;padding-bottom:4px;
}
#namad{border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;	position:fixed;left:10px;bottom:250px;border:3px yellow solid;z-index:9999999999999999;text-align:center;padding:8px;background-color:#CCCCCC;color:white;line-height:28px;padding-top:4px;padding-bottom:4px;
}

.brd{
	border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#ban1{
	float:right;width:24%;border:1px lime solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#ban2{
	float:right;width:24%;margin-right:1.3%;border:1px lime solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#ban3{
	float:right;width:24%;margin-right:1.3%;border:1px lime solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}

#ban4{
	float:left;width:24%;border:1px lime solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
@font-face {
	font-family: "primary-font";
  font-display: swap;
	
	src: url("fonts/iran-yekan-400.eot");
	src: url("fonts/iran-yekan-400.eot?#iefix") format("embedded-opentype"),
		 url("fonts/iran-yekan-400.woff2") format("woff2"),
		 url("fonts/iran-yekan-400.woff") format("woff"),
		 url("fonts/iran-yekan-400.ttf") format("truetype");
	font-weight: 300;
}
#logo{
	float:right;margin-top:15px;
}
.heartbeat{-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}
@-webkit-keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{from{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}
#imv{
	max-width:90%;
}
#menu11{
	display:none;
}

.tx{
	width:100%;padding:6px;
}
#phone{
	float:right;display:none;font-size:20px;
}
#logg{
	width:40%;display:inline-block;border:1px silver solid;padding:15px;
}


#line{
	position:absolute;left:0px;width:80%;top:30px;height:10px;background-color:#153e90;z-index:0px;-webkit-border-top-right-radius: 25px;
-moz-border-radius-topright: 25px;
border-top-right-radius: 25px;
}
#search {
  width: 55%;
  float: right;
  margin-right: 100px;
  margin-top: 10px;
}

.search-box {
  position: relative;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background-color: #f5f5f5;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.search-box input[type="text"] {
  width: 100%;
  height: 100%;
  padding: 0 40px 0 10px;
  border: none;
  background-color: transparent;
  font-size: 14px;
  outline: none;
  direction: rtl;
}

.search-box .search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
  pointer-events: none;
}

.search-box:focus-within {
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  background-color: #ffffff;
}

#uu{
position:absolute;
left:10px;top:15px;z-index:9999999999999;display:none;
}
#bn11{
	width:100%;margin-bottom:8px;
}
#bn12{
	width:100%;margin-bottom:8px;
}
#bn13{
	width:100%;
}

#pt{
	float:left;
}
#bas2{
	float:left;margin-top:24px;position:relative;
}
#heart{
	float:left;margin-top:34px;position:relative;margin-left:15px;
}
#userr {
  float: left;
  margin-top: 11px;
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ddd;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.social-icon i {
  font-size: 18px;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* رنگ اختصاصی برای هر شبکه اجتماعی */
.social-icon.telegram {
  background-color: #0088cc;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

#bn1{
	float:left;width:25%;
}
#bn2{
	float:right;width:73%;
}

#ch1{
	float:right;width:19%;
}

#ch2{
	float:right;width:19%;margin-right:1.3%;
}

#ch3{
	float:right;width:19%;margin-right:1.3%;
}

#ch4{
	float:right;width:19%;margin-right:1.3%;
}

#ch5{
	float:left;width:19%;
}
#bl1{
	float:left;width:40%;
}


#bl2{
	float:right;width:58%;
}
#q1{
	float:right;width:49%;height:118px;position:relative;-webkit-border-top-left-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-bottomleft: 15px;
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;border-left:30px red solid;margin-bottom:2%;
}
#q2{
	float:left;width:49%;height:118px;position:relative;-webkit-border-top-left-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-bottomleft: 15px;
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;border-left:30px red solid;margin-bottom:2%;
}

#kt1{
	float:right;width:30%;
}
#kt2{
	float:left;width:68%;
}
#pu1{
	float:left;width:38%;
}
#pu2{
	float:left;width:60%;
}

#pro1{
	width:24%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;height:430px;overflow:hidden;
}
#pro2{
	width:24%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;margin-right:1.3%;height:430px;overflow:hidden;
}
#pro3{
	width:24%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;margin-right:1.3%;height:430px;overflow:hidden;
}
#pro4{
	width:24%;float:left;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;height:430px;overflow:hidden;
}




#ypro1{
	width:19%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#ypro2{
	width:19%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;margin-right:1.3%;
}
#ypro3{
	width:19%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;margin-right:1.3%;
}
#ypro4{
	width:19%;float:right;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;margin-right:1.3%;
}
#ypro5{
	width:19%;float:left;border:1px #E0E0E0 solid;padding:5px;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}


#w1{
	width:32%;float:right;background-color:#d1d0cf;padding:6px;-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;margin-top:1%;margin-bottom:1%;
}
#w2{
	width:32%;float:right;background-color:#d1d0cf;padding:6px;-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;margin-right:2%;margin-top:1%;margin-bottom:1%;
}
#w3{
	width:32%;float:right;background-color:#d1d0cf;padding:6px;-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;float:left;margin-top:1%;margin-bottom:1%;
}
#f1{
	width:20%;float:right;
}
#f2{
	width:25%;float:right;margin-right:2%;
}
#f3{
	width:36%;float:left;
}
.pc{
	display:block;
}
.mob{
	display:none;
}
#r1{
	float:right;
}
#r2{
	float:left;
}
#r3{
	float:left;margin-left:30px;
}
#r4{
	float:left;margin-left:30px;
}
#grr1{
	width:48%;float:right;overflow:hidden;padding-bottom:10px;-webkit-box-shadow:0px 0px 2px 2px #e3dada ;
-moz-box-shadow:0px 0px 2px 2px #e3dada ;
box-shadow:0px 0px 2px 2px #e3dada ;margin-bottom:2%;
}
#grr2{
	width:48%;float:left;overflow:hidden;padding-bottom:10px;-webkit-box-shadow:0px 0px 2px 2px #e3dada ;
-moz-box-shadow:0px 0px 2px 2px #e3dada ;
box-shadow:0px 0px 2px 2px #e3dada ;margin-bottom:2%;
}


*{
	font-family:primary-font;  text-decoration: none;font-size:16px;

}

#naz1{
	float:right;width:32%;
}
#naz2{
	float:right;width:32%;margin-right:2%;
}

#naz3{
	float:left;width:32%;
}
#container { direction: rtl; width: 100%; margin: 0 auto;background-color:white;}
body{
background-color:white;
}
a:hover {
    text-decoration:none;
    }
#content1{
	height:auto;margin-bottom:0px;
}
#ccontent1{
	width:96%; margin: 0 auto;display:table ;height:auto;
}
#menu{float:right;margin-right:0px;width:100%;display:table;
}

#naz1{
	float:right;width:32%;
}
#naz2{
	float:right;width:32%;margin-right:2%;
}

#naz3{
	float:left;width:32%;
}


#mob{
	display:none;
}
#menu2{
	display:none;float:left;
}
#nnews1{
	float:right;width:20%;height:100px;
}
#nnews2{
height:120px;overflow:hidden;width:78%;float:left;
}
#ninews{
height:100px;width:150px;
}
h1{
	font-size:18px;padding:0px;margin:0px;font-weight:bold;line-height:33px;
}
h2{
	font-size:16px;padding:0px;margin:0px;font-weight:bold;
}
h3{
	font-size:16px;padding:0px;margin:0px;font-weight:bold;
}
#pr1{
	width:40%;float:right;text-align:center;
}
#pr2{
	width:59%;float:left;line-height:32px;
}
#pr11{
	float:right;width:22%;
}
#npr11{
display:table;
}
#pr12{
	float:left;width:77%;border:1px silver solid;-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
#npr12{
	float:left;width:100%;border:1px silver solid;-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}

#li1{
	float:right;width:23%;
}

#li2{
	float:left;width:75%;
}


#nw1{
	width:32%;float:right;
}
#nw2{
	width:32%;float:right;margin-right:2%;
}
#nw3{
	width:32%;float:left;
}

@media only screen and (max-width: 1200px) {
#logg{
	width:70%;display:inline-block;border:1px silver solid;padding:15px;
}


#nnews1{
	float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:870px;float:left;
}
#ninews{
height:100px;width:150px;
}
}
@media only screen and (max-width: 1050px) {

#pro1{
	width:49%;float:right;margin:0px;margin-bottom:2%;
}
#pro2{
	width:49%;float:left;margin:0px;margin-bottom:2%;
}
#pro3{
	width:49%;float:right;margin:0px;margin-bottom:2%;
}
#pro4{
	width:49%;float:left;margin:0px;margin-bottom:2%;
}




#nnews1{
	float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:670px;float:left;
}
#ninews{
height:100px;width:150px;
}

#menu{
	display:none;
}
#menu11{
	display:block;
}



}


@media only screen and (max-width: 800px) {
#ax810{
	max-width:90%;
}
#ax67{
	max-width:450px;
}
#logg{
	width:90%;display:inline-block;border:1px silver solid;padding:15px;
}

.pc{
	display:none;
}
.mob{
	display:block;
}

#menu2{
	display:block;
}
#r1{
	display:none;
}
#r2{
	display:none;
}
#r3{
	display:none;
}
#r4{
	display:none;
}
#uu{
	display:block;
}
#nnews1{
	float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:490px;float:left;
}
#ninews{
height:100px;width:150px;
}
#line{
	position:absolute;left:0px;width:70%;top:30px;height:10px;background-color:#153e90;z-index:0px;-webkit-border-top-right-radius: 25px;
-moz-border-radius-topright: 25px;
border-top-right-radius: 25px;
}

}



@media only screen and (max-width: 750px) {

#nnews1{
	float:right;width:100%;height:200px;text-align:right;
}
#nnews2{
height:100px;overflow:hidden;width:100%;float:left;
}
#ninews{
height:200px;width:300px;
}
#news1{
	width:100%;margin:0px;margin-bottom:10px;
}
#logo{
	width:100%;text-align:center;margin-bottom:10px;
}
#search{
	width:100%;margin:0px;;margin-top:6px;margin-bottom:6px;
}
#pt{
	position:fixed;left:0px;bottom:0px;width:100%;background-color:white;border-top:2px silver solid;z-index:9999999999;height:37px;
}
#bas2{
	float:left;margin-top:4px;position:relative;margin-left:15px;
}
#heart{
	float:left;margin-top:4px;position:relative;margin-left:15px;
}
#userr{
	float:left;margin-top:4px;position:relative;margin-left:15px;
}
#bn1{
	width:100%;
}
#bn2{
	width:100%;margin-bottom:12px;
}
#bn11{
	width:32%;float:right;
}
#bn12{
	width:32%;float:right;margin-right:2%;
}
#bn13{
	width:32%;float:left;
}
#ch1{
	float:right;width:48%;margin:0px;margin-bottom:2%;
}

#ch2{
	float:left;width:48%;margin:0px;margin-bottom:2%;
}

#ch3{
	float:right;width:48%;margin:0px;
}

#ch4{
	float:left;width:48%;margin:0px;
}

#ch5{
	float:left;width:100%;;
}
#bl2{
	width:100%;margin-bottom:10px;
}
#bl1{
	width:100%;margin-bottom:10px;
}
#kt1{
	width:100%;
}
#kt2{
	width:100%;
}
#pu1{
	width:100%;margin-top:20px;
}
#pu2{
	width:100%;margin-top:20px;
}
#imv{
	max-width:60%;
}
#pro1{
	width:49%;float:right;margin:0px;margin-bottom:2%;
}
#pro2{
	width:49%;float:left;margin:0px;margin-bottom:2%;
}
#pro3{
	width:49%;float:right;margin:0px;margin-bottom:2%;
}
#pro4{
	width:49%;float:left;margin:0px;margin-bottom:2%;
}


#ypro1{
	width:49%;float:right;margin:0px;margin-bottom:2%;
}
#ypro2{
	width:49%;float:left;margin:0px;margin-bottom:2%;
}
#ypro3{
	width:49%;float:right;margin:0px;margin-bottom:2%;
}
#ypro4{
	width:49%;float:left;margin:0px;margin-bottom:2%;
}

#ypro5{
display:none;
}


#kho{
	display:none;
}
#w1{
	width:100%;margin:0px;margin-bottom:2%;
}
#w2{
	width:100%;margin:0px;margin-bottom:2%;
}
#w3{
	width:100%;margin:0px;margin-bottom:2%;
}
#f1{
	width:100%;margin-bottom:10px;border-bottom:2px #999999 solid;
}
#f2{
	width:100%;margin:0px;;margin-bottom:10px;border-bottom:2px #999999 solid;padding-bottom:14px;
}
#f3{
	width:100%;margin-bottom:10px;
}
#line{
	position:absolute;left:0px;width:40%;top:30px;height:10px;background-color:#153e90;z-index:0px;-webkit-border-top-right-radius: 25px;
-moz-border-radius-topright: 25px;
border-top-right-radius: 25px;
}
#phone{
display:block;font-size:18px;padding-top:6px;padding-right:10px;
}
#pr1{
	width:100%;display:table;margin-bottom:12px;
}
#pr2{
	width:100%;display:table;margin-bottom:12px;
}

#li1{
display:none;
}

#li2{
width:100%;
}
img{
	max-width:100%;height:auto;
}
video {
height:auto;
width:100%;
}
#ax810{
		height:auto;width:80%;
}

#ax67{
		height:auto;width:80%;

	
}
.gif{display:block;
	
}
.giff{display:none;
	
}
#bz1{
	float:right;width:49%;margin-bottom:2%;
}
#bz2{
	float:left;width:49%;margin-bottom:2%;margin-right:0%;
}
#bz3{
	float:right;width:49%;margin-bottom:2%;
}
#bz4{
	float:left;width:49%;margin-bottom:2%;margin-right:0%;
}
#ban1{
	width:49%;margin:0px;margin-bottom:2%;float:right;
}
#ban2{
	width:49%;margin:0px;margin-bottom:2%;float:left;
}
#ban3{
	width:49%;margin:0px;margin-bottom:2%;float:right
}
#ban4{
	width:49%;margin:0px;margin-bottom:2%;float:left;
}
.hz{
	height:50px;
}
