﻿.items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 40px auto;
  direction: rtl;
}

.item-box {
  flex: 1 1 calc(20% - 16px);
  background: #f2f2f2;
  border-radius: 12px;
  text-align: center;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  min-width: 160px;
  transition: background 0.3s;
}

.item-box a {
  text-decoration: none;
  
  font-weight: bold;
  color: #0056b3;
  display: block;
}

.item-box:hover {
  background: #eaf4ff;
}

@media (max-width: 768px) {
  .item-box {
    flex: 1 1 100%;
  }
}

.site-footer {
  background-color: #f3f3f3;
  padding: 40px 20px 20px;
  color: #333;
  direction: rtl;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 20px;
  border-right: 3px solid #007bff;
  padding-right: 10px;
  color: #222;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #007bff;
  text-decoration: underline;
}

.footer-column img {
  margin-top: 10px;
  width: 130px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 4px;
  background-color: #fff;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-left: 12px;
  font-size: 20px;
  color: #555;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}

.footer-bottom a {
  color: #007bff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 25px;
  }

  .footer-column h3 {
    border: none;
    padding: 0;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.article-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-title {
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    font-family: 'weblogmayekan', Arial, sans-serif;
    text-align: right;
}

.article-section {
    margin-bottom: 40px;
    padding: 0 10px;
    font-family: 'weblogmayekan', Arial, sans-serif;
}

.section-heading {
    font-size: 20px;
    line-height: 36px;
    margin: 25px 0 15px;
    font-weight: 400;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-heading i {
    font-size: 16px;
    color: #0099cc;
}

.section-content {
    font-size: 16px;
    line-height: 32px;
    color: #444;
    text-align: justify;
}

.more-box {
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid #0099cc;
    border-radius: 8px;
    background-color: #f0faff;
}

.more-label {
    font-size: 14px;
    color: #666;
    margin-left: 8px;
}

.more-link {
    color: #0077aa;
    text-decoration: none;
}

.more-link:hover {
    text-decoration: underline;
}

.toc-box {
    background-color: #f4f7f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin: 40px auto;
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    font-family: 'weblogmayekan', Arial, sans-serif;
}

.toc-heading {
    background-color: #0099cc;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-entry {
    padding: 10px 15px;
    border-bottom: 1px dashed #ccc;
    transition: background-color 0.2s ease;
}

.toc-entry:last-child {
    border-bottom: none;
}

.toc-link {
    color: #222;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toc-link:hover {
    color: #0099cc;
    background-color: #eef7fa;
    border-radius: 6px;
}

.toc-link i {
    font-size: 14px;
    color: #0099cc;
}

.page-header-wrapper {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center; 
}

.page-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-title {
    font-family: 'weblogmayekan', Arial, sans-serif;
    font-size: 28px;
    line-height: 42px;
    color: #222;
    font-weight: 400;
    font-style: normal;
}

blockquote {
    font-family: 'weblogmayekan', Arial, sans-serif;
    font-size: 16px;
    line-height: 32px;
    color: #555; 
    background-color: #f9f9f9;
    border-right: 4px solid #ccc;
    padding: 15px 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 8px;
}
strong {
    font-family: 'weblogmayekan', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.05em; 
    color: #222; 
    font-style: normal;
}
#ccontent1 video {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  #ccontent1 video {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px auto;
  }
}

#ccontent1 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
  margin-bottom: 1rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  direction: rtl;
  text-align: right;
}

#ccontent1 th,
#ccontent1 td {
  padding: 12px 10px;
  border: 1px solid #ddd;
  text-align: right;
  vertical-align: top;
}

#ccontent1 th {
  background-color: #f9f9f9;
  font-weight: 600;
  white-space: nowrap;
}

#ccontent1 tr:nth-child(even) {
  background-color: #f5f5f5;
}

#ccontent1 table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  #ccontent1 table {
    font-size: 13px;
  }

  #ccontent1 th,
  #ccontent1 td {
    padding: 8px;
    white-space: normal;
  }
}

.img-in-landing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.img-in-landing a {
  flex: 0 0 14%;
  max-width: 14%;
  box-sizing: border-box;
}

.img-in-landing img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
  .img-in-landing a {
    flex: 0 0 22%;
    max-width: 22%;
  }
}

