.copypersia-product-price {
    margin-top: 8px;
    font-weight: bold;
    color: #e91e63;
    font-size: 15px;
    direction: rtl;
}

.copypersia-product-title {
    font-size: 14px;
    margin-bottom: 4px;
}
.copypersia-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 24px;
  padding: 10px;
  box-sizing: border-box;
}

/* 🔷 کارت محصول */
.copypersia-product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.copypersia-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* 🔷 تصویر داخل کارت */
.copypersia-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f0f0f0;
  overflow: hidden;
}

.copypersia-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 🔷 عنوان محصول */
.copypersia-product-title {
  padding: 12px 10px 4px 10px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔷 قیمت محصول */
.copypersia-product-price {
  padding: 0 10px 12px 10px;
  font-size: 13px;
  color: #007bff; /* آبی برند یا رنگ دلخواه */
  text-align: center;
}

/* 🔷 ریسپانسیو */
@media (max-width: 1200px) {
  .copypersia-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .copypersia-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .copypersia-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .copypersia-title {
    font-size: 22px;
    border-right-width: 3px;
  }
}

@media (max-width: 480px) {
  .copypersia-product-grid {
    grid-template-columns: 1fr;
  }
}

.specs-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: Tahoma, Arial, sans-serif;
    direction: rtl;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 48px 12px 16px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.specs-list li:hover {
    background-color: #f9f9f9;
}

.specs-list li:before {
    font-family: FontAwesome;
    content: "\f058"; /* check-circle */
    color: #007BFF;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 1;
}

@media (min-width: 768px) {
    .specs-list {
        max-height: 300px;
        overflow-y: auto;
    }
}

@media (max-width: 767px) {
    .specs-list {
        max-height: none;
        overflow-y: visible;
    }
}

.no-specs {
    text-align: center;
    padding: 20px 0;
    font-size: 15px;
    color: #777;
}

.error-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  margin-bottom: 20px;
  overflow-x: auto;
  display: block;
  direction: rtl;
}
.footer-title {
  font-weight: bold;
  font-size: 1.9rem;
  margin-bottom: 0.9rem;
}
.error-table thead {
  background-color: #003366;
  color: #fff;
}

.error-table thead th {
  text-align: right;
  direction: rtl;
}

.error-table th,
.error-table td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  min-width: 120px;
  vertical-align: top;
  text-align: right;
  direction: rtl;
}

.error-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* ✅ فقط روی داده‌ها هاور اعمال بشه */
.error-table tbody tr:hover {
  background-color: #eef4ff;
}

@media (max-width: 768px) {
  .error-table {
    font-size: 14px;
  }

  .error-table th,
  .error-table td {
    padding: 10px;
  }
}

.comment-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-family: inherit;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-form h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #003366;
}

