/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
            
            .txt_on_img_right{
                right: 0px;
            }
            .txt_on_img_left{
                left: 0px;
            }
            .txt_on_img{

                top: 0;
                width: 35%;
                height: 100%;
                padding: 10% 7%;
            }
            .txt_on_img div{
                margin-top: 30px;
            }
            .txt_on_img p{
                line-height: 2em;
            }
            .txt_on_img a{
                border: 2px solid;
            }
            .txt_on_img .slider_link2{
                padding: 5px 20px;
                transition: all  0.2s;
            }
            .txt_on_img .slider_link2:hover{
                background-color: ;
                border-color:;
                color:white !important;
            }
            .slidersimple {
                overflow: hidden;
                position: relative;
                background: #f5f5f5;
                width: 100%;
                text-align: center;
            }
            .slidersimple_r-img-item img{
                width:100%;
                height:100%;
                object-fit: fill;
            }
            .slidersimple_rBulletBox{
                width:100%;
                position: absolute;
                bottom:0;
            }
        
            
            .slider_link{
                position: absolute;
                right: 0;
                width: 100%;
                height: 100%;
            }

            .slidersimple> .slidersimple_r-arrow.left{
                z-index: 9;
                left:0px;
                transform: scaleX(-1);
            }
            .slidersimple> .slidersimple_r-arrow.right{
                -moz-transform: scaleX(-1);
                -o-transform: scaleX(-1);
                -webkit-transform: scaleX(-1);
                transform: scaleX(1);
                filter: FlipH;
                -ms-filter: "FlipH";
                right: 0px;
                top:0;
            }
            .slidersimple> .slidersimple_r-arrow{
                display:inline-block;
                background:url(https://ariyaland.com/files/main/main/img/icons/flesh.svg) no-repeat center;
                background-size:contain;
                cursor:pointer;
                background-size: 50%;
                width: 40px;
                height:100%;
                position: absolute;

            }
            .slidersimple>.slidersimple_r-mask{width:100%;height:100%; display:inline-block;overflow:hidden;position:relative;}
            .slidersimple_r-img-item{right:0;width:100%;height:100%;margin:auto;position:absolute;text-align:center;}


            /*.slidersimple_rBullet:hover{background:}*/

            .slidersimple_rBullet.slidersimple_rSelected{background:;}
            .slidersimple_rSelected{
                /*padding-top: 5px;*/
                opacity: 1;
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rSelected img{
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rBullet{width:13px; height:13px; background:transparent; border-radius:20px;display:inline-block;border: 1px solid ;
                        margin:3px; -webkit-transition: background .15s ease-in-out;
                 -moz-transition: background .15s ease-in-out;
                 -o-transition: background .15s ease-in-out;
                 transition: background .15s ease-in-out;}
        #slidersimple7{
                        font-size:0px;
                }#slidersimple7 .color_tem1{ /*range asli color ??? */
            color: ;
        }#slidersimple7 .color_tem2{ /*range asli color ??? */
            color: ;
        }#slidersimple7 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#slidersimple7 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#slidersimple7 .color_title{/*range title asli module*/
                            color: ;
                                }#slidersimple7 .color_text{/*range text haye module  */
                            color:;
                                }#slidersimple7 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#slidersimple7 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#slidersimple7 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#slidersimple7 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#slidersimple7 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#slidersimple7 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#slidersimple7 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#slidersimple7 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }
            .toastify{
                position: fixed;
                top: 10px;
                right: -100vw;
                border-radius: 3px;
                padding: 0.8rem;
                overflow: hidden;
                z-index: 999999;
                transition: 400ms cubic-bezier(.47,1.64,.41,.8);
                  
            min-width: 350px;
            width: max-content;
        
            }
            .times-tostify{
                flex: 0 0 max-content;
                width: 100%;
                max-width: max-content;
            }
            .times-tostify svg{
                width: 20px;
                height: 20px;
                fill: #fff;
            }
            .head-toastify svg{
                fill: #fff;
            }
            #message_toastify{
                padding-top: 0.5rem;
                color: #fff;
            }
            .error-toastify{
                background-color: #dc3545;    
                box-shadow: 0 1px 20px 1px #dc3545;
            }
            .success-toastify{
                background-color: #28a745;
                box-shadow: 0 1px 20px 1px #28a745;
            }
            .warning-toastify{
                background-color: #ffc107;
                box-shadow: 0 1px 20px 1px #ffc107;
            }
            .info-toastify{
                background-color: #007bff;
                box-shadow: 0 1px 20px 1px #007bff;
            }
            .error-toastify .error-icon,
            .success-toastify .success-icon,
            .info-toastify .info-icon,
            .warning-toastify .warning-icon{
                display: flex !important;
            }
            .error-icon,.success-icon,.warning-icon,.info-icon{
                display: none;
            }
        
            .module_shop_simplesub_7 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_7 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_7 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_7 .path-email{
                fill: red;
            }
            .module_shop_simplesub_7 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_7 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_7 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_7 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_7 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_7 .text-title-sub-main{
                
                    margin-right: 5px; 
                
                color:#000000;
                background-color:#fadb14!important;
            }
            
            .module_shop_simplesub_7 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_7 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_7 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_7 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_7 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_7 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_7 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_7 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_7 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_7 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_7 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_7 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            .module_shop_simplesub_7 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_7 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
            
                .module_shop_simplesub_7 .border-bottom-left{
                    border-bottom-left-radius:0px;
                }
                .module_shop_simplesub_7 .border-bottom-right{
                    border-bottom-right-radius:0px;
                }
                .module_shop_simplesub_7 .link-img{
                    height:100%!important;
                    border-radius:0px;
                }
                .module_shop_simplesub_7 .div-title a{
                    color:#333!important;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .module_shop_simplesub_7{
                    background-color:none;
                    background-image:url(https://ariyaland.com/files/);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: left;
                    padding-top:0rem;
                    padding-bottom:2rem;
                    margin-top:0rem;
                    margin-bottom:0rem;
                    z-index:0;
                }
                .module_shop_simplesub_7 .price-center{
                    color:f5f5f5#;
                    width: 100%;
                    display: flex;
                    justify-content: center; 
                } 
                .module_shop_simplesub_7 .img-price-center{
                    width:30px;
                    height:30px;
                    margin-right:0.5rem; 
                }
                .module_shop_simplesub_7 .box-img-price{
                    width:30px;
                    height:30px;
                    margin-left:2rem;
                } 
                .module_shop_simplesub_7 .div-price-center{
                    width: 100%;
                    display: flex;
                    justify-content: center;
                } 
                .module_shop_simplesub_7 .div-title label{
                    font-size:1em;
                }
                .module_shop_simplesub_7  .div-offer{
                    width:18%;
                    height:8%;
                    background-color: #ff5722;
                    color:#fff;
                    font-weight: bold;
                    position: absolute;
                    left: 6%;
                    top: 6.2%;
                    border-radius: 3px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size:15px;
                }
                .module_shop_simplesub_7 .img-price{
                    width: 100%;
                    object-fit: contain;
                    height: 100%;
                    
                } 
                .module_shop_simplesub_7 .title-for-swiper{
                    display:flex;
                    justify-content:center;
                    align-items: center;
                    margin:2rem auto 0rem auto;
                    width:1200px;
                    max-width:1200px;
                    overflow:hidden;
                    font-size:1.25em;
                    height:50px;
                    color:#000000;
                    background-color:#fadb14!important;
                    padding:0.5rem;
                }
                .module_shop_simplesub_7 .container{
                    width:1200px;
                    max-width:1200px;
                    margin:auto auto auto auto;
                    overflow:hidden;
                    border:0px  white;
                }
                .module_shop_simplesub_7 .card-box-type1{
                    border:1px solid #dddddd;
                    background:;
                    border-radius:0px;
                }
                .module_shop_simplesub_7 .swiper-slide{
                    display: flex;
                    flex-direction: column;
                }
                .module_shop_simplesub_7 .height-content {
                    height:max-content;
                }
                .module_shop_simplesub_7 .btn-next{
                    margin-top: 18px;
                    z-index: 1;
                    background:#fadb14;
                    height: 36px;
                    width: 36px;
                    position: absolute;
                    top:175px;
                    right:0.6%;
                    -webkit-transition: all .2s linear;
                    transition: all .2s linear;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                }
                .module_shop_simplesub_7 .btn-prev:hover{
                    background:#fadb14;
                }
                .module_shop_simplesub_7 .btn-next:hover{
                    background:#fadb14;
                }
                .module_shop_simplesub_7 .btn-prev{
                    background:#fadb14;
                    height: 36px;
                    width: 36px;
                    position: absolute;
                    top:175px;
                    left:0.6%;
                    margin-top: 18px;
                    z-index: 1;
                    -webkit-transition: all .2s linear;
                    transition: all .2s linear;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                }
                .module_shop_simplesub_7 .svg_next{
                    width:13px;
                    fill:#000000;
                }
                .module_shop_simplesub_7 .svg_next:hover{
                    fill:#8c8c8c;
                }
                .module_shop_simplesub_7 .svg_prev{
                    width:13px;
                    fill:#000000;
                    transform:rotate(180deg);
                }
                .module_shop_simplesub_7 .svg_prev:hover{
                    fill:#8c8c8c;
                }
                .module_shop_simplesub_7 .card{
                    padding:0.5rem;
                    display: flex;
                    justify-content: center;
                }
                .module_shop_simplesub_7 .div-box-img{
                    width:100%;
                    height:300px!important;
                    padding:0rem;
                }
                .module_shop_simplesub_7 .div-box-img img{
                    width:100%;
                    height:100%;
                    object-fit:contain;
                }
                .module_shop_simplesub_7 .div-title{
                    width: 100%;
                    height: 45px;
                    font-weight:500;
                    line-height:1.5;
                    padding:0 0.5rem;
                    overflow:hidden;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    font-size:1em;
                }
                .module_shop_simplesub_7 .div-title span{
                    color:#333;    
                }
                .module_shop_simplesub_7 .div-title span:hover{
                    color:#03a9f5;
                    cursor:pointer;   
                }
                .module_shop_simplesub_7 .div-price-discount{
                    width: 100%;
                    height: 60px;
                    line-height:1.5;
                    padding:0 0.5rem;
                    overflow:hidden;
                    display:flex;
                    justify-content:center;
                    margin-bottom:0.7rem;
                    align-items:baseline;
                    flex-direction:column;
                    flex-wrap:wrap;
                }
                .module_shop_simplesub_7 .price{
                    width:65%;
                    display: flex;
                    align-items: center;
                    font-size:18px;
                    font-weight:200;
                    justify-content: end;
                    color:f5f5f5#;
                }
                .module_shop_simplesub_7 .price-center{
                    display: flex;
                    align-items: center;
                    font-size:19px;
                    font-weight:bold;
                    justify-content: center;
                    color:f5f5f5#;
                }
                .module_shop_simplesub_7 .discount{
                    display: flex;
                    align-items: center;
                    font-size: 15px;
                    font-weight: 200;
                    width: 64%;
                    text-decoration: line-through;
                    color: #999999;
                    padding-right:0.5rem;
                    justify-content: end;
                }
                .module_shop_simplesub_7 .svg_tooman{
                    width: 35px;
                    padding-right: 0.2rem;
                    fill:red!important;
                }
                .module_shop_simplesub_7 .svg_tooman_discount{
                    width: 35px;
                    padding-right: 0.2rem;
                    fill:#999999!important;
                }
                .module_shop_simplesub_7 .div-add-share{
                    width:100%;
                    height:45px;
                    display:flex;
                    border-top: 1px solid #dddddd;
                    cursor:pointer;
                    flex-direction: row;
                }
                .module_shop_simplesub_7 .add-shop{
                    width: 20%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow:hidden;
                    background:#f5f5f5;
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .svgHeart{ 
                    height: 100%;
                }
                .module_shop_simplesub_7 .svgShare{ 
                    height: 100%;
                }
                .module_shop_simplesub_7 .animate-share{
                    bottom: 50%;
                    transition: 0.2s bottom ease-in-out;
                }
                .module_shop_simplesub_7 .animate-heart{
                    bottom: 50%;
                    transition: 0.2s bottom ease-in-out;
                }
                .module_shop_simplesub_7 .add-shop span{
                    font-size: 15px;
                    font-weight: 700;
                    color:f5f5f5#;
                    z-index:10;
                }
                .module_shop_simplesub_7 .add-shop .link-card{
                    font-size: 15px;
                    font-weight: 700;
                    color:f5f5f5#;
                    z-index:10;
                }
                .module_shop_simplesub_7 .grow{
                    flex-grow:2;
                }
                .module_shop_simplesub_7 .svg_heart{
                    width:15px;;
                    fill:#999999;
                    z-index:10;
                    transition: fill 1s;
                    height: 44px;
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .svg_share{
                    width: 15px;
                    fill: #999999;
                    z-index: 10;
                    transition: fill 1s;
                    height: 44px;
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .animate-blue .span{
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .svgHeart:first-child .svg_heart{
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .svgHeart:first-child {
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .svgShare:first-child .svg_share{
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .svgShare:first-child {
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .animate-blue{
                    position:absolute;
                    top:0;
                    left:-100%;
                    bottom:0;
                    width:100%;
                    background:#bfbfbf;
                    transition: left 0.4s;
                }
                .module_shop_simplesub_7 .add-shop:hover .animate-blue{
                    left:0;
                }
                .module_shop_simplesub_7 .add-shop:hover span{
                    color:white;
                }
                .module_shop_simplesub_7 .add-shop:hover .link-card{
                    color:white;
                }
                .module_shop_simplesub_7 .add-shop:hover .animate-heart{
                    bottom: -50%; 
                }
                .module_shop_simplesub_7 .add-shop:hover .animate-share{
                    bottom: -50%; 
                }
            
            .link-card{
                cursor: pointer;
            }
        .module[data-id_page='3040']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='3040']:hover{;}.module[data-id_page='3040']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3040'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='3040'] 
            
            .module[data-id_page='3040'] .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            .module[data-id_page='3040'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='3040']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layout_box_48.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;setting:3;grid-column-start:1;grid-column-end:3;grid-row-start:1;grid-row-end:3;padding-top:64px;padding-bottom:64px;padding-right:64px;padding-left:64px;border-style:none;}#layout_box_3040:hover{}
                #layout_box_48:hover .background-img {
                    filter:hue-rotate(40deg);
                }
            
                #layout_box_48 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://ariyaland.com/files/Picture/1696147583_68858854_مشاوره.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_48 
            
            #layout_box_48 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_48 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_48:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_48 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_48 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_48.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_47.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;setting:3;grid-column-start:3;grid-column-end:5;grid-row-start:1;grid-row-end:3;padding-top:64px;padding-bottom:64px;padding-right:64px;padding-left:64px;border-style:none;}#layout_box_3040:hover{}#layout_box_47 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_47 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #layout_box_47:hover .background-img {
                    filter:hue-rotate(40deg);
                }
            
                #layout_box_47 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://ariyaland.com/files/Picture/1696147583_8858790_تعمیرات.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_47 
            
            #layout_box_47 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_47 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_47:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_47 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_47 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_47.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_13 .new_layout_box_main{display:grid;width:1200px;height:290px;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(2,1fr);column-gap:16px;row-gap:16px;visibility:visible;margin-top:65px;margin-bottom:64px;border-style:none;}.module[data-id_page='3040']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_13{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_13 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_13 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_13 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_13 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_13 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            .module_shop_simplesub_8 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_8 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_8 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_8 .path-email{
                fill: red;
            }
            .module_shop_simplesub_8 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_8 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_8 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_8 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_8 .title-icon-for-swiper{
                width:0px;
                height:0px;
                
                
            }
            .module_shop_simplesub_8 .text-title-sub-main{
                
                    margin-right: 5px; 
                
                color:#000000;
                background-color:#fadb14!important;
            }
            
            .module_shop_simplesub_8 .title-icon-for-swiper-img{
                object-fit: contain;
                width:0px;
                height:0px;
                
            }
            .module_shop_simplesub_8 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_8 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_8 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_8 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_8 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_8 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_8 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_8 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_8 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_8 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_8 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_8 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            .module_shop_simplesub_8 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_8 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
            
                .module_shop_simplesub_8 .border-bottom-left{
                    border-bottom-left-radius:0px;
                }
                .module_shop_simplesub_8 .border-bottom-right{
                    border-bottom-right-radius:0px;
                }
                .module_shop_simplesub_8 .link-img{
                    height:100%!important;
                    border-radius:0px;
                }
                .module_shop_simplesub_8 .div-title a{
                    color:#333!important;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .module_shop_simplesub_8{
                    background-color:none;
                    background-image:url(https://ariyaland.com/files/);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: left;
                    padding-top:0rem;
                    padding-bottom:2rem;
                    margin-top:0rem;
                    margin-bottom:0rem;
                    z-index:0;
                }
                .module_shop_simplesub_8 .price-center{
                    color:f5f5f5#;
                    width: 100%;
                    display: flex;
                    justify-content: center; 
                } 
                .module_shop_simplesub_8 .img-price-center{
                    width:30px;
                    height:30px;
                    margin-right:0.5rem; 
                }
                .module_shop_simplesub_8 .box-img-price{
                    width:30px;
                    height:30px;
                    margin-left:2rem;
                } 
                .module_shop_simplesub_8 .div-price-center{
                    width: 100%;
                    display: flex;
                    justify-content: center;
                } 
                .module_shop_simplesub_8 .div-title label{
                    font-size:1em;
                }
                .module_shop_simplesub_8  .div-offer{
                    width:18%;
                    height:8%;
                    background-color: #ff5722;
                    color:#fff;
                    font-weight: bold;
                    position: absolute;
                    left: 6%;
                    top: 6.2%;
                    border-radius: 3px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size:15px;
                }
                .module_shop_simplesub_8 .img-price{
                    width: 100%;
                    object-fit: contain;
                    height: 100%;
                    
                } 
                .module_shop_simplesub_8 .title-for-swiper{
                    display:flex;
                    justify-content:center;
                    align-items: center;
                    margin:2rem auto 0rem auto;
                    width:1200px;
                    max-width:1200px;
                    overflow:hidden;
                    font-size:1.25em;
                    height:50px;
                    color:#000000;
                    background-color:#fadb14!important;
                    padding:0.5rem;
                }
                .module_shop_simplesub_8 .container{
                    width:1200px;
                    max-width:1200px;
                    margin:auto auto auto auto;
                    overflow:hidden;
                    border:0px  white;
                }
                .module_shop_simplesub_8 .card-box-type1{
                    border:1px solid #dddddd;
                    background:;
                    border-radius:0px;
                }
                .module_shop_simplesub_8 .swiper-slide{
                    display: flex;
                    flex-direction: column;
                }
                .module_shop_simplesub_8 .height-content {
                    height:max-content;
                }
                .module_shop_simplesub_8 .btn-next{
                    margin-top: 18px;
                    z-index: 1;
                    background:#fadb14;
                    height: 36px;
                    width: 36px;
                    position: absolute;
                    top:175px;
                    right:0.6%;
                    -webkit-transition: all .2s linear;
                    transition: all .2s linear;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                }
                .module_shop_simplesub_8 .btn-prev:hover{
                    background:#fadb14;
                }
                .module_shop_simplesub_8 .btn-next:hover{
                    background:#fadb14;
                }
                .module_shop_simplesub_8 .btn-prev{
                    background:#fadb14;
                    height: 36px;
                    width: 36px;
                    position: absolute;
                    top:175px;
                    left:0.6%;
                    margin-top: 18px;
                    z-index: 1;
                    -webkit-transition: all .2s linear;
                    transition: all .2s linear;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                }
                .module_shop_simplesub_8 .svg_next{
                    width:13px;
                    fill:#000000;
                }
                .module_shop_simplesub_8 .svg_next:hover{
                    fill:#8c8c8c;
                }
                .module_shop_simplesub_8 .svg_prev{
                    width:13px;
                    fill:#000000;
                    transform:rotate(180deg);
                }
                .module_shop_simplesub_8 .svg_prev:hover{
                    fill:#8c8c8c;
                }
                .module_shop_simplesub_8 .card{
                    padding:0.5rem;
                    display: flex;
                    justify-content: center;
                }
                .module_shop_simplesub_8 .div-box-img{
                    width:100%;
                    height:300px!important;
                    padding:0rem;
                }
                .module_shop_simplesub_8 .div-box-img img{
                    width:100%;
                    height:100%;
                    object-fit:contain;
                }
                .module_shop_simplesub_8 .div-title{
                    width: 100%;
                    height: 45px;
                    font-weight:500;
                    line-height:1.5;
                    padding:0 0.5rem;
                    overflow:hidden;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    font-size:1em;
                }
                .module_shop_simplesub_8 .div-title span{
                    color:#333;    
                }
                .module_shop_simplesub_8 .div-title span:hover{
                    color:#03a9f5;
                    cursor:pointer;   
                }
                .module_shop_simplesub_8 .div-price-discount{
                    width: 100%;
                    height: 60px;
                    line-height:1.5;
                    padding:0 0.5rem;
                    overflow:hidden;
                    display:flex;
                    justify-content:center;
                    margin-bottom:0.7rem;
                    align-items:baseline;
                    flex-direction:column;
                    flex-wrap:wrap;
                }
                .module_shop_simplesub_8 .price{
                    width:65%;
                    display: flex;
                    align-items: center;
                    font-size:18px;
                    font-weight:200;
                    justify-content: end;
                    color:f5f5f5#;
                }
                .module_shop_simplesub_8 .price-center{
                    display: flex;
                    align-items: center;
                    font-size:19px;
                    font-weight:bold;
                    justify-content: center;
                    color:f5f5f5#;
                }
                .module_shop_simplesub_8 .discount{
                    display: flex;
                    align-items: center;
                    font-size: 15px;
                    font-weight: 200;
                    width: 64%;
                    text-decoration: line-through;
                    color: #999999;
                    padding-right:0.5rem;
                    justify-content: end;
                }
                .module_shop_simplesub_8 .svg_tooman{
                    width: 35px;
                    padding-right: 0.2rem;
                    fill:red!important;
                }
                .module_shop_simplesub_8 .svg_tooman_discount{
                    width: 35px;
                    padding-right: 0.2rem;
                    fill:#999999!important;
                }
                .module_shop_simplesub_8 .div-add-share{
                    width:100%;
                    height:45px;
                    display:flex;
                    border-top: 1px solid #dddddd;
                    cursor:pointer;
                    flex-direction: row;
                }
                .module_shop_simplesub_8 .add-shop{
                    width: 20%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow:hidden;
                    background:#f5f5f5;
                    cursor:pointer;
                }
                .module_shop_simplesub_8 .svgHeart{ 
                    height: 100%;
                }
                .module_shop_simplesub_8 .svgShare{ 
                    height: 100%;
                }
                .module_shop_simplesub_8 .animate-share{
                    bottom: 50%;
                    transition: 0.2s bottom ease-in-out;
                }
                .module_shop_simplesub_8 .animate-heart{
                    bottom: 50%;
                    transition: 0.2s bottom ease-in-out;
                }
                .module_shop_simplesub_8 .add-shop span{
                    font-size: 15px;
                    font-weight: 700;
                    color:f5f5f5#;
                    z-index:10;
                }
                .module_shop_simplesub_8 .add-shop .link-card{
                    font-size: 15px;
                    font-weight: 700;
                    color:f5f5f5#;
                    z-index:10;
                }
                .module_shop_simplesub_8 .grow{
                    flex-grow:2;
                }
                .module_shop_simplesub_8 .svg_heart{
                    width:15px;;
                    fill:#999999;
                    z-index:10;
                    transition: fill 1s;
                    height: 44px;
                    cursor:pointer;
                }
                .module_shop_simplesub_8 .svg_share{
                    width: 15px;
                    fill: #999999;
                    z-index: 10;
                    transition: fill 1s;
                    height: 44px;
                    cursor:pointer;
                }
                .module_shop_simplesub_8 .animate-blue .span{
                    cursor:pointer;
                }
                .module_shop_simplesub_8 .svgHeart:first-child .svg_heart{
                    fill: #fff !important;
                }
                .module_shop_simplesub_8 .svgHeart:first-child {
                    fill: #fff !important;
                }
                .module_shop_simplesub_8 .svgShare:first-child .svg_share{
                    fill: #fff !important;
                }
                .module_shop_simplesub_8 .svgShare:first-child {
                    fill: #fff !important;
                }
                .module_shop_simplesub_8 .animate-blue{
                    position:absolute;
                    top:0;
                    left:-100%;
                    bottom:0;
                    width:100%;
                    background:#bfbfbf;
                    transition: left 0.4s;
                }
                .module_shop_simplesub_8 .add-shop:hover .animate-blue{
                    left:0;
                }
                .module_shop_simplesub_8 .add-shop:hover span{
                    color:white;
                }
                .module_shop_simplesub_8 .add-shop:hover .link-card{
                    color:white;
   