@media screen and (max-width: 600px) {
  .img-in-landing a {
    flex: 0 0 48%;
    max-width: 48%;
  }
}



#ccontent1 img {
    display: block;
    margin: 30px auto;
    max-width: 90%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



#logo img {
    all: unset;
    display: inline;
    max-width: none;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    transition: none;
    transform: none;
}

.mobile-fixed-bar {
    display: none ;
  }  
.jadval5-wrapper {
  width: 100%;
  overflow-x: auto;
  direction: rtl;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.jadval5 {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  font-size: 14px;
  direction: rtl;
  table-layout: auto;
}

.jadval5 th, .jadval5 td {
  padding: 8px 12px;
  border: 1px solid #ddd;
  white-space: normal;
  word-break: break-word;
}

.jadval5 thead {
  background-color: #f0f0f0;
}

.jadval5 tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.jadval5 tbody tr:hover {
  background-color: #e6f7ff;
}
    .circle-box-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            padding: 20px;
        }

        .circle-box {
            flex: 1 1 calc(20% - 20px); /* 20% width minus gap */
            max-width: calc(20% - 20px);
            background: #f9f9f9;
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .circle-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #4caf50;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin: 0 auto 15px;
        }

        .circle-box-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
        }

        @media (max-width: 768px) {
            .circle-box {
                flex: 1 1 calc(50% - 20px);
                max-width: calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .circle-box {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
  .box-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            padding: 20px;
        }

        .box {
            flex: 1 1 calc(25% - 20px); /* 25% width minus gap */
            max-width: calc(25% - 20px);
            background: #f9f9f9;
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .box-icon {
            font-size: 50px;
            color: #4caf50;
            margin-bottom: 15px;
        }

        .box-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        @media (max-width: 768px) {
            .box {
                flex: 1 1 calc(50% - 20px);
                max-width: calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .box {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
.contact-container {
    background-color: #007BFF;
    padding: 18px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 250px;
    margin: 20px auto;
    direction: rtl;
    transition: background-color 0.3s ease;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link i {
    margin-left: 12px;
    font-size: 22px;
}

.contact-link span {
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.service-info {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: normal;
}

.contact-link:hover {
    background-color: #0056b3;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}



.styled-div {
  float: right;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffeb3b, #fbc02d);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
}

.styled-div:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.styled-div p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #795548;
  margin: 0;
  line-height: 1.6;
}

/* Optional: Add text-align if needed */
.styled-div {
  text-align: center;
}

 #title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .title-container {
    background-color: #31343A;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 11px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .title-container:hover {
    background-color: #2A2D32;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  h1 {
    margin: 0;
  }
.custom-box {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    color: #333;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #007bff;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .custom-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
  }

  .custom-box h2 {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    margin: 0;
    padding-left: 10px;
        line-height: 1.5; /* Ø§ÙØ²Ø§ÛŒØ´ ÙØ§ØµÙ„Ù‡ Ø¨ÛŒÙ† Ø®Ø·ÙˆØ· */

  }

  .custom-box i {
    color: #007bff;
    margin-right: 10px;
  }
   .rotating-border {
        width: 300px;
        padding: 5px;
        text-align: center;
        border: 5px solid transparent;
        border-radius: 10px;
        position: relative;
        font-size: 18px;
        color: #333;
        animation: color-cycle 3s infinite linear;display:inline-block;color:white;
    }

    .rotating-border p {
        animation: scale-text 1.5s infinite ease-in-out;
    }

    @keyframes color-cycle {
        0% {
            border-color: #FF5733; /* Ù†Ø§Ø±Ù†Ø¬ÛŒ Ø±ÙˆØ´Ù† */
        }
        33% {
            border-color: #FFD700; /* Ø²Ø±Ø¯ */
        }
        66% {
            border-color: #1E90FF; /* Ø¢Ø¨ÛŒ Ø±ÙˆØ´Ù† */
        }
        100% {
            border-color: #FF5733; /* Ø¨Ø§Ø²Ú¯Ø´Øª Ø¨Ù‡ Ù†Ø§Ø±Ù†Ø¬ÛŒ Ø±ÙˆØ´Ù† */
        }
    }

    @keyframes scale-text {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
    }.ct1{
	float:right;width:23%;padding:10px;border:2px blue solid;text-align:center;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;background:white;-webkit-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);

}
.ct2{
	float:right;width:23%;padding:10px;border:2px blue solid;margin-right:2.7%;text-align:center;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;background:white;-webkit-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);

}
.ct3{
	float:right;width:23%;padding:10px;border:2px blue solid;margin-right:2.7%;text-align:center;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;background:white;-webkit-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);

}
.ct4{
	float:left;width:23%;padding:10px;border:2px blue solid;text-align:center;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;background:white;-webkit-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.75);
}
#z1{
	float:right;width:33%;text-align:justify;
}
#z2{
	float:left;width:65%;padding-top:2%;
}
.zz{
background-image: linear-gradient(to right top, #ffffff, #fdfdfd, #fafafa, #f8f8f8, #f6f6f6);
}
.tabl1{
    border:1px blue solid;padding:6px;text-align:center;
}
.pub1{
	float:right;width:24%;margin-bottom:2%;background:white;padding:3px;
}
.pub2{
	float:right;width:24%;margin-bottom:2%;margin-right:1.3%;background:white;padding:3px;

}
.pub3{
	float:right;width:24%;margin-bottom:2%;margin-right:1.3%;background:white;padding:3px;

}
.pub4{
	float:left;width:24%;margin-bottom:2%;background:white;padding:3px;

}
#nj1{
	float:left;width:38%;text-align:center;background-color: #6D5F62;padding:10px;
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='%236D5F62'/%3E%3Cstop offset='1' stop-color='%232D2028'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='650' y1='25' x2='650' y2='777'%3E%3Cstop offset='0' stop-color='%2368595c'/%3E%3Cstop offset='1' stop-color='%2330232b'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='700' y1='25' x2='700' y2='777'%3E%3Cstop offset='0' stop-color='%23625357'/%3E%3Cstop offset='1' stop-color='%2333262f'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' gradientUnits='userSpaceOnUse' x1='750' y1='25' x2='750' y2='777'%3E%3Cstop offset='0' stop-color='%235d4d52'/%3E%3Cstop offset='1' stop-color='%23372832'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' gradientUnits='userSpaceOnUse' x1='800' y1='25' x2='800' y2='777'%3E%3Cstop offset='0' stop-color='%2357474d'/%3E%3Cstop offset='1' stop-color='%233a2b35'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' gradientUnits='userSpaceOnUse' x1='850' y1='25' x2='850' y2='777'%3E%3Cstop offset='0' stop-color='%23514147'/%3E%3Cstop offset='1' stop-color='%233d2e38'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' gradientUnits='userSpaceOnUse' x1='900' y1='25' x2='900' y2='777'%3E%3Cstop offset='0' stop-color='%234c3b42'/%3E%3Cstop offset='1' stop-color='%2340313c'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' gradientUnits='userSpaceOnUse' x1='950' y1='25' x2='950' y2='777'%3E%3Cstop offset='0' stop-color='%2346353d'/%3E%3Cstop offset='1' stop-color='%2343343f'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' gradientUnits='userSpaceOnUse' x1='1000' y1='25' x2='1000' y2='777'%3E%3Cstop offset='0' stop-color='%23403038'/%3E%3Cstop offset='1' stop-color='%23463742'/%3E%3C/linearGradient%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='1050' y1='25' x2='1050' y2='777'%3E%3Cstop offset='0' stop-color='%233a2b33'/%3E%3Cstop offset='1' stop-color='%23493a46'/%3E%3C/linearGradient%3E%3ClinearGradient id='k' gradientUnits='userSpaceOnUse' x1='1100' y1='25' x2='1100' y2='777'%3E%3Cstop offset='0' stop-color='%2333252d'/%3E%3Cstop offset='1' stop-color='%234c3d49'/%3E%3C/linearGradient%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='1150' y1='25' x2='1150' y2='777'%3E%3Cstop offset='0' stop-color='%232D2028'/%3E%3Cstop offset='1' stop-color='%234F404C'/%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;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;color:white;
}
#nj2{
	float:left;width:20%;margin-left:2%;text-align:center;padding:10px;background-color: #0E1C6D;
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='%230E1C6D'/%3E%3Cstop offset='1' stop-color='%23172D06'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='650' y1='25' x2='650' y2='777'%3E%3Cstop offset='0' stop-color='%230d2d67'/%3E%3Cstop offset='1' stop-color='%23193006'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='700' y1='25' x2='700' y2='777'%3E%3Cstop offset='0' stop-color='%230d3c61'/%3E%3Cstop offset='1' stop-color='%231c3307'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' gradientUnits='userSpaceOnUse' x1='750' y1='25' x2='750' y2='777'%3E%3Cstop offset='0' stop-color='%230c495b'/%3E%3Cstop offset='1' stop-color='%231e3607'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' gradientUnits='userSpaceOnUse' x1='800' y1='25' x2='800' y2='777'%3E%3Cstop offset='0' stop-color='%230b5456'/%3E%3Cstop offset='1' stop-color='%23203908'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' gradientUnits='userSpaceOnUse' x1='850' y1='25' x2='850' y2='777'%3E%3Cstop offset='0' stop-color='%230a5043'/%3E%3Cstop offset='1' stop-color='%23233c08'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' gradientUnits='userSpaceOnUse' x1='900' y1='25' x2='900' y2='777'%3E%3Cstop offset='0' stop-color='%230a4a31'/%3E%3Cstop offset='1' stop-color='%23264009'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' gradientUnits='userSpaceOnUse' x1='950' y1='25' x2='950' y2='777'%3E%3Cstop offset='0' stop-color='%23094420'/%3E%3Cstop offset='1' stop-color='%23284309'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' gradientUnits='userSpaceOnUse' x1='1000' y1='25' x2='1000' y2='777'%3E%3Cstop offset='0' stop-color='%23083e12'/%3E%3Cstop offset='1' stop-color='%232b460a'/%3E%3C/linearGradient%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='1050' y1='25' x2='1050' y2='777'%3E%3Cstop offset='0' stop-color='%23083907'/%3E%3Cstop offset='1' stop-color='%232e490a'/%3E%3C/linearGradient%3E%3ClinearGradient id='k' gradientUnits='userSpaceOnUse' x1='1100' y1='25' x2='1100' y2='777'%3E%3Cstop offset='0' stop-color='%23113307'/%3E%3Cstop offset='1' stop-color='%23314c0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='1150' y1='25' x2='1150' y2='777'%3E%3Cstop offset='0' stop-color='%23172D06'/%3E%3Cstop offset='1' stop-color='%23344F0B'/%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;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;color:white;
	}