.comment-form input,
.comment-form textarea {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.comment-form button {
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.comment-form button:hover {
  background: #0056b3;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-list-title {
  margin-top: 30px;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  color: #333;
}

.comment-item {
  border: 1px solid #ddd;
  border-right: 4px solid #007bff;
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
  background: #f9f9f9;
}

.comment-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.comment-text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.comment-reply {
  font-size: 14px;
  color: #0056b3;
  margin-top: 10px;
  background: #e8f0ff;
  padding: 8px;
  border-radius: 6px;
}

.product-trust-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.trust-feature-box {
  flex: 1 1 calc(50% - 10px); /* دو ستون در هر ردیف */
  background-color: #f9f9f9;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.trust-feature-box i {
  color: #2ecc71;
  font-size: 16px;
}

.call-box {
  background-color: #007bff;
  color: white !important;
  justify-content: center;
  font-weight: bold;
  transition: background 0.3s;
  text-decoration: none;
}

.call-box i {
  color: white;
}

.call-box:hover {
  background-color: #0056b3;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #003366;
  text-decoration: none;
  padding: 6px 10px;
  transition: background 0.2s, color 0.2s;
  border-radius: 6px;
}

.download-item:hover {
  background: #eef5ff;
  color: #001133;
}

.download-text {
  flex: 1;
  font-size: 15px;
}

.download-icon {
  color: #3366cc;
  font-size: 16px;
  margin-right: 8px;
  transition: transform 0.2s;
}

.download-item:hover .download-icon {
  transform: scale(1.2);
}

.copypersia-link-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.copypersia-link-item {
  display: inline-flex;
  align-items: center;
  color: #003366;
  text-decoration: none;
  font-size: 15px;
  padding: 4px 2px;
  border-radius: 4px;
  transition: color 0.3s;
}

.copypersia-link-item i {
  margin-left: 6px;
  font-size: 13px;
  color: #3366cc;
}

.copypersia-link-item:hover {
  color: #001133;
}

.footer-pro {
  background: linear-gradient(to right, #1c1f26, #121417);
  color: #e0e0e0;
  padding: 60px 20px 40px;
  font-family: "IRANSans", sans-serif;
  position: relative;
  z-index: 1;
  border-top: 4px solid #00bcd4;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-block {
  flex: 1 1 300px;
  min-width: 260px;
}

.footer-block h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  border-right: 4px solid #00bcd4;
  padding-right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.8;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-block ul li i {
  color: #00bcd4;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

.footer-block ul li a {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-block ul li a:hover {
  background: #00bcd4;
  color: #000;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social {
  font-size: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social:hover {
  background: #00bcd4;
  color: #000;
}

.social.telegram { color: #0088cc; }
.social.instagram { color: #e1306c; }
.social.whatsapp { color: #25d366; }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  background: transparent;
  position: relative;
  z-index: 2;
}

.footer-bottom a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* فاصله از فوتر ثابت پایین صفحه */
.footer-bottom {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-block {
    flex: 1 1 100%;
  }

  .social-icons {
    justify-content: flex-start;
  }
}


/* 🔷 بخش کلی دو ستونه */
.copypersia-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  background: #f8f9fa;
}

/* 🔷 هر ستون (نظرات / فیلم‌ها) */
.copypersia-col {
  flex: 1 1 48%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* 🔷 عنوان هر بخش */
.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border-right: 4px solid #007BFF;
  padding-right: 10px;
  color: #2c3e50;
}

/* 🔹 نظرات */
.comment-box {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}

.comment-box:last-child {
  border-bottom: none;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.comment-name {
  font-weight: bold;
}

.comment-date {
  font-style: italic;
  color: #888;
}

.comment-body {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  text-align: right;
}

.comment-reply {
  background: #eef2f7;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #2c3e50;
  text-align: right;
}

/* 🔹 ویدیوها */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.video-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
}

/* ✅ حفظ نسبت ابعاد یکسان برای ویدیوها */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.video-title {
  font-size: 14px;
  color: #333;
  text-align: center;
  padding: 10px;
  line-height: 1.5;
}

/* 🔸 ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .copypersia-col {
    flex: 1 1 100%;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* 🔷 کل بخش محصولات با بک‌گراند جدا */
.copypersia-product-section {
  background: #f5f7fa;
  padding: 60px 20px;
  margin: 40px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

/* 🔷 تیتر اصلی */
.copypersia-heading {
  text-align: right;
  margin-bottom: 40px;
  padding: 0 10px;
}

.copypersia-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  border-right: 4px solid #007BFF;
  padding-right: 12px;
  display: inline-block;
  line-height: 1.4;
}

.copypersia-subtitle {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
  padding-right: 16px;
  line-height: 1.6;
}

/* 🔷 گرید محصولات */


.contact-section {
  display: flex;
  justify-content: right;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-btn {
  width: 80px;
  height: 80px;
  background: #f0f0f3;
  border-radius: 50%;
  box-shadow: 6px 6px 12px #d1d9e6, -6px -6px 12px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.12) rotate(2deg);
  color: white;
}

.contact-btn.telegram:hover {
  background: #0088cc;
}

.contact-btn.instagram:hover {
  background: #e1306c;
}

.contact-btn.phone:hover {
  background: #28a745;
}

.contact-btn.whatsapp:hover {
  background: #25D366;
}

@media (max-width: 600px) {
  .contact-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }
}


.why-copy-persia {
  width: 100%;
  padding: 40px 20px;
  background: #fff;
  direction: rtl;
  box-sizing: border-box;
  text-align: center;
}

.why-copy-persia h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 150px;
  height: 150px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.text {
  font-size: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .feature-box {
    width: 120px;
    height: 120px;
    padding: 15px;
  }

  .icon {
    font-size: 24px;
  }

  .text {
    font-size: 14px;
  }
}

 .product-title {
            color: #ffffff;
            background-color: #007bff;
            padding: 15px 20px;
            border-radius: 5px;
            margin-top: 2px;
            margin-bottom: 7px;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        p {
            color: #555;
            padding: 0 10px;
        }
        .product-section {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 7px;
        }
        .buy-btn {
            background-color: #ffc107;
            color: #333;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid #ff9800;
            font-weight: bold;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .buy-btn:hover {
            background-color: #ff9800;
            color: #fff;
            border-color: #e68900;
        }a{
	color:blue;
}
.continue-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    padding: 8px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px; /* ÙØ§ØµÙ„Ù‡ Ø§Ø² Ø¨Ø§Ù„Ø§ */
}

.continue-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.continue-button:active {
    background-color: #004085;
    transform: translateY(0);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin: 20px;
}

.product-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 150px; 
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0; 
}

.product-title {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}



@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; 
        gap: 10px;
    }

    .product-box {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .product-title {
        font-size: 16px; 
        padding: 8px;
    }

    .product-image {
        height: 120px; 
    }
}



 .fa-phone {
      display: inline-block;
    }

   
       
.download-button {
    display: inline-flex;
    align-items: center;
    background-color: #4CAF50;
    color: white;
    font-size: 14px;
    padding: 8px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #4CAF50;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-button i {
    margin-right: 10px; 
    font-size: 18px;
}

.download-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.download-button:active {
    background-color: #388e3c;
    transform: translateY(0);
}

.g67{
background-color: #FFFFFF;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23a691ff'/%3E%3Cstop offset='1' stop-color='%23a691ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23eff9ff'/%3E%3Cstop offset='1' stop-color='%23eff9ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c' cx='600' cy='0' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23819cff'/%3E%3Cstop offset='1' stop-color='%23819cff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d' cx='600' cy='800' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23FFFFFF'/%3E%3Cstop offset='1' stop-color='%23FFFFFF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='e' cx='0' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%234E23FF'/%3E%3Cstop offset='1' stop-color='%234E23FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='f' cx='1200' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23DEF3FF'/%3E%3Cstop offset='1' stop-color='%23DEF3FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3Crect fill='url(%23c)' width='1200' height='800'/%3E%3Crect fill='url(%23d)' width='1200' height='800'/%3E%3Crect fill='url(%23e)' width='1200' height='800'/%3E%3Crect fill='url(%23f)' width='1200' height='800'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;}

.g22{
	background-color: #1C88FF;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23203fff'/%3E%3Cstop offset='1' stop-color='%23203fff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%230a4299'/%3E%3Cstop offset='1' stop-color='%230a4299' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c' cx='600' cy='0' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%230a129c'/%3E%3Cstop offset='1' stop-color='%230a129c' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d' cx='600' cy='800' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%231C88FF'/%3E%3Cstop offset='1' stop-color='%231C88FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='e' cx='0' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%234E23FF'/%3E%3Cstop offset='1' stop-color='%234E23FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='f' cx='1200' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23050F25'/%3E%3Cstop offset='1' stop-color='%23050F25' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3Crect fill='url(%23c)' width='1200' height='800'/%3E%3Crect fill='url(%23d)' width='1200' height='800'/%3E%3Crect fill='url(%23e)' width='1200' height='800'/%3E%3Crect fill='url(%23f)' width='1200' height='800'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

.bt8{
	border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;background-color:white;padding-left:4px;padding-right:7px;font-size:15px;color:black;
}
.bt9{
	border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;background-color:#F0F0F0;padding-left:4px;padding-right:7px;font-size:15px;color:black;
}
.men{
	float:left;margin-left:2%;padding-top:3px;
}
.ft3{
	background-color: #6100CC;
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='%236100CC' width='11' height='11'/%3E%3Crect fill='%236007cd' x='10' width='11' height='11'/%3E%3Crect fill='%23600ece' y='10' width='11' height='11'/%3E%3Crect fill='%235f13cf' x='20' width='11' height='11'/%3E%3Crect fill='%235f18d0' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%235e1cd1' y='20' width='11' height='11'/%3E%3Crect fill='%235d1fd1' x='30' width='11' height='11'/%3E%3Crect fill='%235d22d2' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%235c25d3' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%235c28d4' y='30' width='11' height='11'/%3E%3Crect fill='%235b2ad5' x='40' width='11' height='11'/%3E%3Crect fill='%235a2dd6' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%235a2fd6' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%235932d7' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%235934d8' y='40' width='11' height='11'/%3E%3Crect fill='%235836d9' x='50' width='11' height='11'/%3E%3Crect fill='%235838d9' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23573ada' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23573cdb' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23563edc' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%235640dc' y='50' width='11' height='11'/%3E%3Crect fill='%235542dd' x='60' width='11' height='11'/%3E%3Crect fill='%235543de' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%235545de' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%235447df' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%235449e0' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23544ae0' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23534ce1' x='70' width='11' height='11'/%3E%3Crect fill='%23534ee1' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23534fe2' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%235251e3' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%235252e3' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%235254e4' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%235256e4' x='80' width='11' height='11'/%3E%3Crect fill='%235257e5' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%235159e5' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23515ae6' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23515ce6' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23515de7' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23515fe7' x='90' width='11' height='11'/%3E%3Crect fill='%235160e8' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%235161e8' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%235163e8' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%235164e9' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%235266e9' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%235267ea' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%235269ea' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23526aea' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23526beb' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23536deb' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23536eeb' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23536fec' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%235471ec' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%235472ec' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%235473ed' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%235575ed' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%235576ed' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%235677ed' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%235679ee' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23577AEE' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.box {
  width: 60vmin;
  height: 50vmin;
  display: grid;
  place-content: center;
  color: white;
  text-shadow: 0 1px 0 #000;
  
  --border-angle: 0turn; // For animation.
  --main-bg: conic-gradient(
      from var(--border-angle),
      #213,
      #112 5%,
      #112 60%,
      #213 95%
    );
  
  border: solid 5px transparent;
  border-radius: 2em;
  --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #08f, #f03 99%, transparent);
  
  background: 
    // padding-box clip this background in to the overall element except the border.
    var(--main-bg) padding-box,
    // border-box extends this background to the border space
    var(--gradient-border) border-box, 
    // Duplicate main background to fill in behind the gradient border. You can remove this if you want the border to extend "outside" the box background.
    var(--main-bg) border-box;
  
  background-position: center center;

  animation: bg-spin 3s linear infinite;
  @keyframes bg-spin {
    to {
      --border-angle: 1turn;
    }
  }

  &:hover {
    animation-play-state: paused;
  }
}

@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

.top1{
	padding:50px;padding-right:140px;padding-left:140px;padding-bottom:80px;
}
.top2{
	background-color: #01562A;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 1000'%3E%3Cg %3E%3Ccircle fill='%2301562A' cx='50' cy='0' r='50'/%3E%3Cg fill='%23055a2b' %3E%3Ccircle cx='0' cy='50' r='50'/%3E%3Ccircle cx='100' cy='50' r='50'/%3E%3C/g%3E%3Ccircle fill='%230a5e2c' cx='50' cy='100' r='50'/%3E%3Cg fill='%230f622d' %3E%3Ccircle cx='0' cy='150' r='50'/%3E%3Ccircle cx='100' cy='150' r='50'/%3E%3C/g%3E%3Ccircle fill='%2314672d' cx='50' cy='200' r='50'/%3E%3Cg fill='%23196b2e' %3E%3Ccircle cx='0' cy='250' r='50'/%3E%3Ccircle cx='100' cy='250' r='50'/%3E%3C/g%3E%3Ccircle fill='%231d6f2e' cx='50' cy='300' r='50'/%3E%3Cg fill='%2322732f' %3E%3Ccircle cx='0' cy='350' r='50'/%3E%3Ccircle cx='100' cy='350' r='50'/%3E%3C/g%3E%3Ccircle fill='%2327772f' cx='50' cy='400' r='50'/%3E%3Cg fill='%232c7c2f' %3E%3Ccircle cx='0' cy='450' r='50'/%3E%3Ccircle cx='100' cy='450' r='50'/%3E%3C/g%3E%3Ccircle fill='%2331802f' cx='50' cy='500' r='50'/%3E%3Cg fill='%2335842f' %3E%3Ccircle cx='0' cy='550' r='50'/%3E%3Ccircle cx='100' cy='550' r='50'/%3E%3C/g%3E%3Ccircle fill='%233a882f' cx='50' cy='600' r='50'/%3E%3Cg fill='%23408c2f' %3E%3Ccircle cx='0' cy='650' r='50'/%3E%3Ccircle cx='100' cy='650' r='50'/%3E%3C/g%3E%3Ccircle fill='%2345912e' cx='50' cy='700' r='50'/%3E%3Cg fill='%234a952e' %3E%3Ccircle cx='0' cy='750' r='50'/%3E%3Ccircle cx='100' cy='750' r='50'/%3E%3C/g%3E%3Ccircle fill='%234f992d' cx='50' cy='800' r='50'/%3E%3Cg fill='%23559d2c' %3E%3Ccircle cx='0' cy='850' r='50'/%3E%3Ccircle cx='100' cy='850' r='50'/%3E%3C/g%3E%3Ccircle fill='%235aa22b' cx='50' cy='900' r='50'/%3E%3Cg fill='%2360a62a' %3E%3Ccircle cx='0' cy='950' r='50'/%3E%3Ccircle cx='100' cy='950' r='50'/%3E%3C/g%3E%3Ccircle fill='%2366AA29' cx='50' cy='1000' r='50'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: contain;
}
.bg87{
background-color: #FFFFFF;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='600' y1='25' x2='600' y2='777'%3E%3Cstop offset='0' stop-color='%23FFFFFF'/%3E%3Cstop offset='1' stop-color='%23FFFFFF'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='650' y1='25' x2='650' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23f3f3f6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='700' y1='25' x2='700' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23e7e7ec'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' gradientUnits='userSpaceOnUse' x1='750' y1='25' x2='750' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23d9d9e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' gradientUnits='userSpaceOnUse' x1='800' y1='25' x2='800' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cbcbd8'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' gradientUnits='userSpaceOnUse' x1='850' y1='25' x2='850' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23bcbccd'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' gradientUnits='userSpaceOnUse' x1='900' y1='25' x2='900' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23acacc1'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' gradientUnits='userSpaceOnUse' x1='950' y1='25' x2='950' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%239a9ab5'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' gradientUnits='userSpaceOnUse' x1='1000' y1='25' x2='1000' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%238585a7'/%3E%3C/linearGradient%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='1050' y1='25' x2='1050' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%236d6d99'/%3E%3C/linearGradient%3E%3ClinearGradient id='k' gradientUnits='userSpaceOnUse' x1='1100' y1='25' x2='1100' y2='777'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%234d4d89'/%3E%3C/linearGradient%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='1150' y1='25' x2='1150' y2='777'%3E%3Cstop offset='0' stop-color='%23FFFFFF'/%3E%3Cstop offset='1' stop-color='%23007'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg %3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' x='100' width='1100' height='800'/%3E%3Crect fill='url(%23c)' x='200' width='1000' height='800'/%3E%3Crect fill='url(%23d)' x='300' width='900' height='800'/%3E%3Crect fill='url(%23e)' x='400' width='800' height='800'/%3E%3Crect fill='url(%23f)' x='500' width='700' height='800'/%3E%3Crect fill='url(%23g)' x='600' width='600' height='800'/%3E%3Crect fill='url(%23h)' x='700' width='500' height='800'/%3E%3Crect fill='url(%23i)' x='800' width='400' height='800'/%3E%3Crect fill='url(%23j)' x='900' width='300' height='800'/%3E%3Crect fill='url(%23k)' x='1000' width='200' height='800'/%3E%3Crect fill='url(%23l)' x='1100' width='100' height='800'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;


}
.bg19{
	background-color: #330000;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 400'%3E%3Cdefs%3E%3CradialGradient id='a' cx='396' cy='281' r='514' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2366339A'/%3E%3Cstop offset='1' stop-color='%23330000'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='400' y1='148' x2='400' y2='333'%3E%3Cstop offset='0' stop-color='%2366339A' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2366339A' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0.4'%3E%3Ccircle fill='url(%23b)' cx='267.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='532.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='400' cy='30' r='300'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.bg20{
	background-color: #FFFAFA;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='600' y1='25' x2='600' y2='777'%3E%3Cstop offset='0' stop-color='%23FFFAFA'/%3E%3Cstop offset='1' stop-color='%23E5E5E5'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='650' y1='25' x2='650' y2='777'%3E%3Cstop offset='0' stop-color='%23fff6f6'/%3E%3Cstop offset='1' stop-color='%23e4e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='700' y1='25' x2='700' y2='777'%3E%3Cstop offset='0' stop-color='%23fef3f3'/%3E%3Cstop offset='1' stop-color='%23e3e3e3'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' gradientUnits='userSpaceOnUse' x1='750' y1='25' x2='750' y2='777'%3E%3Cstop offset='0' stop-color='%23fdf0f0'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' gradientUnits='userSpaceOnUse' x1='800' y1='25' x2='800' y2='777'%3E%3Cstop offset='0' stop-color='%23fbeded'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' gradientUnits='userSpaceOnUse' x1='850' y1='25' x2='850' y2='777'%3E%3Cstop offset='0' stop-color='%23f9ebeb'/%3E%3Cstop offset='1' stop-color='%23e0e0e0'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' gradientUnits='userSpaceOnUse' x1='900' y1='25' x2='900' y2='777'%3E%3Cstop offset='0' stop-color='%23f7e9e9'/%3E%3Cstop offset='1' stop-color='%23dedede'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' gradientUnits='userSpaceOnUse' x1='950' y1='25' x2='950' y2='777'%3E%3Cstop offset='0' stop-color='%23f4e7e7'/%3E%3Cstop offset='1' stop-color='%23dddddd'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' gradientUnits='userSpaceOnUse' x1='1000' y1='25' x2='1000' y2='777'%3E%3Cstop offset='0' stop-color='%23f1e6e6'/%3E%3Cstop offset='1' stop-color='%23dcdcdc'/%3E%3C/linearGradient%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='1050' y1='25' x2='1050' y2='777'%3E%3Cstop offset='0' stop-color='%23ede5e5'/%3E%3Cstop offset='1' stop-color='%23dbdbdb'/%3E%3C/linearGradient%3E%3ClinearGradient id='k' gradientUnits='userSpaceOnUse' x1='1100' y1='25' x2='1100' y2='777'%3E%3Cstop offset='0' stop-color='%23e9e5e5'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='1150' y1='25' x2='1150' y2='777'%3E%3Cstop offset='0' stop-color='%23E5E5E5'/%3E%3Cstop offset='1' stop-color='%23D9D9D9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg %3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' x='100' width='1100' height='800'/%3E%3Crect fill='url(%23c)' x='200' width='1000' height='800'/%3E%3Crect fill='url(%23d)' x='300' width='900' height='800'/%3E%3Crect fill='url(%23e)' x='400' width='800' height='800'/%3E%3Crect fill='url(%23f)' x='500' width='700' height='800'/%3E%3Crect fill='url(%23g)' x='600' width='600' height='800'/%3E%3Crect fill='url(%23h)' x='700' width='500' height='800'/%3E%3Crect fill='url(%23i)' x='800' width='400' height='800'/%3E%3Crect fill='url(%23j)' x='900' width='300' height='800'/%3E%3Crect fill='url(%23k)' x='1000' width='200' height='800'/%3E%3Crect fill='url(%23l)' x='1100' width='100' height='800'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
#niaz1{
	float:right;width:35%;
}
#niaz2{
	float:right;width:35%;margin-right:2%;
}
#niaz3{
	float:left;width:26%;
}

.hf3{
	padding-top:16px;padding-bottom:46px;
}

.ef1{
	
}

.ef2{
	
}
.ef3{
	
}
.ef3:hover{
animation:heartbeat 1.5s ease-in-out infinite both}

@keyframes heartbeat{from{transform:scale(1);transform-origin:center center;animation-timing-function:ease-out}10%{transform:scale(.91);animation-timing-function:ease-in}17%{transform:scale(.98);animation-timing-function:ease-out}33%{transform:scale(.87);animation-timing-function:ease-in}45%{transform:scale(1);animation-timing-function:ease-out}}


.ef2:hover{
	border:2px blue solid;margin-top:10px;background-color:#F0F0F0;
}
.ef1:hover{-webkit-animation:rotate-scale-down-ver .65s linear both;animation:rotate-scale-down-ver .65s linear both}


@-webkit-keyframes rotate-scale-down-ver{0%{-webkit-transform:scale(1) rotateY(0);transform:scale(1) rotateY(0)}50%{-webkit-transform:scale(.5) rotateY(180deg);transform:scale(.5) rotateY(180deg)}100%{-webkit-transform:scale(1) rotateY(360deg);transform:scale(1) rotateY(360deg)}}@keyframes rotate-scale-down-ver{0%{-webkit-transform:scale(1) rotateY(0);transform:scale(1) rotateY(0)}50%{-webkit-transform:scale(.5) rotateY(180deg);transform:scale(.5) rotateY(180deg)}100%{-webkit-transform:scale(1) rotateY(360deg);transform:scale(1) rotateY(360deg)}}

#mosha{
	width:100%;background:#2836CC;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;display:table;margin-bottom:10px;color:white;
	
}

.hdf{
	float:right;width:60%;line-height:50px;font-size:27px;
}
.wx1{
	position:relative;padding-bottom:50px;background-color:#F0F0F0;
}
.dyr{
	width:90%;display:table;position:absolute;bottom:-30px; left:5%;z-index:999;
}
.men8{
	position:absolute;bottom:-35px;width:90%;left:5%;height:60px;background-color:#0F6BA2;z-index:99999;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;text-align:center;display:table;
}
.tit1{
	font-size:25px;font-weight:bold;color:#2956B5;
}
.tit2{
	font-size:20px;padding-top:4px;color:#333333;
}
#tarmob{
	display:none;padding-top:20px;width:100%;
}

.bg85{
background-color: #2836CC;
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='%232836CC' width='11' height='11'/%3E%3Crect fill='%233039cd' x='10' width='11' height='11'/%3E%3Crect fill='%23373ccd' y='10' width='11' height='11'/%3E%3Crect fill='%233d3fce' x='20' width='11' height='11'/%3E%3Crect fill='%234342cf' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%234844cf' y='20' width='11' height='11'/%3E%3Crect fill='%234d47d0' x='30' width='11' height='11'/%3E%3Crect fill='%23524ad1' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23564dd2' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%235a50d2' y='30' width='11' height='11'/%3E%3Crect fill='%235e53d3' x='40' width='11' height='11'/%3E%3Crect fill='%236256d4' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%236659d4' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%236a5cd5' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%236e5fd6' y='40' width='11' height='11'/%3E%3Crect fill='%237162d6' x='50' width='11' height='11'/%3E%3Crect fill='%237565d7' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%237868d7' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%237c6bd8' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%237f6ed9' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%238271d9' y='50' width='11' height='11'/%3E%3Crect fill='%238674da' x='60' width='11' height='11'/%3E%3Crect fill='%238977db' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%238c7adb' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%238f7ddc' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%239280dc' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%239583dd' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%239886de' x='70' width='11' height='11'/%3E%3Crect fill='%239b89de' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%239e8ddf' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23a190df' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23a493e0' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23a796e1' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23a999e1' x='80' width='11' height='11'/%3E%3Crect fill='%23ac9ce2' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23af9fe2' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23b2a3e3' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23b5a6e3' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23b7a9e4' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23baace4' x='90' width='11' height='11'/%3E%3Crect fill='%23bdafe5' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23bfb3e5' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23c2b6e6' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23c5b9e6' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23c7bce7' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23cac0e8' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23cdc3e8' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23cfc6e9' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23d2c9e9' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23d5cde9' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23d7d0ea' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23dad3ea' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23dcd7eb' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23dfdaeb' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23e1ddec' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23e4e1ec' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23e6e4ed' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23e9e7ed' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23ebebee' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23EEEEEE' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;}
#box21{
	float:right;width:23%;margin-bottom:2.7%;height:200px;
}
#box22{
	float:right;width:23%;margin-right:2.7%;margin-bottom:2.7%;height:200px;
}
#box23{
	float:right;width:23%;margin-right:2.7%;margin-bottom:2.7%;height:200px;
}
#box24{
	float:left;width:23%;margin-bottom:2.7%;height:200px;
}
#title1{
	float:right;font-size:28px;
}
#tar{
	float:left;margin-top:12px;width:220px;
}
#fil{
	display:inline-block;width:600px;margin-top:13px;margin-bottom:13px
}
.pc{
display:block;

}
.mob{
display:none;

}
#ax1{
	max-width:80%;
            border-radius: 15px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease; 
            object-fit: cover;
            display: block; 
            margin: 20px auto;
            margin-top:30px;margin-bottom:30px;
	}
	#ax1:hover{
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); 
            transform: translateY(-5px) scale(1.05); 
}
strong{
	color:#333333;font-size:17px;
}
.myButton {
	box-shadow: 0px 10px 14px -7px #3e7327;
	background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
	background-color:#77b55a;
	border-radius:4px;
	border:1px solid #4b8f29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:13px;
	font-weight:bold;
	padding:6px 12px;
	text-decoration:none;
	text-shadow:0px 1px 0px #5b8a3c;
}
.myButton:hover {
	background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
	background-color:#72b352;
}
.myButton:active {
	position:relative;
	top:1px;
}

        
.bby{
	width:100%;padding:8px;border:1px silver solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#sef1{
	float:right;width:40%;
}


