.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.project-card {
  position: relative;
  display: block;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.project-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  text-align: center;
}

.project-card h3 {
  margin: 0;
  font-size: 18px;
}


.mobile-fixed-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-fixed-bar {
    display: flex;
    position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: bottom 0.3s ease;
  }
  .mobile-fixed-bar a {
    flex: 1;
    text-align: center;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  }
  .mobile-fixed-bar a i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
  }
}


.faq-container {
  max-width: 800px;
  margin: 30px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  cursor: pointer;
  padding: 15px 20px;
  font-weight: bold;
  background: #f7f7f7;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eaeaea;
}

.faq-question::after {
  content: "+";
  position: absolute;
  left: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
}
 
 #content1{
height:auto;margin-bottom:0px;
}#ccontent1{
width:95%; margin: 0 auto;display:table ;height:auto;
}
 .slider {
  visibility: hidden;
}

.slider.slick-initialized {
  visibility: visible;
}
 body {
  zoom: initial !important;
}
 #ab1{
	float:left;width:45%;line-height:33px;text-align:justify;padding-top:5%;
}
#ab2{
	float:right;width:50%;line-height:33px;text-align:justify;
}

 .responsive-video {
  max-width: 100%;
  height: auto;
}
 * {
      box-sizing: border-box;
    }
    .slider {
        width: 90%;
        margin: 10px auto;
    }
    .slick-slide {
      margin: 0px 20px;
    }
    .slick-slide img {
      width: 100%;
    }
    .slick-prev:before,
    .slick-next:before {
      color: black;
    }
    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: .2;
    }
    .slick-active {
      opacity: 1;
    }
    .slick-current {
      opacity: 1;
    }
     .articles {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 20px;
            background-color: #f9f9f9;
            border-top: 2px solid #e2e2e2;
        }

        .article-card {
            width: 300px;
            margin: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            overflow: hidden;
            background-color: #fff;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .article-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .article-content {
            padding: 15px;
        }

        .article-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .article-date {
            font-size: 12px;
            color: #888;
            margin-bottom: 10px;
        }

        .article-summary {
            font-size: 14px;
            line-height: 1.6;
        }

        .lazy-image {
            width: 100%;
            max-width: 300px;
            display: block;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .lazy-image.loaded {
            opacity: 1;
        }
.exhibition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    table-layout: fixed; /* اضافه شدن این خط */
}

.exhibition-table th, .exhibition-table td {
    border: 1px solid #ddd;
    padding: 8px; /* کاهش padding برای نمایش بهتر در موبایل */
    text-align: center;
}

.exhibition-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.exhibition-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.exhibition-table tr:hover {
    background-color: #f0f0f0;
}

.exhibition-table th:nth-child(1) { width: 5%; } /* عرض ستون ردیف */
.exhibition-table th:nth-child(2) { width: 50%; } /* عرض ستون عنوان */
.exhibition-table th:nth-child(3) { width: 20%; } /* عرض ستون تاریخ */
.exhibition-table th:nth-child(4) { width: 25%; } /* عرض ستون مجری */




.table-exhibitions {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  table-layout: fixed; 
  overflow-x: auto; 
}

.table-exhibitions th, .table-exhibitions td {
  border: 1px solid #ddd;
  padding: 8px; 
  text-align: center;
}

.table-exhibitions th {
  background-color: #f5f5f5;
  font-weight: bold;
  position: sticky; 
  top: 0; 
}

.table-exhibitions tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table-exhibitions tr:hover {
  background-color: #f0f0f0;
}

.table-exhibitions th:nth-child(1) { width: 50%; } 
.table-exhibitions th:nth-child(2) { width: 50%; } 

@media screen and (max-width: 600px) {
  .table-exhibitions {
    font-size: 14px; 
  }
  .table-exhibitions th, .table-exhibitions td {
    padding: 6px; 
  }
}

        
        