#nj3{
	float:right;width:38%;text-align:center;background-color: #6D5F62;
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='%236D5F62'/%3E%3Cstop offset='1' stop-color='%232D2028'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='650' y1='25' x2='650' y2='777'%3E%3Cstop offset='0' stop-color='%2368595c'/%3E%3Cstop offset='1' stop-color='%2330232b'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='700' y1='25' x2='700' y2='777'%3E%3Cstop offset='0' stop-color='%23625357'/%3E%3Cstop offset='1' stop-color='%2333262f'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' gradientUnits='userSpaceOnUse' x1='750' y1='25' x2='750' y2='777'%3E%3Cstop offset='0' stop-color='%235d4d52'/%3E%3Cstop offset='1' stop-color='%23372832'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' gradientUnits='userSpaceOnUse' x1='800' y1='25' x2='800' y2='777'%3E%3Cstop offset='0' stop-color='%2357474d'/%3E%3Cstop offset='1' stop-color='%233a2b35'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' gradientUnits='userSpaceOnUse' x1='850' y1='25' x2='850' y2='777'%3E%3Cstop offset='0' stop-color='%23514147'/%3E%3Cstop offset='1' stop-color='%233d2e38'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' gradientUnits='userSpaceOnUse' x1='900' y1='25' x2='900' y2='777'%3E%3Cstop offset='0' stop-color='%234c3b42'/%3E%3Cstop offset='1' stop-color='%2340313c'/%3E%3C/linearGradient%3E%3ClinearGradient id='h' gradientUnits='userSpaceOnUse' x1='950' y1='25' x2='950' y2='777'%3E%3Cstop offset='0' stop-color='%2346353d'/%3E%3Cstop offset='1' stop-color='%2343343f'/%3E%3C/linearGradient%3E%3ClinearGradient id='i' gradientUnits='userSpaceOnUse' x1='1000' y1='25' x2='1000' y2='777'%3E%3Cstop offset='0' stop-color='%23403038'/%3E%3Cstop offset='1' stop-color='%23463742'/%3E%3C/linearGradient%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='1050' y1='25' x2='1050' y2='777'%3E%3Cstop offset='0' stop-color='%233a2b33'/%3E%3Cstop offset='1' stop-color='%23493a46'/%3E%3C/linearGradient%3E%3ClinearGradient id='k' gradientUnits='userSpaceOnUse' x1='1100' y1='25' x2='1100' y2='777'%3E%3Cstop offset='0' stop-color='%2333252d'/%3E%3Cstop offset='1' stop-color='%234c3d49'/%3E%3C/linearGradient%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='1150' y1='25' x2='1150' y2='777'%3E%3Cstop offset='0' stop-color='%232D2028'/%3E%3Cstop offset='1' stop-color='%234F404C'/%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;padding:10px;border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;color:white;}
	
	
	#niaz1{
	float:right;width:35%;
}
#niaz2{
	float:right;width:35%;margin-right:2%;
}
#niaz3{
	float:left;width:26%;
}