.kenburns-bottom-left{-webkit-animation:kenburns-bottom-left 5s ease-out both;animation:kenburns-bottom-left 5s ease-out both}
@-webkit-keyframes kenburns-bottom-left{0%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0);-webkit-transform-origin:16% 84%;transform-origin:16% 84%}100%{-webkit-transform:scale(1.25) translate(-20px,15px);transform:scale(1.25) translate(-20px,15px);-webkit-transform-origin:left bottom;transform-origin:left bottom}}@keyframes kenburns-bottom-left{0%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0);-webkit-transform-origin:16% 84%;transform-origin:16% 84%}100%{-webkit-transform:scale(1.25) translate(-20px,15px);transform:scale(1.25) translate(-20px,15px);-webkit-transform-origin:left bottom;transform-origin:left bottom}}

.bv1{
	border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;-webkit-box-shadow: 5px 5px 20px 5px rgba(51,3,105,0.47);
-moz-box-shadow: 5px 5px 20px 5px rgba(51,3,105,0.47);
box-shadow: 5px 5px 20px 5px rgba(51,3,105,0.47);z-index:9999999999999999999999999999999999999999
}
.bv1:hover{
	border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;-webkit-box-shadow: 2px 2px 10px 8px rgba(51,3,105,0.47);
-moz-box-shadow: 2px 2px 10px 8px rgba(51,3,105,0.47);
box-shadow: 2px 2px 10px 8px rgba(51,3,105,0.47);}
#lz1{
	float:right;width:15%;
}
#lz2{
	float:right;width:15%;margin-right:6%;
}
#lz3{
	float:right;width:15%;margin-right:6%;
}
#lz4{
	float:right;width:15%;margin-right:6%;
}
#lz5{
	float:left;width:15%;
}


