/**
 * 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;
}  
            
                #module_amlak2_search_2{
                    position: relative;
                    margin: 0;
                    padding: 0;
                    width: 100%;
                    height: 100vh;
                    background: #0d174190;
                }
                #module_amlak2_search_2 .bg_md_slider{
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    z-index: -1;
                    top: 0;
                    left: 0;
                    overflow: hidden;
                }
                #module_amlak2_search_2 .bg_md_slider .submodule_slider .swiper-wrapper {
                  width: 100%;
                  height: 100%;
                }
                
                #module_amlak2_search_2 .bg_md_slider .submodule_slider .swiper-slide {
                  width: 100%;
                  height: 100%;
                  background-size: cover;
                  background-position: center;
                }
                #module_amlak2_search_2 .swiper-container {
                    width: 100%;
                    height: 100%;
                }
                #module_amlak2_search_2 .box{
                    width: 100%;
                    height: 100%;
                }
                #module_amlak2_search_2 .swiper-slide {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                
                #module_amlak2_search_2 .localtag_main {
                    width: 100%;
                    height: 100%;
                }
                
                #module_amlak2_search_2 .ofcov {
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                }
                #module_amlak2_search_2 .banner-box{
                    width: 1200px;
                    position: absolute;
                    top: 38%;
                    right: 50%;
                    transform: translate(50%, -38%);
                    height: fit-content;
                }
                #module_amlak2_search_2 .banner-box_details{
                    height: 100%;
                    width: 100%;
                }
                #module_amlak2_search_2 .container-details{
                    color: #fff;
                    padding-bottom: 30px;
                }
                #module_amlak2_search_2 .line{
                    background: #fff;
                    height: 8px;
                    width: 8px;
                    margin: 0 auto;
                    border-radius: 50%;
                    margin-bottom: 10px;
                    position: relative;
                }
                #module_amlak2_search_2 .line:before {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 50px;
                    left: -55px;
                    top: 3px;
                    background: #fff;
                }
                #module_amlak2_search_2 .line:after {
                    content: "";
                    position: absolute;
                    height: 2px;
                    width: 50px;
                    right: -55px;
                    top: 3px;
                    background: #fff;
                }
                #module_amlak2_search_2 .container-details>p{
                    margin-bottom: 30px;
                }
                #module_amlak2_search_2 .container-details>div{
                    margin-bottom: 30px;
                }
                #module_amlak2_search_2 .container-details>h1{
                    font-size: 42px;
                    font-weight: 700;
                    margin-bottom: 40px;
                    line-height: 42px;
                }
                #module_amlak2_search_2 .pb-250px{
                    padding-bottom: 200px;
                }
                #module_amlak2_search_2 .rt-s::after{
                    transform: rotate(225deg);
                }
                #module_amlak2_search_2 .active{
                    background-color: #f6f6f6 !important;
                    font-weight: 700 !important;
                }
                #module_amlak2_search_2 .options-p-span>label{
                    width: 100%;
                    cursor: pointer;
                }
                #module_amlak2_search_2 .options-p-span{
                    padding: 0 8px;
                }
                #module_amlak2_search_2 .select-search{
                    height: 100%;
                    width: 100%;
                }
                #module_amlak2_search_2 .search-btn{
                    color: #fff;
                    background: #5ba600;
                    width: 150px;
                    border-radius: 5px;
                    height: 50px;
                    line-height: 50px;
                    text-align: center;
                    overflow: hidden;
                    transition: all 0.5s ease;
                    font-size: 15px;
                    display: inline-block;
                    transform: perspective(1px) translateZ(0);
                    background-position: right bottom;
                    background-size: 200% 100%;
                    background-image: -webkit-gradient( linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #5ba600) );
                    margin: 0 15px;
                }
                #module_amlak2_search_2 .search-btn:hover{
                    background-color: #28a745;
                    color: #fff !important;
                    background-position: left bottom;
                }
                #module_amlak2_search_2 .search-btn > i{
                    margin-left: 10px;
                }
                #module_amlak2_search_2 [type=search] {
                    -webkit-appearance: textfield;
                    outline-offset: -2px;
                }
                #module_amlak2_search_2 .search-inp {
                    width: 350px;
                    color: #9c9da0;
                    font-size: 16px;
                    height: 50px;
                    background-color: #fff;
                    border-radius: 5px;
                    border: solid 1px #e8e8e8;
                    position: relative;
                    padding: 8px;
                }
                #module_amlak2_search_2 .advanced-search-button {
                    position: relative;
                    color: #fff;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    cursor: pointer;
                    height: 50px;
                }
                #module_amlak2_search_2 .advanced-search-button span {
                    cursor: pointer;
                }
                #module_amlak2_search_2 .advanced-search-button > i::after {
                    height: 5px;
                    width: 5px;
                    left: -18px;
                    top: 44%;
                    border-bottom: 2px solid #fff;
                    border-right: 2px solid #fff;
                    content: "";
                    display: block;
                    pointer-events: none;
                    position: absolute;
                    -webkit-transform-origin: 66% 66%;
                    -ms-transform-origin: 66% 66%;
                    transform-origin: 66% 66%;
                    -webkit-transform: rotate(45deg);
                    -ms-transform: rotate(45deg);
                    transform: rotate(45deg);
                    -webkit-transition: all .15s ease-in-out;
                    transition: all .15s ease-in-out;
                }
                #module_amlak2_search_2 .tab-content {
                    position: relative;
                    line-height: 22px;
                    padding: 10px 10px 10px 10px;
                }
               #module_amlak2_search_2 .tab-content:before {
                   content: "";
                   position: absolute;
                   top: 0;
                   left: 0;
                   right: 0;
                   bottom: 0;
                   height: 100px;
                   opacity: 0.95;
                   background-color: rgba(48, 52, 65, 1);
               }
               #module_amlak2_search_2 .search-box{
                   display: flex;
                   align-items: center;
                   justify-content: center;
               }
               #module_amlak2_search_2 .label-filters-text {
                    color: #fff;
                    position: sticky;
                    font-size: 1rem;
                    padding-bottom: 12px;
                }
        
            #module_amlak2_search_2 .selectBox {
                padding: 0 5px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                width: 200px;
                height: 50px;
                line-height: 50px;
                -webkit-tap-highlight-color: transparent;
                background-color: #fff;
                border-radius: 5px;
                border: solid 1px #e8e8e8;
                box-sizing: border-box;
                clear: both;
                cursor: pointer;
                float: left;
                font-family: inherit;
                font-size: 14px;
                font-weight: 400;
                outline: 0;
                padding-right: 10px;
                padding-left: 10px;
                position: relative;
                text-align: right !important;
                transition: all .2s ease-in-out;
                user-select: none;
                white-space: nowrap;
                margin: 0 0 0px 10px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            #module_amlak2_search_2 .rightFiter {
                padding: 10px;
            }
            #module_amlak2_search_2 .optionsSelect {
                width: 200px;
                background-color: #fff;
                border-radius: 5px;
                box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
                box-sizing: border-box;
                margin-top: 4px;
                overflow: hidden;
                padding: 0;
                position: absolute;
                top: 100%;
                left: 10px;
                -webkit-transition: all .2s cubic-bezier(.5,0,0,1.25), opacity .15s ease-out;
                transition: all .2s cubic-bezier(.5,0,0,1.25), opacity .15s ease-out;
                -webkit-transform: scale(1) translateY(0);
                -ms-transform: scale(1) translateY(0);
                transform: scale(1) translateY(0);
                -webkit-transform-origin: 50% 0;
                -ms-transform-origin: 50% 0;
                transform-origin: 50% 0;
                z-index: 9;
                max-height: 200px;
                overflow-y: auto;
            }
            #module_amlak2_search_2 .optionsSelect > li {
                cursor: pointer;
                font-weight: 400;
                line-height: 40px;
                list-style: none;
                min-height: 40px;
                color: #565872;
                outline: 0;
                padding-left: 18px;
                padding-right: 29px;
                text-align: right;
                -webkit-transition: all .2s;
                transition: all .2s;
            }
            #module_amlak2_search_2 .selectBox i{
                line-height: 35px;
                font-size: 12px;
                color: #9c9da0;
                cursor: pointer;
            }
            
            #module_amlak2_search_2 .optionsSelect > li > label{
                flex: 1 0;
            }
            #module_amlak2_search_2 .optionsSelect > li:hover{
                background-color: #f6f6f6;
            }
            #module_amlak2_search_2 .optionsSelect > li:first-child:hover{
                border-top-left-radius: 3px;
                border-top-right-radius: 3px;
            }
            #module_amlak2_search_2 .optionsSelect > li:last-child:hover{
                border-bottom-left-radius: 3px;
                border-bottom-right-radius: 3px;
            }
            #module_amlak2_search_2 .selectBox span {
                color: #9c9da0;
                font-size: 14px;
                cursor: pointer;
            }
            #module_amlak2_search_2 .advanced-search-item-wrap {
                position: absolute;
                top: 100px;
                left: 0;
                width: 100%;
                padding: 0;
                transition: max-height 0.4s;
                -webkit-animation-name: slideDown;
                animation-name: slideDown;
                -webkit-animation-duration: 0.4s;
                animation-duration: 0.4s;
                -webkit-animation-timing-function: ease;
                animation-timing-function: ease;
                z-index: 2;
            }
            #module_amlak2_search_2 .advanced-search-item {
                display: flex;
                flex-wrap: wrap;
                position: relative;
                width: 100%;
                max-width: 100%;
                padding: 0 25px 40px;
                transition: all 0.5s;
                -webkit-animation-name: fadeIn;
                animation-name: fadeIn;
                -webkit-animation-duration: 0.5s;
                animation-duration: 0.5s;
                -webkit-animation-timing-function: ease;
                animation-timing-function: ease;
            }
            #module_amlak2_search_2 .advanced-search-item:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 0.95;
                background-color: rgba(48, 52, 65, 1);
            }
            #module_amlak2_search_2 .inp-search-box-h {
                width: 48%;
                color: #9c9da0;
                font-size: 14px;
                height: 50px;
                background-color: #fff;
                border-radius: 5px;
                border: solid 1px #e8e8e8;
                position: relative;
                padding: 20px;
                direction: rtl !important;
            }
            #module_amlak2_search_2 .inp-search-box-h-2 {
                width: 96%;
                color: #9c9da0;
                font-size: 14px;
                height: 50px;
                background-color: #fff;
                border-radius: 5px;
                border: solid 1px #e8e8e8;
                position: relative;
                padding: 20px;
            }
            #module_amlak2_search_2 .itemsText {
                font-size: 14px;
                width: 100%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        .module[data-id_page='38']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='38']:hover{;}.module[data-id_page='38']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='38'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='38']:hover .background-img{
                        filter:none;
                    }
                
                   .module[data-id_page='38']  
                
                .module[data-id_page='38'] .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='38']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                            .module[data-id_page='38']:hover{
                                filter:none;
                            }
                        
                           .module[data-id_page='38']{
                               background-image:url("https://esfamlak.ir/files/image/pic/1721575981_555.svg");
                               filter:none;
                           }
                        
            .mainContainer{
                padding: 50px;
            }
        
            
                #sub_amlak_1 .sub_container {
                    background-color: #f0f0f0;
                    border: 1px solid #ccc;
                }
                #sub_amlak_1 .sub_container .gallery {
                    max-width: 100%;
                    height: 300px; 
                    overflow: hidden;
                }
                #sub_amlak_1 .top-level-info {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    padding: 10px;
                }
                #sub_amlak_1 label.title-price{
                    font-weight:bold;
                }
                #sub_amlak_1 .sub_container .gallery img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                #sub_amlak_1 .property-actions {
                    position: absolute;
                    right: 50%;
                    bottom: 10px;
                    transform: translate(50%, -5px);
                }
                #sub_amlak_1 .property-actions .btn:last-child {
                    background: #478500;
                    color: #fff!important;
                    text-align: center;
                    border: 1px solid #478500;
                    border-radius: 0.25rem;
                    padding:5px 15px;
                }
                #sub_amlak_1 .sub_container .checkAvailability {
                    background-color: #4285f4;
                    color: #ffffff;
                }
                #sub_amlak_1 .svg_prev{
                    width: 22px;
                    fill: #fff;
                }
                #sub_amlak_1 .all-content-rw{
                    height:500px;
                }
                #sub_amlak_1 .svg_next{
                    width: 22px;
                    fill: #fff;
                    transform: rotate(180deg);
                }
                #sub_amlak_1 .simple_swiper {
                    width: 100%;
                    margin: 0;
                }
                #sub_amlak_1 .simple_swiper .swiper-slide {
                    text-align: center;
                    font-size: 18px;
                    background: #fff;
                }
                #sub_amlak_1 .simple_swiper .swiper-next{
                    background: #2a2a2a;
                    color: #fff;
                    width: 50px;
                    height: 50px;
                    opacity: 0.5;
                    cursor: pointer;
                    font-size: 32px;    
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    left: 20px;
                    position: absolute;
                    top: 50%;
                    z-index: 10;
                    transform: translateY(-50%);
                }
                #sub_amlak_1 .simple_swiper .swiper-prev{
                    background: #2a2a2a;
                    color: #fff;
                    width: 50px;
                    height: 50px;
                    opacity: 0.5;
                    cursor: pointer;
                    font-size: 32px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    right: 20px;
                    position: absolute;
                    top: 50%;
                    z-index: 10;
                    transform: translateY(-50%);
                }
                #sub_amlak_1 .adv-img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
        
            #sub_amlak_1200_1 > div{
                width: 100%;
                margin: 0 auto 0 auto;
                height: auto;
            }
            #sub_amlak_1200_1 .swiper-wrapper *{
                color:#000!important;
            }
            #sub_amlak_1200_1 > div.str_product{
                filter: blur(0px);
                background-color: transparent;
                background-image: transparent;
                background-size: cover;
            }
            #sub_amlak_1200_1{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            #sub_amlak_1200_1 .title-shop{
                justify-content: center;
                padding:0 15px;
            }
            #sub_amlak_1200_1 .title-shop h2{
                color: #000;
                font-size: 24px;
                line-height: 100px;
                font-weight:500;
            }
            #sub_amlak_1200_1 .adv-img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                padding: 15px;
                user-drag: none;
                -webkit-user-drag: none;
                user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
            }
            #sub_amlak_1200_1 .icon_melk_sub{
                 width: 24px;
                 height: 24px;
                 border-radius:2px;
            }
            #sub_amlak_1200_1 .detail-field-sub-melk{
               margin: 2px 0;
            }
        .module[data-id_page='49']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;z-index:0;border-style:none;}.module[data-id_page='49']:hover{;}.module[data-id_page='49']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='49'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='49']:hover .background-img{
                        filter:none;
                    }
                
                   .module[data-id_page='49']  
                
                .module[data-id_page='49'] .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='49']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                            .module[data-id_page='49']:hover{
                                filter:none;
                            }
                        
                           .module[data-id_page='49']{
                               background-image:url("https://esfamlak.ir/files/image/pic/1720966452_o-ungaro-409127.jpg");
                               filter:none;
                           }
                       
            #module_new_medical_31 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#module_new_medical_31 .content_str{
				width:100%;
			}
            #module_new_medical_31 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_31 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_31 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_31 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_31 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_31 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_31 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_31 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_31 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_31 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_31 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_31 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_31 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_31 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_106 .new_medical_icon{
                background-image:url("https://esfamlak.ir/files/index/1720618619_84_1629186498_2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_106 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_106 .background-img{
                border-radius:;
            }
        #medical_box_106 .new_medical_title{color:#fff;font-weight:bold;font-size:20px;text-align:right;line-height:24px;}#medical_box_105:hover .new_medical_title{}
                #medical_box_106 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_106 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:11%;height:64px;margin-left:16px;border-style:none;border-color:#000;}#medical_box_105:hover .new_medical_icon{}#medical_box_106.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:40px;padding-bottom:40px;padding-right:40px;padding-left:40px;border-style:none;}#medical_box_105:hover{}#medical_box_106 .new_medical_description{color:#fff;font-weight:400;font-size:16px;line-height:32px;text-align:right;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_105:hover .new_medical_description{}
                   #medical_box_106 .new_medical_layer{}#medical_box_106:hover .new_medical_layer{} 
                
                #medical_box_106 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(56,102,65,.85);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_106:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(56,102,65,.85);
                }
            
            #medical_box_106 .mode1-size_106{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_106 .new_medical_box > div{
                width:100%;
            }
             #medical_box_106 > div{
               height:100%;
            }
            #medical_box_106 .mode2-size_106{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_106 .mode3-size_106{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_106 .mode4-size_106{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_106 .mode5-size_106{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_106 .mode6-size_106{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_106 .mode7-size_106{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_106 .mode7-size_106 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_106 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_106 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_106{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_106 span:hover{
                color:!important;
            }
            .custom2_106{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_106 span:hover{
                color:;
            }
            #medical_box_106 .mode-btn1_106{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_106 .mode-btn1_106 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_106 .mode-btn2_106{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_106 .mode-btn2_106 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_106 .div-btn-title_main_106{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_106 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_106 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_105 .new_medical_icon{
                background-image:url("https://esfamlak.ir/files/index/1720618619_84_1629186498_2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_105 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_105 .background-img{
                border-radius:;
            }
        #medical_box_105 .new_medical_title{color:#fff;font-weight:bold;font-size:20px;text-align:right;line-height:24px;}#medical_box_105:hover .new_medical_title{}
                #medical_box_105 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_105 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:11%;height:64px;margin-left:16px;border-style:none;border-color:#000;}#medical_box_105:hover .new_medical_icon{}#medical_box_105.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:40px;padding-bottom:40px;padding-right:40px;padding-left:40px;border-style:none;}#medical_box_105:hover{}#medical_box_105 .new_medical_description{color:#fff;font-weight:400;font-size:16px;line-height:32px;text-align:right;padding-top:16px;border-style:solid;border-color:#555;}#medical_box_105:hover .new_medical_description{}
                   #medical_box_105 .new_medical_layer{}#medical_box_105:hover .new_medical_layer{} 
                
                #medical_box_105 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(56,102,65,.85);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_105:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(56,102,65,.85);
                }
            
            #medical_box_105 .mode1-size_105{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_105 .new_medical_box > div{
                width:100%;
            }
             #medical_box_105 > div{
               height:100%;
            }
            #medical_box_105 .mode2-size_105{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_105 .mode3-size_105{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_105 .mode4-size_105{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_105 .mode5-size_105{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_105 .mode6-size_105{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_105 .mode7-size_105{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_105 .mode7-size_105 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_105 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_105 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_105{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_105 span:hover{
                color:!important;
            }
            .custom2_105{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_105 span:hover{
                color:;
            }
            #medical_box_105 .mode-btn1_105{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_105 .mode-btn1_105 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_105 .mode-btn2_105{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_105 .mode-btn2_105 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_105 .div-btn-title_main_105{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_105 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_105 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_31 .new_medical_title_main{color:#000;background-color:#eff5f5;font-weight:bold;font-size:28px;justify-content:center;text-align:center;height:80px;line-height:38px;}.module[data-id_page='49']:hover .new_medical_title_main{}#module_new_medical_31 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:80px;padding-bottom:64px;border-style:none;}.module[data-id_page='49']:hover .new_medical_box_main{}
            #module_new_medical_31 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_31 .new_medical_module{
                    width:576px;
                    position:relative;
                    overflow:hidden;
                    margin-left:48px;
                    margin-bottom:px;
                }
                #module_new_medical_31 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_31 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_31 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_31 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_31 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_31 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_31 .more-text {
                display: none;
            }
            #module_new_medical_31 .read-less-des {
                display: none;
            }
            #module_new_medical_31 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_31{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_31 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_31 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_31 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_31 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_31 .swiper-container{
                width:1200px;
            }
            #module_new_medical_31 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_31 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_31 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_31 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='50']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='50']:hover{;}.module[data-id_page='50']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='50'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='50']:hover .background-img{
                        filter:none;
                    }
                
                   .module[data-id_page='50']  
                
                .module[data-id_page='50'] .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='50']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                            .module[data-id_page='50']:hover{
                                filter:none;
                            }
                        
                           .module[data-id_page='50']{
                               background-image:url("https://esfamlak.ir/files/image/pic/1721575981_555.svg");
                               filter:none;
                           }
                       #layout_box_8.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_8:hover{}#layout_box_8 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_8:hover .new_layout_title{}
                #layout_box_8 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_8:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_8 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720950452_11.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_8 .new_layout_layer{}#layout_box_8:hover .new_layout_layer{} 
                
                #layout_box_8 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_8:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_8 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_8 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_8.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_9.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_9:hover{}#layout_box_9 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_9:hover .new_layout_title{}
                #layout_box_9 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_9:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_9 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720950452_tejari.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_9 .new_layout_layer{}#layout_box_9:hover .new_layout_layer{} 
                
                #layout_box_9 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_9:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_9 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_9 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_9.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_10.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:7;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_10:hover{}#layout_box_10 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_10:hover .new_layout_title{}
                #layout_box_10 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_10:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_10 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720951132_ed.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_10 .new_layout_layer{}#layout_box_10:hover .new_layout_layer{} 
                
                #layout_box_10 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_10:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_10 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_10 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_10.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_11.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:4;grid-row-start:2;grid-row-end:3;border-style:none;}#layout_box_11:hover{}#layout_box_11 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_11:hover .new_layout_title{}
                #layout_box_11 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_11:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_11 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720950452_vila.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_11 .new_layout_layer{}#layout_box_11:hover .new_layout_layer{} 
                
                #layout_box_11 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_11:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_11 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_11 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_11.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_12.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:7;grid-row-start:2;grid-row-end:3;border-style:none;}#layout_box_12:hover{}#layout_box_12 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_12:hover .new_layout_title{}
                #layout_box_12 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_12:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_12 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720950452_apparteman.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_12 .new_layout_layer{}#layout_box_12:hover .new_layout_layer{} 
                
                #layout_box_12 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_12:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_12 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_12 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_12.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_13.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:3;grid-row-end:4;border-style:none;}#layout_box_13:hover{}#layout_box_13 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_13:hover .new_layout_title{}
                #layout_box_13 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_13:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_13 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720951044_zamn-keshavarzi.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_13 .new_layout_layer{}#layout_box_13:hover .new_layout_layer{} 
                
                #layout_box_13 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_13:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_13 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_13 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_13.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_14.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:3;grid-row-end:4;border-style:none;}#layout_box_14:hover{}#layout_box_14 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_14:hover .new_layout_title{}
                #layout_box_14 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_14:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_14 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720950452_sole.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_14 .new_layout_layer{}#layout_box_14:hover .new_layout_layer{} 
                
                #layout_box_14 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_14:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_14 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_14 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_14.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_15.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:7;grid-row-start:3;grid-row-end:4;border-style:none;}#layout_box_15:hover{}#layout_box_15 .new_layout_title{color:#fff;font-weight:bold;font-size:20px;text-align:center;line-height:32px;}#layout_box_15:hover .new_layout_title{}
                #layout_box_15 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_15:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_15 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://esfamlak.ir/files/image/pic/1720950452_kargah.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_15 .new_layout_layer{}#layout_box_15:hover .new_layout_layer{} 
                
                #layout_box_15 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,.3);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_15:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,.6);
                }
            
                #layout_box_15 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_15 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_15.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_2 .new_layout_box_main{display:grid;width:1200px;height:800px;grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(3,1fr);column-gap:16px;row-gap:16px;visibility:visible;margin-top:64px;margin-bottom:64px;border-style:none;}.module[data-id_page='50']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_2{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_2 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_2 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_2 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_2 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_2 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='51']{;background-color:#6A994E;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='51']:hover{;}.module[data-id_page='51']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='51'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='51']  
                
                .module[data-id_page='51'] .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='51']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_32 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#module_new_medical_32 .content_str{
				width:100%;
			}
            #module_new_medical_32 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_32 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_32 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_32 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_32 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_32 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_32 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_32 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_32 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_32 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_32 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_32 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_32 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_32 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_109 .new_medical_icon{
                background-image:url("https://esfamlak.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_109 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_109 .background-img{
                border-radius:;
            }
        #medical_box_109 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_107:hover .new_medical_icon{}#medical_box_109.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:24px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:4px;border-color:#BC4749;}#medical_box_109:hover{}#medical_box_109 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:28px;text-align:right;border-style:solid;border-color:#555;}#medical_box_107:hover .new_medical_description{}
                   #medical_box_109 .new_medical_layer{}#medical_box_107:hover .new_medical_layer{} 
                
                #medical_box_109 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,168,89,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_109:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,168,89,1);
                }
            
            #medical_box_109 .mode1-size_109{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_109 .new_medical_box > div{
                width:100%;
            }
             #medical_box_109 > div{
               height:100%;
            }
            #medical_box_109 .mode2-size_109{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_109 .mode3-size_109{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_109 .mode4-size_109{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_109 .mode5-size_109{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_109 .mode6-size_109{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_109 .mode7-size_109{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_109 .mode7-size_109 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_109 .new_medical_box .new_medical_description a{
                color:#00AFEF;
            }
            #medical_box_109 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF;
            }
            .custom1_109{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_109 span:hover{
                color:!important;
            }
            .custom2_109{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_109 span:hover{
                color:;
            }
            #medical_box_109 .mode-btn1_109{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_109 .mode-btn1_109 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_109 .mode-btn2_109{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_109 .mode-btn2_109 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_109 .div-btn-title_main_109{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_109 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_109 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_108 .new_medical_icon{
                background-image:url("https://esfamlak.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_108 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_108 .background-img{
                border-radius:;
            }
        #medical_box_108 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_107:hover .new_medical_icon{}#medical_box_108.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:24px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:4px;border-color:#BC4749;}#medical_box_108:hover{}#medical_box_108 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:28px;text-align:right;border-style:solid;border-color:#555;}#medical_box_107:hover .new_medical_description{}
                   #medical_box_108 .new_medical_layer{}#medical_box_107:hover .new_medical_layer{} 
                
                #medical_box_108 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,168,89,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_108:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,168,89,1);
                }
            
            #medical_box_108 .mode1-size_108{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_108 .new_medical_box > div{
                width:100%;
            }
             #medical_box_108 > div{
               height:100%;
            }
            #medical_box_108 .mode2-size_108{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_108 .mode3-size_108{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_108 .mode4-size_108{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_108 .mode5-size_108{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_108 .mode6-size_108{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_108 .mode7-size_108{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_108 .mode7-size_108 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_108 .new_medical_box .new_medical_description a{
                color:#00AFEF;
            }
            #medical_box_108 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF;
            }
            .custom1_108{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_108 span:hover{
                color:!important;
            }
            .custom2_108{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_108 span:hover{
                color:;
            }
            #medical_box_108 .mode-btn1_108{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_108 .mode-btn1_108 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_108 .mode-btn2_108{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_108 .mode-btn2_108 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_108 .div-btn-title_main_108{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_108 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_108 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_107 .new_medical_icon{
                background-image:url("https://esfamlak.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_107 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_107 .background-img{
                border-radius:;
            }
        #medical_box_107 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_107:hover .new_medical_icon{}#medical_box_107.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:24px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:4px;border-color:#BC4749;}#medical_box_107:hover{}#medical_box_107 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:28px;text-align:right;border-style:solid;border-color:#555;}#medical_box_107:hover .new_medical_description{}
                   #medical_box_107 .new_medical_layer{}#medical_box_107:hover .new_medical_layer{} 
                
                #medical_box_107 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,168,89,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_107:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,168,89,1);
                }
            
            #medical_box_107 .mode1-size_107{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_107 .new_medical_box > div{
                width:100%;
            }
             #medical_box_107 > div{
               height:100%;
            }
            #medical_box_107 .mode2-size_107{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_107 .mode3-size_107{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_107 .mode4-size_107{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_107 .mode5-size_107{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_107 .mode6-size_107{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_107 .mode7-size_107{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_107 .mode7-size_107 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_107 .new_medical_box .new_medical_description a{
                color:#00AFEF;
            }
            #medical_box_107 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF;
            }
            .custom1_107{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_107 span:hover{
                color:!important;
            }
            .custom2_107{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_107 span:hover{
                color:;
            }
            #medical_box_107 .mode-btn1_107{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_107 .mode-btn1_107 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_107 .mode-btn2_107{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_107 .mode-btn2_107 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_107 .div-btn-title_main_107{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_107 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_107 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_32 .new_medical_title_main{color:#fff;font-weight:bold;font-size:32px;justify-content:center;text-align:center;margin-top:64px;line-height:48px;}.module[data-id_page='51']:hover .new_medical_title_main{}#module_new_medical_32 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='51']:hover .new_medical_box_main{}
            #module_new_medical_32 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_32 .new_medical_module{
                    width:378px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:px;
                }
                #module_new_medical_32 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_32 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_32 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_32 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_32 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_32 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_32 .more-text {
                display: none;
            }
            #module_new_medical_32 .read-less-des {
                display: none;
            }
            #module_new_medical_32 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_32{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_32 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_32 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_32 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_32 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_32 .swiper-container{
                width:1200px;
            }
            #module_new_medical_32 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_32 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_32 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_32 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            
                .main-box{
                    position: absolute;
                    width: 100%;
                    margin: auto;
                    z-index: 1000;
                }
                .main-box-header{
                    width: 1200px;
                    margin: auto;
                }
                .navbar-top{
                    padding: 0 15px 10px 15px;
                }
                .details-box span{
                    font-size: 15px;
                    margin-left: 10px;
                }
                .details-box span:before{
                    margin-left: 5px;
                    float: right;
                }
                .nav-container{
                    width: 100%;
                    background-color: #0d1741;
                    padding: 0 20px 0 0;
                    z-index: 11;
                    transition: all 0.4s ease;
                }
                .logo{
                    width: 200px;
                    height: 50px;
                }
                .logo-a{
                    width: 100%;
                    height: 100%;
                }
                .logo-a>img{
                    width: 100%;
                    height: 100%;
                }
                .menu-item{
                    position:relative;
                    text-transform: capitalize;
                    font-weight: 500;
                    font-size: 16px;
                    color: #fff;
                    margin-right: 30px;
                    line-height: 50px;
                    cursor: pointer;
                }
                .menu-item:first-child{
                    margin-right: 0;
                }
                .menu-item>a{
                    color: #fff !important;
                }
                .sub-menu{
                    position: absolute;
                    text-align: right;
                    min-width: 210px;
                    box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
                    background-color: #fff;
                    transition: all 0.4s ease;
                    color: #000;
                    display: none;
                    z-index: 1;
                }
                .sub-menu li{
                    display: block;
                    margin-right: 0;
                    font-size: 15px;
                    transition: all 0.4s ease;
                    border-bottom: 1px solid #f5f5f5;
                    line-height: 22px;
                }
                .sub-menu li>a{
                    display: block;
                    padding: 10px 20px;
                    white-space: nowrap;
                    color: #000;
                    font-size: 14px;
                    font-weight: 500;
                    transition: all 0.4s ease;
                }
                .title-menu{
                    transition: all 0.4s ease;
                }
                .sub-menu li>a::before{
                    position: absolute;
                    right: 12px;
                    content: ">";
                    margin-left: 10px;
                    display: inline-block;
                    transition: 0.4s;
                    color: #fff;
                }
                .menu-item:hover .title-menu{
                    color: #5ba600 !important;
                }
                .menu-item:hover {
                    color: #5ba600;
                }
                .menu-item:hover .sub-menu{
                    display: block;
                }
                .menu-item:hover .n-hide{
                    display: inline-block;
                }
                .menu-item:hover .p-show{
                    display: none;
                }
                .sub-menu li:hover{
                    background-color: #061539;  
                }
                .sub-menu li>a:hover{
                    padding-right:36px;  
                    color: #fff !important;    
                }
                .n-hide{
                    display: none;
                    font-size: 11px;
                    transition: all 0.4s ease;
                }
                .p-show{
                    font-size: 11px;
                    transition: all 0.4s ease;
                }
                .menu-sub-btn-box{
                    margin-right: 25px;
                }
                .sub-btn{
                    height: 85px;
                    overflow: inherit;
                    padding: 0 50px 0 20px;
                    color: #fff;
                    font-size: 16px;
                    border: 0;
                    background-color: #5ba600;
                    transition: all 0.5s ease;
                    cursor: pointer;
                    display: inline-block;
                    transform: perspective(1px) translateZ(0);
                    background-position: right bottom;
                    background-size: 200% 100%;
                    background-image: -webkit-gradient( linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #5ba600) );
                    border-radius: 0;
                }
                .sub-btn:hover{
                    color: #fff !important;
                    background-color: #28a745;
                    background-position: left bottom;
                }
                .sub-btn span {
                    cursor: pointer;
                }
                .sub-btn:before{
                    content: "";
                    position: absolute;
                    z-index: -1;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgba(6, 21, 57, 0.3);
                    transform: scaleX(0);
                    transform-origin: 0 50%;
                    transition-duration: 0.4s;
                }
                .sub-btn-icon{
                    background: #0d1741;
                    border-radius: 7px;
                    padding: 5px;
                    display: inline-block;
                    position: absolute;
                    right: -20px;
                    top: 50%;
                    margin-top: -25.5px;
                    line-height: 40px;
                }
                .sub-btn-icon>i{
                    background-color: #5ba600;
                    height: 40px;
                    width: 40px;
                    line-height: 40px;
                    border-radius: 7px;
                    font-size: 14px;
                    float: inherit;
                    text-align: center;
                }
                .sub-btn-text{
                    line-height: 85px;
                    font-size: 16px;
                }
                .mr-25px{
                    margin-right: 25px;
                }
                #rlogin_uer_btn{
                    color: #616161 !important;
                }
                .social-box{
                    width: 20px;
                    height: 20px;
                    margin: 0 6px;
                }
                .social-box:hover{
                    color: #5ba600;
                }
                .social-box > img{
                    width: 20px;
                    height: 20px;
                }
                .box-top{
                    position: fixed;
                    top: 0;
                    right: 0;
                    width: 100%;
                    padding: 0 3%;
                    z-index: 1000;
                }
                .box-page{
                    width: 100%;
                    padding: 0 3%;
                    z-index: 1000;
                }
                .rec-style-btn{
                    display: unset;
                    padding: 10px 35px;
                }
                #div_profile_picture {
                    position: absolute;
                    width: 0;
                    height: 0;
                    z-index: -99999;
                    top: -10000px;
                }
                .lo-box {
                    padding: .40rem 0.60rem;
                    clear: both;
                    text-align: inherit;
                    background-color: transparent;
                    border: 0;
                    cursor: pointer;
                    width: fit-content;
                    border-radius: 5px;
                    color: #fff;
                    transition: all 0.4s ease;
                }
                .lo-box>span{
                    cursor: pointer;
                    margin-left: 5px;
                }
                .lo-box:hover{
                    background-color: #061539;
                    color: #5ba600;
                }
                .like-container{
                    position: relative;
                    min-height: 100%;
                    margin-left: 20px;
                }
                .like-container .like-btn{
                    width: 20px;
                    height: 20px;
                    display: block;
                }
                .like-container .like-btn svg{
                    width: 20px;
                    height: 20px;
                    fill: white;
                }
                .like-container .like-list-container{
                    position: absolute;
                    top: 45px;
                    left: 50%;
                    transform: translateX(-50%);
                    padding-top: 20px;
                    transition: all 0.3s linear;
                    z-index: 100;
                    display: none;
                    background-color: transparent;
                }
                .like-container .like-list-container::after{
                    content: "";
                    position: absolute;
                    top: 12px;
                    left: 50%;
                    transform: translateX(-50%);
                    border-left: 10px solid transparent;
                    border-right: 10px solid transparent;
                    border-bottom: 10px solid #5ba600;
                    display: block;
                }
                .like-container .like-list-container .like-list{
                    padding: 10px 20px;
                    width: max-content;
                    background-color: #5ba600;
                    border-radius: 5px;
                    box-shadow: 0 0 0 rgb(0 0 0 / 40%);
                }
                .like-container .like-btn:hover .like-list-container{
                    display: block;
                }
                .c-fill-red{
                    fill: red;
                }
        #module_footer_section_1{
;
padding-top:4vw;
padding-right:10%;
padding-bottom:4vw;
padding-left:10%;
border-style:none;
}#module_footer_column_1{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_items_1{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:bold;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_1:hover{
;
}#module_footer_row_2{
;
padding-top:2vw;
border-style:none;
}#module_footer_items_2{
;
cursor:default;
width:1.15vw;
height:1.15vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-left:1vw;
}#module_footer_items_2:hover{
;
}#module_footer_items_3{
;
cursor:default;
line-height:1.15vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_3:hover{
;
}#module_footer_row_3{
;
padding-top:.75vw;
border-style:none;
}#module_footer_items_4{
;
cursor:default;
width:1.15vw;
height:1.15vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-left:1vw;
}#module_footer_items_4:hover{
;
}#module_footer_items_5{
;
cursor:default;
line-height:1.15vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_5:hover{
;
}#module_footer_row_4{
;
padding-top:1vw;
border-style:none;
}#module_footer_items_6{
;
cursor:default;
width:1.15vw;
height:1.15vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-left:1vw;
}#module_footer_items_6:hover{
;
}#module_footer_items_7{
;
cursor:default;
line-height:1.15vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_7:hover{
;
}#module_footer_row_5{
;
padding-top:.75vw;
border-style:none;
}#module_footer_items_8{
;
cursor:default;
width:1.15vw;
height:1.15vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-left:1vw;
}#module_footer_items_8:hover{
;
}#module_footer_items_9{
;
cursor:default;
line-height:1.15vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_9:hover{
;
}#module_footer_column_2{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_items_10{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:bold;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_10:hover{
;
}#module_footer_row_7{
;
padding-top:2vw;
border-style:none;
}#module_footer_items_11{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_11:hover{
;
}#module_footer_row_8{
;
padding-top:.75vw;
border-style:none;
}#module_footer_items_12{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_12:hover{
;
}#module_footer_column_3{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_items_13{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:bold;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_13:hover{
;
}#module_footer_row_10{
;
margin-top:2vw;
border-style:none;
}#module_footer_items_14{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_14:hover{
;
}#module_footer_row_11{
;
padding-top:.75vw;
border-style:none;
}#module_footer_row_12{
;
padding-top:.75vw;
border-style:none;
}#module_footer_row_13{
;
padding-top:.75vw;
border-style:none;
}#module_footer_column_4{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_row_15{
;
padding-top:2vw;
border-style:none;
}#module_footer_row_16{
;
padding-top:.75vw;
border-style:none;
}#module_footer_row_17{
;
padding-top:.75vw;
border-style:none;
}#module_footer_column_5{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_items_22{
;
cursor:default;
width:20vw;
height:4vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_22:hover{
;
}#module_footer_section_2{
;
padding-right:10%;
padding-bottom:2vw;
padding-left:10%;
border-style:none;
}#module_footer_column_6{
;
width:50%;
border-style:none;
}#module_footer_items_23{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_23:hover{
;
}#module_footer_column_7{
;
width:50%;
justify-content:flex-end;
border-style:none;
}#module_footer_row_21{
;
justify-content:flex-end;
border-style:none;
}#module_footer_items_26{
;
cursor:default;
line-height:1.2vw;
color:#727e82;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_26:hover{
;
}#public_footer_main_1{;background-color:#e9e9e9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:solid;border-top-width:4px;border-color:#5d5d5d;}#public_footer_main_1:hover{;}#public_footer_main_1{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_1 > div{
                    position:relative;
                    z-index:12;
                }
                   #public_footer_main_1  
                
                #public_footer_main_1 .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;
            
                }
            
                #public_footer_main_1:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

            #msg_footer .d_flex,
            #msg_footer_complete .d_flex{
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                height: 100%;
                padding: 0 15px;
            }

            #msg_footer.green_msg_footer {
                background-color: #d4edda;
                border: 1px solid #c3e6cb;
                color: #155724;
            }

            #msg_footer.red_msg_footer,
            #msg_footer_complete.red_msg_footer{
                background-color: #f8d7da;
                border: 1px solid #f5c6cb;
                color: #721c24;
            }

            #msg_footer .close_msg,
            #msg_footer_complete .close_msg{
                cursor: pointer;
                font-size: 25px;
                padding-right: 15px;
            }

            #msg_footer .close_msg:hover,
            #msg_footer_complete .close_msg:hover{
                color: #000;
            }
            
            .border_red{
                border: 1px solid #e20000;
            }
            footer a{
                color: inherit;
            }
        
            #body_popup_1,#body_popup_2{
                position:fixed;
                display:flex;
                text-align:center;
                top:0;
                bottom:0;
                right:0;
                left:0;
                z-index:99999;
                visibility:hidden;
                opacity: 0;
                background:rgba(0,0,0,0.5);
            }
            #body_popup_1.open-popup,#body_popup_2.open-popup{
                visibility:visible;
                opacity: 1;
            }
            #body_popup_1 > div,#body_popup_2 > div{
                display:block;
                background:#fff;
                padding:10px;
                margin:auto;
                transform:translateY(-150px);
                -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                text-align:center;
                border-radius:10px;
                position:relative;
                z-index:999999;
            }
            #body_popup_1.open-popup > div,#body_popup_1.open-popup > div{
                transform:translateY(0);
            }
            #body_popup_1 .icon-close-popup{
                position:absolute;
                font-size:30px;
                height:30px;
                width:30px;
                border-radius:50%;
                color:red;
                top:-10px;
                right:-10px;
                background-color:transparent;
                z-index:9999;
            }
            #body_popup_1 .icon-close-popup i{
                position:absolute;
                top:0;
                right:0;
            }
            #body_popup_1 .container-html{
                height:100%;
                overflow:auto;
                max-height:90vh;
            }
            #body_popup_1 .container-html::-webkit-scrollbar{
                width:5px;
                height:100%;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-track{
                background-color:transparent;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-thumb{
                background-color:#777;
                border-radius:20%;
            }
            #body_popup_1 .icon-close-popup{
                color:#fff;
                top:0;
                right:0;
            }
            #module_waiting_box{
                position:fixed;
                background:rgba(256,256,256,0.8);
                width:100%;
                height:100%;
                -webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s;
                top:0;
                right:0;
                opacity:0;
                z-index:9999999999999;
                visibility:hidden;
            }
            #module_waiting_box.show-waiting{
                visibility:visible;
                opacity:1;
            }
            #module_waiting_box .spinner {
              margin: 100px auto 0;
              width: 70px;
              text-align: center;
            }
            
            #module_waiting_box .spinner > div {
              width: 18px;
              height: 18px;
              background-color: #333;
              border-radius: 100%;
              display: inline-block;
              -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
              animation: sk-bouncedelay 1.4s infinite ease-in-out both;
            }
            
            #module_waiting_box .spinner .bounce1 {
              -webkit-animation-delay: -0.35s;
              animation-delay: -0.35s;
            }
            
            #module_waiting_box .spinner .bounce2 {
              -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
            }
            
            @-webkit-keyframes sk-bouncedelay {
              0%, 95%, 100% { -webkit-transform: scale(0) }
              50% { -webkit-transform: scale(1.0) }
            }
            
            @keyframes sk-bouncedelay {
              0%, 95%, 100% { 
                -webkit-transform: scale(0);
                transform: scale(0);
              } 50% { 
                -webkit-transform: scale(1.0);
                transform: scale(1.0);
              }
            }
        body{direction: rtl;text-align: right;}