.gf1{
	position:fixed;top:35%;left:0px;z-index:99999999999999999999999999999999;padding:10px;background-color:navy;color:white;border-radius: 0px 10px 10px 0px;
-moz-border-radius: 0px 10px 10px 0px;
-webkit-border-radius: 0px 10px 10px 0px;
}
#fil{
	display:inline-block;width:600px;margin-top:13px;margin-bottom:13px
}
.g22{
	background-color: #12052E;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%231b0a3c' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23251049' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23301854' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%233b215d' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23462C65' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%233e2a61' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%2337275d' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23302559' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23292355' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23232151' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.g67{
	background-color: #E8E8E8;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%23E8E8E8' width='11' height='11'/%3E%3Crect fill='%23e8e8e8' x='10' width='11' height='11'/%3E%3Crect fill='%23e9e9e9' y='10' width='11' height='11'/%3E%3Crect fill='%23e9e9e9' x='20' width='11' height='11'/%3E%3Crect fill='%23eaeaea' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23eaeaea' y='20' width='11' height='11'/%3E%3Crect fill='%23eaeaea' x='30' width='11' height='11'/%3E%3Crect fill='%23ebebeb' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23ebebeb' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23ebebeb' y='30' width='11' height='11'/%3E%3Crect fill='%23ececec' x='40' width='11' height='11'/%3E%3Crect fill='%23ececec' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23ededed' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23ededed' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23ededed' y='40' width='11' height='11'/%3E%3Crect fill='%23eeeeee' x='50' width='11' height='11'/%3E%3Crect fill='%23eeeeee' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23efefef' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23efefef' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23efefef' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23f0f0f0' y='50' width='11' height='11'/%3E%3Crect fill='%23f0f0f0' x='60' width='11' height='11'/%3E%3Crect fill='%23f1f1f1' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23f1f1f1' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23f1f1f1' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23f2f2f2' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23f2f2f2' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23f2f2f2' x='70' width='11' height='11'/%3E%3Crect fill='%23f3f3f3' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23f3f3f3' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%23f4f4f4' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%23f4f4f4' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%23f4f4f4' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%23f5f5f5' x='80' width='11' height='11'/%3E%3Crect fill='%23f5f5f5' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%23f6f6f6' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%23f6f6f6' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%23f6f6f6' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%23f7f7f7' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%23f7f7f7' x='90' width='11' height='11'/%3E%3Crect fill='%23f8f8f8' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%23f8f8f8' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%23f8f8f8' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%23f9f9f9' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%23f9f9f9' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%23fafafa' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%23fafafa' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%23fafafa' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%23fbfbfb' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%23fcfcfc' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%23fcfcfc' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%23fdfdfd' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%23fdfdfd' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%23fdfdfd' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23fefefe' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%23fefefe' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23ffffff' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23FFFFFF' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.bgz9{
background-color: #00b7ff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1719' height='1432.5' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='.1'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/svg%3E");
}
.pc{
display:block;

}
.mob{
display:none;

}