.f66{
	background-color: #004E38;
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='%23004E38' width='11' height='11'/%3E%3Crect fill='%23005039' x='10' width='11' height='11'/%3E%3Crect fill='%2300513a' y='10' width='11' height='11'/%3E%3Crect fill='%2300533b' x='20' width='11' height='11'/%3E%3Crect fill='%2300543c' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%2300563e' y='20' width='11' height='11'/%3E%3Crect fill='%2300573f' x='30' width='11' height='11'/%3E%3Crect fill='%23005940' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23005a41' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23005c42' y='30' width='11' height='11'/%3E%3Crect fill='%23005d43' x='40' width='11' height='11'/%3E%3Crect fill='%23005f44' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23006045' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23006246' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23006448' y='40' width='11' height='11'/%3E%3Crect fill='%23006549' x='50' width='11' height='11'/%3E%3Crect fill='%2300674a' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%2300684b' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23006a4c' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23006b4d' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23006d4e' y='50' width='11' height='11'/%3E%3Crect fill='%23006f50' x='60' width='11' height='11'/%3E%3Crect fill='%23007051' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23007252' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23007353' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23007554' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23007755' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23007856' x='70' width='11' height='11'/%3E%3Crect fill='%23007a58' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23007c59' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23007d5a' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23007f5b' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%2300805c' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%2300825d' x='80' width='11' height='11'/%3E%3Crect fill='%2300845e' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23008560' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23008761' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23008962' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23008a63' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23008c64' x='90' width='11' height='11'/%3E%3Crect fill='%23008e66' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23008f67' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23009168' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23009369' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%2300946a' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%2300966b' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%2300986d' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%2300996e' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23009b6f' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23009d70' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23009f71' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%2300a072' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%2300a274' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%2300a475' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%2300a576' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%2300a777' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%2300a978' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%2300ab7a' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%2300ac7b' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%2300AE7C' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.nnz1{
	background-color: #FFE549;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23d1ff5c'/%3E%3Cstop offset='1' stop-color='%23d1ff5c' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%237aff75'/%3E%3Cstop offset='1' stop-color='%237aff75' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c' cx='600' cy='0' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2388ffb6'/%3E%3Cstop offset='1' stop-color='%2388ffb6' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d' cx='600' cy='800' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23FFE549'/%3E%3Cstop offset='1' stop-color='%23FFE549' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='e' cx='0' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2399FF6E'/%3E%3Cstop offset='1' stop-color='%2399FF6E' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='f' cx='1200' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23A2F8FF'/%3E%3Cstop offset='1' stop-color='%23A2F8FF' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3Crect fill='url(%23c)' width='1200' height='800'/%3E%3Crect fill='url(%23d)' width='1200' height='800'/%3E%3Crect fill='url(%23e)' width='1200' height='800'/%3E%3Crect fill='url(%23f)' width='1200' height='800'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.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}}
.what{
	position:fixed;left:2%;bottom:30%;z-index:99999999999999999;padding:10px;background-color:#00FF00;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
.zzq{
	
}
.zzq:hover{-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}}
.mp1{
	display: flex;
  justify-content: center;
  align-items: center;
  width:100%;border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;;border:1px silver solid;;height:200px;text-align:center;
}
.fj1{
	background-color: #F40203;
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 fill-opacity='0.95'%3E%3Crect fill='%23F40203' width='11' height='11'/%3E%3Crect fill='%23f10104' x='10' width='11' height='11'/%3E%3Crect fill='%23ef0104' y='10' width='11' height='11'/%3E%3Crect fill='%23ec0005' x='20' width='11' height='11'/%3E%3Crect fill='%23e90005' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23e60006' y='20' width='11' height='11'/%3E%3Crect fill='%23e40006' x='30' width='11' height='11'/%3E%3Crect fill='%23e10006' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23de0007' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23db0007' y='30' width='11' height='11'/%3E%3Crect fill='%23d90007' x='40' width='11' height='11'/%3E%3Crect fill='%23d60008' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23d30008' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23d10008' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23ce0009' y='40' width='11' height='11'/%3E%3Crect fill='%23cb0009' x='50' width='11' height='11'/%3E%3Crect fill='%23c90009' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23c60009' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23c3000a' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23c1000a' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23be000a' y='50' width='11' height='11'/%3E%3Crect fill='%23bb000a' x='60' width='11' height='11'/%3E%3Crect fill='%23b9000a' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23b6000a' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23b3000a' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23b1000a' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23ae000a' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23ab000a' x='70' width='11' height='11'/%3E%3Crect fill='%23a9000a' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23a6000a' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23a4000a' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23a1000a' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%239e000a' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%239c000a' x='80' width='11' height='11'/%3E%3Crect fill='%2399000a' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%2397000a' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%2394000a' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%2391000a' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%238f000a' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%238c000a' x='90' width='11' height='11'/%3E%3Crect fill='%238a0009' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23870009' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23850009' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23820009' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23800008' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%237d0008' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%237b0008' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23780007' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23760007' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23730006' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23710006' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%236e0005' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%236c0005' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23690004' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23670104' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23650103' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23620103' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23600102' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%235d0102' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%235B0101' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.bbz{
background-color: #ffff00;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3CradialGradient id='a' cx='0' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ff8000'/%3E%3Cstop offset='1' stop-color='%23ff8000' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='b' cx='1200' cy='800' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2300ff19'/%3E%3Cstop offset='1' stop-color='%2300ff19' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='c' cx='600' cy='0' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%239900ff'/%3E%3Cstop offset='1' stop-color='%239900ff' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='d' cx='600' cy='800' r='600' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ffff00'/%3E%3Cstop offset='1' stop-color='%23ffff00' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='e' cx='0' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23FF0000'/%3E%3Cstop offset='1' stop-color='%23FF0000' stop-opacity='0'/%3E%3C/radialGradient%3E%3CradialGradient id='f' cx='1200' cy='0' r='800' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%230CF'/%3E%3Cstop offset='1' stop-color='%230CF' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='1200' height='800'/%3E%3Crect fill='url(%23b)' width='1200' height='800'/%3E%3Crect fill='url(%23c)' width='1200' height='800'/%3E%3Crect fill='url(%23d)' width='1200' height='800'/%3E%3Crect fill='url(%23e)' width='1200' height='800'/%3E%3Crect fill='url(%23f)' width='1200' height='800'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;}
#box11{
	float:right;width:24%;margin-bottom:2%;-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px silver solid;
}
#box12{
	float:right;width:24%;margin-bottom:2%;margin-right:1.3%;-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px silver solid;

}
#box13{
	float:right;width:24%;margin-bottom:2%;margin-right:1.3%;-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px silver solid;

}
#box14{
	float:left;width:24%;margin-bottom:2%;-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px silver solid;

}
#ax10{
	max-width:90%;margin-top:15px;margin-bottom:15px;border:2px #FFCC00 solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
}