.custom-input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border: 2px solid #3498db;
      border-radius: 5px;
      background-color: #f9f9f9;
      transition: all 0.3s ease;
      outline: none;margin-bottom:10px;
    }

    .custom-input:focus {
      border-color: #2980b9;
      background-color: #e6f0ff;
      box-shadow: 0 0 8px rgba(41, 128, 185, 0.6);
    }

    .custom-input::placeholder {
      color: #888;
      font-style: italic;
    }
    
    
 .modern-button {
      background-color: #3498db;
      color: white;
      font-size: 16px;
      padding: 12px 24px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .modern-button:hover {
      background-color: #2980b9;
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
      transform: translateY(-4px);
    }

    .modern-button:active {
      background-color: #1d6fa5;
      transform: translateY(2px);
    }

    .modern-button:focus {
      outline: none;
      box-shadow: 0 0 8px rgba(52, 152, 219, 0.8);
    }    
.tf1{
	float:right;width:49%;
}
.tf2{
	float:left;width:49%;
}
.company-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* چهار ردیف در هر سطر */
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

.company-item {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 250px; /* حداکثر عرض باکس‌ها */
  text-align: center;
}

.company-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.company-info {
  padding: 20px;
}

.company-name {
  font-size: 1.2em;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.company-website {
  font-size: 1em;
  color: #666;
  margin-bottom: 10px;
}

.company-rating {
  font-size: 1.2em;
  color: #ffd700;
  font-weight: bold;
}

.company-rating::before {
  margin-right: 5px;
}

.company-rating span {
  color: #ccc;
}

/* Animation for hovering on company item */
@keyframes hoverEffect {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.company-item {
  animation: hoverEffect 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .company-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-item {
    max-width: 90%;
  }

  .company-name {
    font-size: 1em;
  }

  .company-rating {
    font-size: 1em;
  }

  .company-website {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .company-list {
    grid-template-columns: 1fr;
  }

  .company-item {
    max-width: 100%;
  }

  .company-name {
    font-size: 0.9em;
  }

  .company-rating {
    font-size: 0.9em;
  }

  .company-website {
    font-size: 0.8em;
  }
}

#fnp1{
	float:right;width:48%;
}
#fnp2{
	float:left;width:48%;
}
.image-wrapper {
            position: relative;
            width: 100%;
            height: auto;
        }

        .main-image {
            width: 100%;
            display: block;
            position: relative;
        }

        .light-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            animation: lightAnimation 8s infinite linear, glowEffect 8s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes lightAnimation {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: -100%;
            }
        }

        @keyframes glowEffect {
            0%, 100% {
                background: rgba(255, 255, 255, 0.3);
                box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
            }
            50% {
                background: rgba(255, 255, 255, 0.5);
                box-shadow: 0 0 60px rgba(255, 255, 255, 0.9);
            }
        }


  
        
        
.by{
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
}
 .box-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            width: 90%;
            max-width: 1200px;
        }

        .box {
            flex: 1 1 calc(30% - 20px); /* Each box takes approximately 30% width */
            background-color: #3498db;
            color: white;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none; /* Remove underline from links */
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .box i {
            font-size: 50px;
            margin-bottom: 10px;
            color: white;
        }

        .box h3 {
            font-size: 20px;
            margin: 10px 0;
        }

        .box p {
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .box {
                flex: 1 1 calc(50% - 20px); /* On smaller screens, two boxes per row */
            }
        }

        @media (max-width: 480px) {
            .box {
                flex: 1 1 100%; /* On very small screens, one box per row */
            }
        }
        
  .toggle-button {
            width: 100%;
            padding: 15px 20px;
            cursor: pointer;
            background-color: #3498db;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 3px;
            display: flex;
            align-items: center;
        }

        .toggle-button i {
            font-size: 20px;
            color: white;
            margin-left: 10px;
        }

        .toggle-button h3 {
            color: white;
            font-size: 18px;
            margin: 0;
        }

        .toggle-content {
            width: 100%;
            display: none;
            line-height: 32px;
        }

        .toggle-content.active {
            display: table;
        }
  img.responsive {
    max-width: 100%;
    height: auto;   
  }
.fq1{
	float:right;width:32%;padding:10px;border:1px silver solid;-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);height:80px;overflow:hidden;line-height:25px;margin-bottom:2%;
}
.fq2{
	float:right;width:32%;padding:10px;margin-right:1.7%;border:1px silver solid;-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);height:80px;overflow:hidden;line-height:25px;margin-bottom:2%;

}
.fq3{
	float:left;width:32%;padding:10px;border:1px silver solid;-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);height:80px;overflow:hidden;line-height:25px;margin-bottom:2%;

}