#ax69{
	width:65%;
            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;
	}
	#ax69:hover{
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); 
            transform: translateY(-5px) scale(1.05); 
}



#ax1{
	width:65%;
            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); 
}



.bb33{
	background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='75' height='75' patternTransform='scale(3) rotate(55)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0,0%,100%,1)'/><path d='M15.896-3.379a3.051 3.051 0 0 0-3.044 3.045 3.051 3.051 0 0 0 3.044 3.045A3.05 3.05 0 0 0 18.94-.334a3.05 3.05 0 0 0-3.043-3.045zm0 .764a2.275 2.275 0 0 1 2.282 2.281 2.275 2.275 0 0 1-2.282 2.281 2.275 2.275 0 0 1-2.28-2.281 2.275 2.275 0 0 1 2.28-2.281zm29.479 5.742a4.13 4.13 0 0 0-4.123 4.123 4.13 4.13 0 0 0 4.123 4.123 4.13 4.13 0 0 0 4.123-4.123 4.13 4.13 0 0 0-4.123-4.123zm0 1.03a3.086 3.086 0 0 1 3.094 3.093 3.086 3.086 0 0 1-3.094 3.094 3.086 3.086 0 0 1-3.094-3.094 3.086 3.086 0 0 1 3.094-3.094zM66.299 8.89c-3.73 0-6.78 3.048-6.78 6.779 0 3.73 3.05 6.777 6.78 6.777 3.73 0 6.777-3.046 6.777-6.777 0-3.73-3.047-6.78-6.777-6.78zm0 2.214a4.547 4.547 0 0 1 4.562 4.565 4.547 4.547 0 0 1-4.562 4.564 4.548 4.548 0 0 1-4.565-4.564 4.548 4.548 0 0 1 4.565-4.565zm-24.653 9.2a4.499 4.499 0 0 0-4.488 4.486 4.499 4.499 0 0 0 4.488 4.486 4.497 4.497 0 0 0 4.487-4.486 4.497 4.497 0 0 0-4.487-4.486zm0 1.46a3.014 3.014 0 0 1 3.026 3.026 3.014 3.014 0 0 1-3.026 3.025 3.014 3.014 0 0 1-3.025-3.025 3.014 3.014 0 0 1 3.025-3.025zm24.086 9.94A2.3 2.3 0 0 0 63.438 34a2.3 2.3 0 0 0 2.294 2.295A2.298 2.298 0 0 0 68.025 34a2.298 2.298 0 0 0-2.293-2.295zm0 .576c.953 0 1.72.766 1.72 1.719 0 .953-.767 1.719-1.72 1.719A1.714 1.714 0 0 1 64.014 34c0-.953.765-1.719 1.718-1.719zm-49.234 6.545c-2.952 0-5.363 2.413-5.363 5.365a5.376 5.376 0 0 0 5.363 5.364 5.376 5.376 0 0 0 5.363-5.364c0-2.952-2.41-5.365-5.363-5.365zm0 1.744c2.01 0 3.621 1.611 3.621 3.621s-1.61 3.621-3.621 3.621a3.608 3.608 0 0 1-3.621-3.62 3.608 3.608 0 0 1 3.621-3.622zm33.84 6.348a4.318 4.318 0 0 0-4.307 4.309 4.318 4.318 0 0 0 4.307 4.308 4.32 4.32 0 0 0 4.308-4.308 4.32 4.32 0 0 0-4.308-4.309zm0 1.398a2.9 2.9 0 0 1 2.91 2.91 2.9 2.9 0 0 1-2.91 2.91 2.898 2.898 0 0 1-2.908-2.91 2.898 2.898 0 0 1 2.908-2.91zm18.367 1.897A4.499 4.499 0 0 0 64.22 54.7a4.497 4.497 0 0 0 4.486 4.486 4.499 4.499 0 0 0 4.488-4.486 4.5 4.5 0 0 0-4.488-4.488zm0 1.463A3.014 3.014 0 0 1 71.73 54.7a3.014 3.014 0 0 1-3.025 3.026A3.014 3.014 0 0 1 65.68 54.7a3.014 3.014 0 0 1 3.025-3.025zm-36.771 1.92c-4.85 0-8.813 3.963-8.813 8.812 0 4.85 3.963 8.81 8.813 8.81 4.849 0 8.812-3.96 8.812-8.81 0-4.85-3.963-8.812-8.812-8.812zm0 2.892a5.897 5.897 0 0 1 5.918 5.92 5.896 5.896 0 0 1-5.918 5.918 5.896 5.896 0 0 1-5.918-5.918 5.897 5.897 0 0 1 5.918-5.92zM15.896 71.621a3.051 3.051 0 0 0-3.044 3.045 3.051 3.051 0 0 0 3.044 3.045 3.05 3.05 0 0 0 3.043-3.045 3.05 3.05 0 0 0-3.043-3.045zm0 .764a2.275 2.275 0 0 1 2.282 2.281 2.275 2.275 0 0 1-2.282 2.281 2.275 2.275 0 0 1-2.28-2.281 2.275 2.275 0 0 1 2.28-2.281z'  stroke-width='1' stroke='none' fill='hsla(259, 19%, 93%, 1)'/><path d='M57.973.85a3.756 3.756 0 1 0 .067 7.512A3.756 3.756 0 0 0 57.973.85zM6.449 2.625a2.357 2.357 0 1 0 0 4.714 2.357 2.357 0 0 0 0-4.714Zm24.643 7.744a3.756 3.756 0 1 0 .067 7.512 3.756 3.756 0 0 0-.067-7.512zm-17.848 5.467a2.357 2.357 0 1 0 .175 4.71 2.357 2.357 0 0 0-.175-4.71zM-.25 23.363a2.136 2.136 0 1 0 0 4.274 2.136 2.136 0 1 0 0-4.274Zm75 0a2.136 2.136 0 1 0 0 4.274 2.136 2.136 0 1 0 0-4.274Zm-49.031 5.178a2.283 2.283 0 1 0 .054 4.566 2.283 2.283 0 0 0-.054-4.566zm30.404-1.512a1.473 1.473 0 1 0 0 2.946 1.473 1.473 0 0 0 0-2.946zm-9.525 9.088a2.578 2.578 0 1 0-.001 5.156 2.578 2.578 0 0 0 0-5.156zm-41.442.93a1.473 1.473 0 1 0-.003 2.946 1.473 1.473 0 0 0 .003-2.946zm62.455 3.314a1.473 1.473 0 1 0 .001 2.946 1.473 1.473 0 0 0 0-2.946zm-33.51 2.135a1.473 1.473 0 1 0-.003 2.946 1.473 1.473 0 0 0 .004-2.946ZM8.599 56.072a3.756 3.756 0 1 0 .067 7.512 3.756 3.756 0 0 0-.067-7.512zm40.49 7.658a2.357 2.357 0 1 0-.001 4.714 2.357 2.357 0 0 0 0-4.714zm22.129 5.833a2.136 2.136 0 1 0 .072 4.27 2.136 2.136 0 0 0-.072-4.27z'  stroke-width='1' stroke='none' fill='hsla(259, 19%, 93%, 1)'/></pattern></defs><rect width='800%' height='800%' transform='translate(-417,-120)' fill='url(%23a)'/></svg>")
}
.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:10px;border:2px silver solid;text-align:center;
}
#pr2{
width:53%;float:left;
}