.wobble-hor-bottom{-webkit-animation:wobble-hor-bottom .8s both;animation:wobble-hor-bottom .8s both}

.rotate-center {
	-webkit-animation: rotate-center 0.6s ease-in-out both;
	        animation: rotate-center 0.6s ease-in-out both;
}

.bg81{
	background:white;
}
.bgs1{
	background-color: #ffaa00;
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='%23ffb100' 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='%23ffb800' 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='%23ffbe00' 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='%23ffc500' 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='%23ffcc00' 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='%23ffd914' 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='%23ffe529' 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='%23ffef3d' 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='%23fff852' 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='%23ffff66' 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;
}
.bgs2{
	background-color: #140340;
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='%23140340' width='11' height='11'/%3E%3Crect fill='%23140341' x='10' width='11' height='11'/%3E%3Crect fill='%23140442' y='10' width='11' height='11'/%3E%3Crect fill='%23140443' x='20' width='11' height='11'/%3E%3Crect fill='%23140444' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23140445' y='20' width='11' height='11'/%3E%3Crect fill='%23140446' x='30' width='11' height='11'/%3E%3Crect fill='%23140547' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23140548' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%2315054a' y='30' width='11' height='11'/%3E%3Crect fill='%2315054b' x='40' width='11' height='11'/%3E%3Crect fill='%2315054c' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%2315054d' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%2315064e' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%2315064f' y='40' width='11' height='11'/%3E%3Crect fill='%23150650' x='50' width='11' height='11'/%3E%3Crect fill='%23150651' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23150652' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23150653' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23160654' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23160656' y='50' width='11' height='11'/%3E%3Crect fill='%23160657' x='60' width='11' height='11'/%3E%3Crect fill='%23160658' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23160659' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%2316065a' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%2316065b' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%2316065c' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%2316065d' x='70' width='11' height='11'/%3E%3Crect fill='%2316065f' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23160660' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23160661' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23160662' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23160663' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23160664' x='80' width='11' height='11'/%3E%3Crect fill='%23160765' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23160767' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23160768' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23160769' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%2316076a' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%2316076b' x='90' width='11' height='11'/%3E%3Crect fill='%2316076c' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%2316076e' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%2316076f' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23160770' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23160771' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23160772' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23150773' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23150775' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23150776' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23150777' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23150778' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23150779' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%2315087b' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%2314087c' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%2314087d' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%2314087e' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%2314087f' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23140881' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23130882' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23130883' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
#tel{
	float:right;
}
#teli{
	float:right;border:1px silver solid;padding:2px;padding-right:5px;padding-left:5px;background:#00CC00;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#teli2{
	float:right;border:1px silver solid;padding:2px;padding-right:5px;padding-left:5px;background:#00CC00;margin-right:6px;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}