.bj{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1800' height='560' preserveAspectRatio='none' viewBox='0 0 1800 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1444%26quot%3b)' fill='none'%3e%3crect width='1800' height='560' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient1445%26quot%3b)'%3e%3c/rect%3e%3cpath d='M447.51 128.72 a103.91 103.91 0 1 0 207.82 0 a103.91 103.91 0 1 0 -207.82 0z' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M943.614%2c502.793C987.423%2c505.774%2c1032.417%2c485.092%2c1052.683%2c446.138C1071.824%2c409.346%2c1053.526%2c367.598%2c1032.567%2c331.811C1011.915%2c296.548%2c984.374%2c262.827%2c943.614%2c259.903C898.079%2c256.636%2c849.756%2c276.365%2c829.417%2c317.236C810.477%2c355.297%2c835.265%2c396.653%2c857.547%2c432.859C878.313%2c466.601%2c904.085%2c500.103%2c943.614%2c502.793' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1020.1590405830373 415.88844061279366L1035.1707960794743 522.702631151976 1141.9849866186566 507.69087565553895 1126.9732311222197 400.87668511635667z' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1606.195%2c219.484C1638.198%2c221.679%2c1675.485%2c218.079%2c1691.007%2c190.006C1706.273%2c162.396%2c1687.572%2c130.395%2c1669.905%2c104.256C1654.883%2c82.03%2c1633.019%2c64.856%2c1606.195%2c64.521C1578.805%2c64.179%2c1553.415%2c78.938%2c1539.664%2c102.628C1525.857%2c126.414%2c1525.783%2c155.708%2c1539.391%2c179.609C1553.143%2c203.764%2c1578.465%2c217.582%2c1606.195%2c219.484' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1271.71 466.15 a105.66 105.66 0 1 0 211.32 0 a105.66 105.66 0 1 0 -211.32 0z' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M401.751%2c515.487C416.413%2c515.141%2c432.339%2c512.882%2c439.894%2c500.311C447.618%2c487.459%2c443.425%2c471.542%2c435.985%2c458.524C428.475%2c445.384%2c416.867%2c434.336%2c401.751%2c433.569C385.343%2c432.736%2c369.401%2c440.644%2c360.915%2c454.712C352.154%2c469.236%2c350.901%2c488.106%2c360.361%2c502.185C369.023%2c515.077%2c386.223%2c515.853%2c401.751%2c515.487' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M-142.53 94.42 a178.42 178.42 0 1 0 356.84 0 a178.42 178.42 0 1 0 -356.84 0z' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M824.725%2c467.691C847.682%2c468.287%2c867.158%2c452.329%2c878.381%2c432.293C889.331%2c412.744%2c891.926%2c388.351%2c879.676%2c369.589C868.289%2c352.149%2c845.544%2c349.502%2c824.725%2c350.117C805.264%2c350.691%2c785.339%2c356.104%2c775.119%2c372.675C764.438%2c389.994%2c766.271%2c411.589%2c775.688%2c429.627C785.952%2c449.287%2c802.554%2c467.115%2c824.725%2c467.691' fill='rgba(130%2c 140%2c 150%2c 0.4)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1444'%3e%3crect width='1800' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='50%25' x2='100%25' y2='50%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1445'%3e%3cstop stop-color='rgba(14%2c 42%2c 71%2c 1)' offset='1'%3e%3c/stop%3e%3cstop stop-color='rgba(0%2c 0%2c 0%2c 0)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
}
#ab311{
	width:100%;padding-right:20%;padding-left:20%;
}
.shake-bottom{-webkit-animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) infinite both;animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) infinite both}