#f1{
	float:right;width:30%;
}
#f2{
	float:right;width:30%;margin-right:2%;
}
#f3{
	float:left;width:65%;
}
#con1{
	float:right;width:60%;
}
#con2{
	float:left;width:37%;
}
#menu2{
	display:none;
}
 .product {
    width: calc(25% - 1.3%);
    margin-bottom: 2%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    padding: 15px;
    transition: all 0.3s ease;
  }

  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  @media (max-width: 768px) {
    .product {
      width: calc(50% - 1.3%);
    }
  }

  @media (max-width: 480px) {
    .product {
      width: 100%;
    }
  }

#prod1{
	float:right;width:24%;;margin-bottom:2%;}
#prod2{
	float:right;width:24%;margin-right:1.3%;margin-bottom:2%;
}
#prod3{
	float:right;width:24%;margin-right:1.3%;margin-bottom:2%;
}
#prod4{
	float:left;width:24%;margin-bottom:2%;
}
.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:24%;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:1.3%;
}
#vnp2{
	float:right;width:24%;margin-right:1.3%;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:1.3%;
}
#vnp3{
	float:right;width:24%;margin-right:1.3%;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:1.3%;
}
#vnp4{
	float:left;width:24%;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:1.3%;
}



#np1{
	float:right;width:24%;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:24%;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:1.3%;
}
#np3{
	float:right;width:24%;margin-right:1.3%;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%;
}
#np4{
	float:left;width:24%;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:45%;line-height:33px;text-align:justify;
}
#ab2{
	float:right;width:53%;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;
}
#lang2{
	float:right;margin-top:4px;margin-right:20px;
}
.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;
}