#pr1 {
    width: 45%;
    float: right;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pr1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#pr1 img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

#pr1 .product-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

#pr2{
width:53%;float:left;
}

#f1{
	float:right;width:30%;
}
#f2{
	float:right;width:65%;
}
#f3{
	float:left;width:30%;
}
#con1{
	float:right;width:60%;
}
#con2{
	float:left;width:37%;
}
#menu2{
	display:none;
}
#prod1{
	float:right;width:24%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%; background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.5), inset -2px -2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#prod1:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
#prod2{
	float:right;width:24%;margin-right:1.3%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%; background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.5), inset -2px -2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}
#prod2:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
#prod3{
	float:right;width:24%;margin-right:1.3%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%; background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.5), inset -2px -2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}
#prod3:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
#prod4{
	float:left;width:24%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%; background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.5), inset -2px -2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}
#prod4:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}
.mo{
	padding:3px;padding-right:30px;padding-left:30px;border:2px yellow solid;cursor:pointer;
}
.mo:hover{
	border-radius: 22px 22px 22px 22px;
-moz-border-radius: 22px 22px 22px 22px;
-webkit-border-radius: 22px 22px 22px 22px;
}


#vnp1{
	float:right;width:23%;border:1px #E1E1E1 solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;margin-bottom:2.7%;
}
#vnp2{
	float:right;width:23%;margin-right:2%;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px #E1E1E1 solid;margin-bottom:2.7%;
}
#vnp3{
	float:right;width:23%;margin-right:2%;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px #E1E1E1 solid;margin-bottom:2.7%;
}
#vnp4{
	float:left;width:23%;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px #E1E1E1 solid;margin-bottom:2.7%;
}