@-webkit-keyframes shake-bottom{0%,100%{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,100%{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}



.cw{
	position:fixed;bottom:10%;right:0px;z-index:999;background-color:#333333;padding:10px;border-radius: 22px 0px 0px 22px;
-moz-border-radius: 22px 0px 0px 22px;
-webkit-border-radius: 22px 0px 0px 22px;
}
.bt66{
	padding:13px;padding-right:25px;padding-left:25px;border-radius: 8px 8px 8px 8px;
-moz-border-radius: 8px 8px 8px 8px;
-webkit-border-radius: 8px 8px 8px 8px;background-color:#000000;color:white;
}
.bt66:hover{
	background-color:#3366CC;border-radius: 4px 4px 4px 4px;
}
.bg881{
background-color: #454545;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='643' height='643' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='88' y1='88' x2='0' y2='0'%3E%3Cstop offset='0' stop-color='%23a00000'/%3E%3Cstop offset='1' stop-color='%23d30001'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='75' y1='76' x2='168' y2='160'%3E%3Cstop offset='0' stop-color='%23404040'/%3E%3Cstop offset='0.09' stop-color='%234f4f4f'/%3E%3Cstop offset='0.18' stop-color='%23595959'/%3E%3Cstop offset='0.31' stop-color='%23616161'/%3E%3Cstop offset='0.44' stop-color='%23676767'/%3E%3Cstop offset='0.59' stop-color='%236c6c6c'/%3E%3Cstop offset='0.75' stop-color='%23707070'/%3E%3Cstop offset='1' stop-color='%23727272'/%3E%3C/linearGradient%3E%3Cfilter id='c' x='0' y='0' width='200%25' height='200%25'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='12' /%3E%3C/filter%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='0 174 0 0 174 0'/%3E%3Cpath fill='%23000' fill-opacity='0.23' filter='url(%23c)' d='M121.8 174C59.2 153.1 0 174 0 174s63.5-73.8 87-94c24.4-20.9 87-80 87-80S107.9 104.4 121.8 174z'/%3E%3Cpath fill='url(%23b)' d='M142.7 142.7C59.2 142.7 0 174 0 174s42-66.3 74.9-99.3S174 0 174 0S142.7 62.6 142.7 142.7z'/%3E%3C/svg%3E");
background-attachment: fixed;
background-repeat: no-repeat;
background-position: top left;}
.heartbeat{-webkit-animation:heartbeat 2s ease-in-out infinite reverse forwards;animation:heartbeat 2s ease-in-out infinite reverse forwards}

@-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}}

.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;
              height: auto;
	}
	#ax1:hover{
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); 
            transform: translateY(-5px) scale(1.05); 
}
strong{
}
.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: #FF0000;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='540' height='450' 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");}
#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:5%;
}
#f3{
	float:left;width:30%;
}
#con1{
	float:right;width:60%;
}
#con2{
	float:left;width:37%;
}
#menu2{
	display:none;
}




#pprod1{
	float:right;width:30%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%;}
#pprod2{
	float:right;width:30%;margin-right:5%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%;
}
#pprod3{
	float:left;width:30%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%;
}




#prod1{
	float:right;width:24%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;margin-bottom:2%;}
#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%;
}
#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%;
}
#prod4{
	float:left;width:24%;-webkit-box-shadow: 1px 1px 1px 1px #C3D6C3; 
box-shadow: 1px 1px 1px 1px #C3D6C3;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;
}



#onp1{
	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.7%;padding:12px;-webkit-box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
-moz-box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
}
#onp2{
	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.7%;padding:12px;-webkit-box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
-moz-box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
}
#onp3{
	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.7%;padding:12px;-webkit-box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
-moz-box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
box-shadow: 5px 5px 3px 0px rgba(194,21,70,1);
}