#menu{
	float:right;margin-top:14px;
}
@font-face {
    font-family: 'weblogmayekan';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/PeydaWeb-Regular.woff2') format('woff2'),
         url('/fonts/PeydaWeb-Regular.woff') format('woff');
}

@font-face {
    font-family: 'fontb';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/PeydaWeb-Regular.woff2') format('woff2'),
         url('/fonts/PeydaWeb-Regular.woff') format('woff');
}
body, p, span, div {
    font-family: 'weblogmayekan', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: rgb(87, 87, 87);
    font-style: normal;
}
#search{
	float:right;width:220px;
}

*{
	font-family:weblogmayekan;font-size:17px;
}
#container { direction: rtl; width: 100%; margin: 0 auto;background-color:white;}
body{
background-color:#ded9d2;
}
a:hover {
    text-decoration:none;
    }
#content1{
height:auto;margin-bottom:0px;
}#ccontent1{
width:95%; margin: 0 auto;display:table ;height:auto;
}
#logo{
float:left;margin-top:8px;margin-bottom:8px;
}
#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:23px;padding:0px;margin:0px;font-weight:bold;line-height:42px
}
h2 {
    font-family: 'fontb', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: rgb(34, 34, 34);
    font-style: normal;
}
h3{
font-size:19px;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) {

#menu2{
display:block;
}
#menu{
display:none;
}