#np1{
	float:right;width:32%;border:1px #E1E1E1 solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;margin-bottom:2%;
}
#np2{
	float:right;width:32%;margin-right:2%;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px #E1E1E1 solid;margin-bottom:2%;
}
#np3{
	float:left;width:32%;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;border:1px #E1E1E1 solid;margin-bottom:2%;
}
#cat1{
	float:right;width:32%;background-color:white;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#cat2{
	float:right;width:32%;margin-right:2%;background-color:white;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#cat3{
	float:left;width:32%;background-color:white;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;

}
#cat4{
	float:left;width:24%;
}
.bg82{
background-color: #ffaa00;
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='%23f4ff00' 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='%2395ff00' 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='%2335ff00' 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='%2300ff2a' 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='%2300FF8A' 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='%2327ff9f' 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='%234dffb3' 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='%2374ffc5' 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='%239affd7' 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='%23C1FFE7' 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;}
#ab1{
	float:left;width:29%;line-height:33px;text-align:justify;
}
#ab2{
	float:right;width:68%;line-height:33px;text-align:justify;
}
.btn8{
	padding:4px;padding-right:22px;cursor:pointer;
}
.btn8:hover{
	color:blue;font-weight:bold;
}
.rad{
width:100%;padding:5px;border:1px silver solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;background-color:#F0F0F0;}

#lang{
	float:right;margin-top:4px;
}
.lng{
	padding:2px;font-size:14px;padding-right:10px;padding-left:10px;background:#CCCCCC;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;color:blue;

}
#sos{
	float:left;padding-top:4px;
}
#phone{
	float:left;margin-left:5%;font-size:19px;margin-top:3px;
}
#menu{
float:right;margin-top:14px;
}
@font-face {
    font-family: 'weblogmayekan';
	font-style: normal;
	font-weight: 400;
    font-display: swap;
	
	src: url('/fonts/IRANYekanX-Light.woff') format('woff'),   
	url('/fonts/IRANYekanX-Light.woff2') format('woff2');		
}
@font-face {
	font-family: fontb;
	font-style: normal;
	font-weight: 600;
	    font-display: swap;

	src: url('/fonts/IRANYekanX-DemiBold.woff') format('woff'),   
	url('/fonts/IRANYekanX-DemiBold.woff2') format('woff2');	 
}
@font-face {
	font-family: font3;
	font-style: normal;
	font-weight: 800;
	    font-display: swap;

	src: url('/fonts/IRANYekanX-ExtraBold.woff') format('woff'),   
	url('/fonts/IRANYekanX-ExtraBold.woff2') format('woff2');		 
}



@font-face {
	font-family: peyda;
	    font-display: swap;

	src: url('/fonts/PeydaWeb-ExtraBold.woff') format('woff'),   
	url('/fonts/PeydaWeb-ExtraBold.woff2') format('woff2');		 
}

@font-face {
	font-family: font1;
	font-style: normal;
	font-weight: 600;
	    font-display: swap;

	src: url('/fonts/IRANYekanX-DemiBold.woff') format('woff'),   
	url('/fonts/IRANYekanX-DemiBold.woff2') format('woff2');	 
}
@font-face {
	font-family: font2;
	font-style: normal;
	font-weight: 1000;
	    font-display: swap;

	src: url('/fonts/IRANYekanX-Heavy.woff') format('woff'),   
	url('/fonts/IRANYekanX-Heavy.woff2') format('woff2');		 
}

@font-face {
	font-family: "primary-font";
	font-style: normal;
	font-weight: 500;
	    font-display: swap;

	src: url('/fonts/IRANYekanX-Light.woff') format('woff'),   
	url('/fonts/IRANYekanX-Light.woff2') format('woff2');	
}


#search{
	width:100%;
}
*{
	font-family:weblogmayekan;font-size:17px;
}

#container { direction: rtl; width: 100%; margin: 0 auto;background-color:white;}
body{
background-color:#F0F0F0;
}
a:hover {
    text-decoration:none;
    }
#content1{
height:auto;margin-bottom:0px;
}#ccontent1{
width:90%; margin: 0 auto;display:table ;height:auto;
}
#logo{
float:left;
}
#title{
float:right;margin-right:0px;margin-top:15px;text-align:right;line-height:32px;
}
#k{
width:24%;height:370px;display:inline-block;margin:0.1%;border:1px silver solid;-webkit-border-top-left-radius: 25px;
-webkit-border-bottom-right-radius: 25px;
-moz-border-radius-topleft: 25px;
-moz-border-radius-bottomright: 25px;
border-top-left-radius: 25px;
border-bottom-right-radius: 25px;margin-bottom:15px;background:white;}

#kk{
width:24%;height:200px;display:inline-block;margin:0.3%;border:1px silver solid;--webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;margin-bottom:15px;background:#000066;}





#mob{
display:none;
}
#box2{
width:240px;height:200px;display:inline-block;margin:15px;
}
#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;
}
.rotate{
transition: 1s ease;
}

.rotate:hover{
-webkit-transform: rotateZ(-10deg);
-ms-transform: rotateZ(-10deg);
transform: rotateZ(-10deg);
transition: 1s ease;
}
h1 {
    font-size: 24px;
    line-height: 1.7;
    white-space: normal; 
    word-wrap: break-word;
    margin: 0;
    font-family:fontb;

    padding: 0;
}h2{
font-size:16px;padding:0px;margin:0px;font-weight:bold;color:#333333;
}
h3{
font-size:14px;padding:0px;margin:0px;
}
@media only screen and (max-width: 1200px) {

#ccontent1{
width:1050px;
}
#nnews1{
float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:870px;float:left;
}
#ninews{
height:100px;width:150px;
}

#mob{
display:block;
}


}
@media only screen and (max-width: 1050px) {


#ccontent1{
width:850px;
}
#nnews1{
float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:670px;float:left;
}
#ninews{
height:100px;width:150px;
}





}


@media only screen and (max-width: 800px) {
#ccontent1{
width:720px;
}
#menu2{
display:block;
}
#menu{
display:none;
}




#u1{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#u2{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#u3{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#u4{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#u5{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#u6{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}


#p1{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#p2{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#p3{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}
#p4{
width:48%;display:inline-block;margin:0x;margin:0.3%;margin-bottom:1%;float:none;
}

#r1{
width:100%;;
}
#l1{
width:100%;padding-top:5px;margin-top:5px;border-top:1px silver solid;
}

#copy{
width:100%;text-align:center;padding-bottom:10px;
}
#insta{
width:100%;text-align:center;
}

#nnews1{
float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:490px;float:left;
}
#ninews{
height:100px;width:150px;
}
#k1{
width:48%;margin:0.8%;border:0px;
}
#k2{
width:48%;margin:0.8%;border:0px;
}
#k3{
width:48%;margin:0.8%;border:0px;
}
#k4{
width:48%;margin:0.8%;border:0px;
}

.cols {
    -moz-column-count:2;
    -moz-column-gap: 3%;
    -moz-column-width: 45%;
    -webkit-column-count:3;
    -webkit-column-gap: 3%;
    -webkit-column-width: 45%;
    column-count: 2;
    column-gap: 3%;
    column-width: 45%;
}
#negah1{
width:49%;float:right;margin:0px;
}
#negah2{
width:49%;float:left;margin:0px;
}
#negah3{
width:49%;float:right;margin:0px;
}
#negah4{
width:49%;float:left;margin:0px;
}