#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:23%;
}
#np2{
	float:right;width:23%;margin-right:2.7%;
}
#np3{
	float:right;width:23%;margin-right:2.7%;
}
#np4{
	float:left;width:23%;
}
.np{
	 border: 1px solid #E1E1E1;
  border-radius: 10px;
  background-color: #fafafa;
  margin-bottom: 2%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.np:hover{
	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.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;}



#ab11{
	float:left;width:45%;line-height:33px;text-align:justify;padding-top:0%;
}
#ab21{
	float:right;width:50%;line-height:33px;text-align:justify;padding-top:2%;
}



.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:left;margin-top:35px;
}
@font-face {
    font-family: 'weblogmayekan';
	font-style: normal;
	font-weight: 300;
	src: url('/fonts/IRANYekanX-Regular.woff') format('woff'),   
	url('/fonts/IRANYekanX-Regular.woff2') format('woff2');	
	      font-display: swap;

}
@font-face {
    font-family: 'weblogmayekan22';
	font-style: normal;
	font-weight: 300;
	src: url('/fonts/KalamehWeb-Light.woff') format('woff'),   
	url('/fonts/KalamehWeb-Light.woff2') format('woff2');	
	      font-display: swap;

}
@font-face {
    font-family: 'weblogmayekan23';
	font-style: normal;
	font-weight: 300;
	src: url('/fonts/KalamehWeb-Regular.woff') format('woff'),   
	url('/fonts/KalamehWeb-Regular.woff2') format('woff2');		
	      font-display: swap;

}





@font-face {
	font-family: fontb;
	font-style: normal;
	font-weight: 600;
	src: url('/fonts/IRANYekanX-DemiBold.woff') format('woff'),   
	url('/fonts/IRANYekanX-DemiBold.woff2') format('woff2');	
	      font-display: swap;

}

#search{
	width:100%;
}

*{
	font-family:weblogmayekan;font-size:17px;
}
#container { direction: rtl; width: 100%; margin: 0 auto;background-color:white;}
body{
background-color:#F0F0F0;
 overflow-x: hidden;

}
a:hover {
    text-decoration:none;
    }

#logo{
float:right;;
}
#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:25px;padding:0px;margin:0px;font-weight:bold;font-family:weblogmayekan23;
}
h2{
font-size:22px;padding:0px;margin:0px;font-weight:bold;line-height:34px;font-family:weblogmayekan23;
}
h3{
font-size:18px;padding:0px;margin:0px;font-family:weblogmayekan23;
}
@media only screen and (max-width: 1200px) {


#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) {



#nnews1{
float:right;width:150px;height:100px;
}
#nnews2{
height:100px;overflow:hidden;width:670px;float:left;
}
#ninews{
height:100px;width:150px;
}


#np1{
	width:48%;margin:0px;margin-bottom:2%;float:right;
}
#np2{
	width:48%;margin:0px;margin-bottom:2%;float:left;
}
#np3{
	width:48%;margin:0px;margin-bottom:2%;float:right;
}
#np4{
	width:48%;margin:0px;margin-bottom:2%;float:left;
}



}


@media only screen and (max-width: 800px) {

#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) {

#ab1{
	width:100%;margin-bottom:2%;
}
#ab2{
	width:100%;margin-bottom:2%;
}


#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;
}

#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%;
}

#ab11{
	width:100%;margin-bottom:2%;
}
#ab21{
	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%;
}

#pprod1{
	float:right;width:100%;margin:0px;margin-bottom:2%;
}
#pprod2{
	float:right;width:100%;margin:0px;margin-bottom:2%;
}
#pprod3{
	float:right;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;
}
#onp1{
width:100%;margin:0px;margin-bottom:3%;
}
#onp2{
width:100%;margin:0px;margin-bottom:3%;
}
#onp3{
width:100%;margin:0px;margin-bottom:3%;
}
#ab311{
	width:100%;padding-right:5%;padding-left:5%;
}
.fq1{
width:100%;margin:0px;margin-bottom:2%;
}
.fq2{
width:100%;margin:0px;margin-bottom:2%;
}
.fq3{
width:100%;margin:0px;margin-bottom:2%;
}



#fnp1{
	float:right;width:100%;margin-bottom:4%;
}
#fnp2{
	float:left;width:100%;
}

}