#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;
}




#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%;
}

.ct1{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
.ct2{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
.ct3{
	float:right;width:49%;margin:0px;margin-bottom:2%;
}
.ct4{
	float:left;width:49%;margin:0px;margin-bottom:2%;
}
#z1{
	width:100%;margin-bottom:2%;padding-right:2%;padding-left:2%;
}
#z2{
width:100%;
}


}


@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;
}

#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;
}
#search{
	width:34%;
}
#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%;
}

#fil{
	width:90%;
}
#nj1{
width:100%;margin:0px;margin-bottom:2%;
}
#nj2{
width:100%;margin:0px;margin-bottom:2%;
}
#nj3{
width:100%;margin:0px;margin-bottom:2%;
}
.pub1{
	width:100%;margin:0px;margin-bottom:2%;
}
.pub2{
	width:100%;margin:0px;margin-bottom:2%;
}
.pub3{
	width:100%;margin:0px;margin-bottom:2%;
}
.pub4{
	width:100%;margin:0px;margin-bottom:2%;
}
#ax1{
	width:85%;
}
  .custom-box h2 {
    font-size: 19px;
    font-weight: bold;
    color: #007bff;
    margin: 0;
    padding-left: 10px;
        line-height: 1.5; /* Ø§ÙØ²Ø§ÛŒØ´ ÙØ§ØµÙ„Ù‡ Ø¨ÛŒÙ† Ø®Ø·ÙˆØ· */

  }
.gf1 {
    display: none ;
  }



 .mobile-fixed-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to right, #c10000, #900000);
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 12px 0;
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      font-family: sans-serif;
    }

    .mobile-fixed-bar a {
      background: #ffffff;
      color: #b00000;
      text-decoration: none;
      font-size: 15px;
      font-weight: bold;
      padding: 10px 18px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: background 0.3s ease, color 0.3s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .mobile-fixed-bar a:hover {
      background: #f5f5f5;
      color: #c10000;
    }

    .mobile-fixed-bar svg {
      width: 20px;
      height: 20px;
      fill: #b00000;
      transition: fill 0.3s ease;
    }

    .mobile-fixed-bar a:hover svg {
      fill: #c10000;
    }
}