#nw1{
width:49%;float:right;margin:0px;margin-bottom:2%;
}
#nw2{
width:49%;float:left;margin:0px;margin-bottom:2%;
}
#nw3{
width:49%;float:right;margin:0px;margin-bottom:2%;
}
#nw4{
width:49%;float:left;margin:0px;margin-bottom:2%;
}

#aks1{
width:49%;float:right;margin:0px;margin-bottom:2%;
}
#aks2{
width:49%;float:left;margin:0px;margin-bottom:2%;
}
#aks3{
width:49%;float:right;margin:0px;margin-bottom:2%;
}
#aks4{
width:49%;float:left;margin:0px;margin-bottom:2%;
}



}


@media only screen and (max-width: 750px) {




#nw1{
width:100%;
}
#nw2{
width:100%;
}
#nw3{
width:100%;
}
#nw4{
width:100%;
}



.rotate{
transition: 1s ease;
}

.rotate:hover{
-webkit-transform: rotateZ(-0deg);
-ms-transform: rotateZ(-0deg);
transform: rotateZ(-0deg);
transition: 1s ease;
}
#ccontent1{
width:100%;padding:5px;padding-right:5%;padding-left:5%;
}
#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;
}
#q1{
width:100%;margin:0px;margin-bottom:20px;height:300px;
}
#pro{
height:250px;
}


#f1{
width:100%;
}

#f2{
width:100%;margin:0px;margin-top:14px;margin-bottom:14px;border-top:2px silver solid;padding-top:20px;
}

#f3{
width:100%;padding:0px;margin-top:14px;;border-top:2px silver solid;padding-top:20px;
}

#box11{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:right;
}
#box12{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:left;
}
#box13{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:right;
}
#box14{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:left;
}
#box21{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:right;
}
#box22{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:left;
}
#box23{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:right;
}
#box24{width:49%;margin:0px;margin-bottom:10px;text-align:center;float:left;
}

#pr1{
width:100%;margin-bottom:10px;
}
#pr2{
width:100%;
}
img{
max-width:100%;
}
#pc{
display:none;
}
img{
max-width:100%;
}
#date{
text-align:center;width:100%;padding:0px;margin:0px;

}
#tel{
float:right;

}
#logo{
width:100%;text-align:center;padding-top:12px;padding-bottom:12px;
}
#box1{
width:100%;margin:0px;margin-bottom:15px;
}
#news{
width:100%;margin:0px;margin-bottom:15px;
}
#z2{
width:100%;margin:0px;margin-bottom:10px;
}
img{
max-width:100%;
}
#title{
margin-right:0px;margin-top:10px;width:100%;text-align:center;
}
#l2{
width:100%;text-align:center;margin-top:24px;
}
#k{
width:100%;margin:0px;margin-bottom:14px;
}
#kk{
width:100%;margin:0px;margin-bottom:14px;
}
#t1{
width:100%;text-align:center;
}

#k1{
width:100%;margin:0x;border:0px;
}
#k2{
width:100%;margin:0x;border:0px;
}
#k3{
width:100%;margin:0x;border:0px;
}
#k4{
width:100%;margin:0x;border:0px;
}
#kk1{
width:100%;margin:0px;border:0px;margin-bottom:14px;
}
#kk2{
width:100%;margin:0px;border:0px;margin-bottom:14px;
}
#kk3{
width:100%;margin:0px;border:0px;margin-bottom:14px;
}
#log{
width:100%;text-align:center;padding-bottom:12px;
}
#n1{
width:100%;margin:0px;margin-bottom:10px;
}
#n2{
width:100%;margin:0px;margin-bottom:10px;
}
#n3{
width:100%;margin:0px;margin-bottom:10px;
}

.pc{
display:none;

}
.mob{
display:block;

}
#onvan{
	width:100%;text-align:center;padding-bottom:15px;margin-bottom:9px;border-bottom:1px silver solid
}
#ch1{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
#ch2{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#ch3{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
#ch4{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#ch5{
	width:100%;margin:0px;margin-bottom:2%;
}
#ab1{
	width:100%;margin-bottom:2%;
}
#ab2{
	width:100%;margin-bottom:2%;
}
#ser1{
	float:right;width:49%;margin:0px;margin-bottom:1.5%;
}
#ser2{
	float:left;width:49%;margin:0px;margin-bottom:1.5%;
}
#ser3{
	float:right;width:49%;margin:0px;margin-bottom:1.5%;
}
#ser4{
	float:left;width:49%;margin:0px;margin-bottom:1.5%;
}
#ser5{
	float:left;width:100%;margin:0px;margin-bottom:1.5%;
}
#w1{
	float:right;width:49%;margin:0px;margin-bottom:1.5%;
}
#w2{
	float:left;width:49%;margin:0px;margin-bottom:1.5%;
}
#w3{
	float:right;width:49%;margin:0px;margin-bottom:1.5%;
}
#w4{
	float:left;width:49%;margin:0px;margin-bottom:1.5%;
}
#fix1{
	display:block;direction:ltr;z-index:999999999999999999999;font-size:20px;
}
#cat1{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
#cat2{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#cat3{
	float:right;width:100%;margin:0px;margin-bottom:2%;
}
#cat4{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#np1{
	width:100%;margin:0px;margin-bottom:2%;
}
#np2{
	width:100%;margin:0px;margin-bottom:2%;
}
#np3{
	width:100%;margin:0px;margin-bottom:2%;
}
#np4{
	width:100%;margin:0px;margin-bottom:2%;
}


#prod1{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
#prod2{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#prod3{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
#prod4{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#prod5{
	float:left;width:100%;margin:0px;margin-bottom:2%;
}
#con1{
	width:100%;margin-bottom:2%;
}
#con2{
	width:100%;margin-bottom:2%;
}
#vnp1{
float:right;width:49%;margin:0px;margin-bottom:2%;
}
#vnp2{
float:left;width:49%;margin:0px;margin-bottom:2%;
}
#vnp3{
float:right;width:49%;margin:0px;margin-bottom:2%;
}
#vnp4{
float:left;width:49%;margin:0px;margin-bottom:2%;
}
#vnp5{
float:left;width:100%;margin:0px;margin-bottom:2%;
}
#ax1{
	max-width:90%;margin-top:12px;margin-bottom:12px;border:2px blue solid;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
#fil{
	width:90%;
}
.tit1{
	font-size:17px;font-weight:bold;color:#2956B5;text-align:center;width:100%;display:table;
}
.tit2{
	font-size:15px;font-weight:bold;color:#2956B5;text-align:center;width:100%;display:table;
}
#title1{
	display:table;width:100%;
}
#tar{
	float:left;margin-top:6px;width:100%;text-align:center;
}
#tarmob{
	display:block;
}
.men8{
display:none;
}
.dyr{
	display:none;
}
.wx1{
	position:relative;padding-bottom:0px;background-color:#F0F0F0;
}
.hdf{
	float:right;width:90%;line-height:40px;font-size:23px;
}
.hf3{
	padding-top:16px;padding-bottom:16px;
}

}