/**
 * 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[data-id_page='3']{;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='3']:hover{;}.module[data-id_page='3']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='3'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='3']:hover .background-img{
                        filter:brightness(0.7);
                    }
                
                .module[data-id_page='3'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:brightness(0.7);
                }
            
                   .module[data-id_page='3']  
                
                .module[data-id_page='3'] .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='3']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='3']{
                               background-image:url("https://tarbod.ir/files/1663756253_2-1.jpg");
                           }
                       #layout_box_6.new_layout_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:6;grid-row-end:8;border-style:solid;border-top-width:8px;border-right-width:8px;border-bottom-width:8px;border-left-width:8px;border-color:#Fff;}#layout_box_6:hover{}
                    #layout_box_6:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_6 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1640692820_089-(2)6.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_6  
                
                #layout_box_6 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_6:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_6 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_6 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_6.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_1.new_layout_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:2;grid-row-end:3;border-style:solid;border-top-width:8px;border-right-width:8px;border-bottom-width:8px;border-left-width:8px;border-color:#fff;}#layout_box_1:hover{}
                    #layout_box_1:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_1 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1640692825_7rtfrvshb6gbnve.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_1  
                
                #layout_box_1 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_1:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_1 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_1 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_1.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_2.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:9;grid-column-end:13;grid-row-start:2;grid-row-end:3;border-style:none;}#layout_box_2:hover{}#layout_box_2 .new_layout_description{color:#ffec3d;font-weight:bold;font-size:41px;text-align:center;margin-top:10px;padding-right:35px;border-style:none;border-color:#555;}#layout_box_3:hover .new_layout_description{}#layout_box_2 .new_layout_title{color:#ffffff;font-weight:bold;font-size:43px;text-align:center;margin-top:57px;}#layout_box_2:hover .new_layout_title{}
                #layout_box_2 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                   #layout_box_2  
                
                #layout_box_2 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_2:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_2 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_2 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_2.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_3.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:8;grid-row-start:3;grid-row-end:7;border-style:solid;border-top-width:8px;border-right-width:8px;border-bottom-width:8px;border-left-width:8px;border-color:#fff;}#layout_box_3:hover{}
                    #layout_box_3:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_3 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1628668385_@9b.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_3  
                
                #layout_box_3 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_3:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_3 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_3 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_3.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_4.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:9;grid-column-end:13;grid-row-start:3;grid-row-end:7;border-style:none;}#layout_box_4:hover{}#layout_box_4 .new_layout_description{color:#fff1f0;font-weight:300;font-size:23px;line-height:30px;text-align:center;margin-top:60px;border-style:none;border-color:#555;}#layout_box_3:hover .new_layout_description{}#layout_box_4 .new_layout_title{color:#f5222d;font-weight:bold;font-size:20px;text-align:center;margin-top:85px;margin-bottom:10px;}#layout_box_4:hover .new_layout_title{}
                #layout_box_4 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                   #layout_box_4  
                
                #layout_box_4 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_4:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_4 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_4 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_4.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_5.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:5;grid-row-end:6;border-style:solid;border-top-width:8px;border-right-width:8px;border-bottom-width:8px;border-left-width:8px;border-color:#fff;}#layout_box_5:hover{}
                    #layout_box_5:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_5 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/pic/1591011421_-spices-500x500.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_5  
                
                #layout_box_5 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_5:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_5 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_5 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_5.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_7.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:3;grid-row-end:4;border-style:solid;border-top-width:8px;border-right-width:8px;border-bottom-width:8px;border-left-width:8px;border-color:#ffffff;}#layout_box_7:hover{}#layout_box_7 .new_layout_button{color:#000;font-weight:300;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_7 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #layout_box_7 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/1628668870_@4bc.jpg");
                }
            #layout_box_7 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#layout_box_7:hover .new_layout_icon{}
                    #layout_box_7:hover .background-img{
                        filter:none;
                    }
                
                #layout_box_7 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/pic/1591087109_ound_55610-2835.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_7  
                
                #layout_box_7 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_7:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_7 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_7 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_7.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_1 .new_layout_box_main{display:grid;width:1200px;height:700px;grid-template-columns:repeat(12,1fr);grid-template-rows:repeat(7,1fr);column-gap:5px;row-gap:5px;visibility:visible;margin-top:-50px;padding-bottom:20px;border-style:none;}.module[data-id_page='3']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_1{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_1 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_1 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_1 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_1 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_1 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            #module_new_medical_22 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#module_new_medical_22 .content_str{
				width:100%;
			}
            #module_new_medical_22 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_22 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_22 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_22 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_22 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_22 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_22 .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_22 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_22 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_22 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_22 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_22 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_22 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_22 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_316 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_316 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_316 .background-img{
                border-radius:;
            }
        #medical_box_316 .new_medical_title{color:#f5222d;background-color:#fffbe6;font-weight:bold;font-size:24px;text-align:center;margin-top:200px;margin-bottom:50px;height:50px;line-height:50px;}#medical_box_316:hover .new_medical_title{}
                #medical_box_316 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_316.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:25px;padding-bottom:25px;padding-right:25px;padding-left:25px;border-style:none;border-color:#cf1322;}#medical_box_316:hover{}#medical_box_316 .new_medical_description{color:#000;font-weight:500;font-size:10px;line-height:25px;height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_316:hover .new_medical_description{}
                    #medical_box_316:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_316 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_316  
                
                #medical_box_316 .new_medical_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;
            
                }
            
                #medical_box_316:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_316 .mode1-size_316{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_316 .new_medical_box > div{
                width:100%;
            }
             #medical_box_316 > div{
               height:100%;
            }
            #medical_box_316 .mode2-size_316{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_316 .mode3-size_316{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_316 .mode4-size_316{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_316 .mode5-size_316{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_316 .mode6-size_316{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_316 .mode7-size_316{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_316 .mode7-size_316 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_316 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_316 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_316{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_316 span:hover{
                color:!important;
            }
            .custom2_316{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_316 span:hover{
                color:;
            }
            #medical_box_316 .mode-btn1_316{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_316 .mode-btn1_316 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_316 .mode-btn2_316{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_316 .mode-btn2_316 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_316 .div-btn-title_main_316{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_316 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_316 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_314 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_314 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_314 .background-img{
                border-radius:;
            }
        #medical_box_314 .new_medical_title{color:#f5222d;background-color:#ffffff;font-weight:bold;font-size:24px;text-align:center;margin-top:15px;margin-bottom:30px;height:30px;line-height:-30px;}#medical_box_314:hover .new_medical_title{}
                #medical_box_314 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_314.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:0px;padding-bottom:0px;padding-right:25px;padding-left:0px;border-style:none;}#medical_box_314:hover{}
                    #medical_box_314:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_314 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_314  
                
                #medical_box_314 .new_medical_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;
            
                }
            
                #medical_box_314:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_314 .mode1-size_314{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_314 .new_medical_box > div{
                width:100%;
            }
             #medical_box_314 > div{
               height:100%;
            }
            #medical_box_314 .mode2-size_314{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_314 .mode3-size_314{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_314 .mode4-size_314{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_314 .mode5-size_314{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_314 .mode6-size_314{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_314 .mode7-size_314{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_314 .mode7-size_314 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_314 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_314 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_314{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_314 span:hover{
                color:!important;
            }
            .custom2_314{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_314 span:hover{
                color:;
            }
            #medical_box_314 .mode-btn1_314{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_314 .mode-btn1_314 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_314 .mode-btn2_314{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_314 .mode-btn2_314 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_314 .div-btn-title_main_314{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_314 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_314 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_22 .new_medical_title_main{color:#000000;font-weight:200;font-size:32px;cursor:cell;justify-content:space-around;text-align:center;margin-top:15px;margin-bottom:15px;padding-right:30px;padding-left:30px;line-height:48px;}.module[data-id_page='95']:hover .new_medical_title_main{color:#ffffff !important;}
                #module_new_medical_22 .new_medical_title_main{
                    background: linear-gradient(to right, #c31432, #240b36);
                }
                
            #module_new_medical_22 .new_medical_description_main{font-weight:300;text-align:center;border-style:solid;border-color:#9e1068;}.module[data-id_page='95']:hover .new_medical_description_main{}#module_new_medical_22 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:15px;margin-bottom:15px;padding-top:64px;padding-bottom:64px;border-style:solid;}.module[data-id_page='95']:hover .new_medical_box_main{}
            #module_new_medical_22 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_22 .new_medical_module{
                    width:550px;
                    position:relative;
                    overflow:hidden;
                    margin-left:100px;
                    margin-bottom:100px;
                }
                #module_new_medical_22 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_22 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_22 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_22 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_22 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_22 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_22 .more-text {
                display: none;
            }
            #module_new_medical_22 .read-less-des {
                display: none;
            }
            #module_new_medical_22 .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_22{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_22 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_22 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_22 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_22 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_22 .swiper-container{
                width:1200px;
            }
            #module_new_medical_22 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_22 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_22 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_22 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_2 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#module_new_medical_2 .content_str{
				width:100%;
			}
            #module_new_medical_2 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_2 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_2 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_2 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_2 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_2 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_2 .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_2 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_2 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_2 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_2 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_2 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_2 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_2 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_76 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_76 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_76 .background-img{
                border-radius:;
            }
        #medical_box_76 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;cursor:default;border-style:none;border-color:#000;}#medical_box_76:hover .new_medical_icon{}#medical_box_76.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_76:hover{}#medical_box_76 .new_medical_description{color:#000;font-weight:500;text-align:justify;cursor:pointer;border-style:solid;border-color:#555;}#medical_box_76:hover .new_medical_description{}
                    #medical_box_76:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_76 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_76  
                
                #medical_box_76 .new_medical_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;
            
                }
            
                #medical_box_76:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_76 .mode1-size_76{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_76 .new_medical_box > div{
                width:100%;
            }
             #medical_box_76 > div{
               height:100%;
            }
            #medical_box_76 .mode2-size_76{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_76 .mode3-size_76{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_76 .mode4-size_76{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_76 .mode5-size_76{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_76 .mode6-size_76{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_76 .mode7-size_76{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_76 .mode7-size_76 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_76 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_76 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_76{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_76 span:hover{
                color:!important;
            }
            .custom2_76{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_76 span:hover{
                color:;
            }
            #medical_box_76 .mode-btn1_76{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_76 .mode-btn1_76 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_76 .mode-btn2_76{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_76 .mode-btn2_76 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_76 .div-btn-title_main_76{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_76 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_76 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_77 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_77 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_77 .background-img{
                border-radius:;
            }
        #medical_box_77.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_77:hover{}
                    #medical_box_77:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_77 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_77  
                
                #medical_box_77 .new_medical_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;
            
                }
            
                #medical_box_77:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_77 .mode1-size_77{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_77 .new_medical_box > div{
                width:100%;
            }
             #medical_box_77 > div{
               height:100%;
            }
            #medical_box_77 .mode2-size_77{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_77 .mode3-size_77{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_77 .mode4-size_77{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_77 .mode5-size_77{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_77 .mode6-size_77{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_77 .mode7-size_77{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_77 .mode7-size_77 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_77 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_77 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_77{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_77 span:hover{
                color:!important;
            }
            .custom2_77{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_77 span:hover{
                color:;
            }
            #medical_box_77 .mode-btn1_77{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_77 .mode-btn1_77 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_77 .mode-btn2_77{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_77 .mode-btn2_77 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_77 .div-btn-title_main_77{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_77 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_77 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_75 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_75 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_75 .background-img{
                border-radius:;
            }
        #medical_box_75.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_75:hover{}
                    #medical_box_75:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_75 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_75  
                
                #medical_box_75 .new_medical_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;
            
                }
            
                #medical_box_75:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_75 .mode1-size_75{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_75 .new_medical_box > div{
                width:100%;
            }
             #medical_box_75 > div{
               height:100%;
            }
            #medical_box_75 .mode2-size_75{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_75 .mode3-size_75{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_75 .mode4-size_75{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_75 .mode5-size_75{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_75 .mode6-size_75{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_75 .mode7-size_75{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_75 .mode7-size_75 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_75 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_75 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_75{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_75 span:hover{
                color:!important;
            }
            .custom2_75{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_75 span:hover{
                color:;
            }
            #medical_box_75 .mode-btn1_75{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_75 .mode-btn1_75 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_75 .mode-btn2_75{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_75 .mode-btn2_75 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_75 .div-btn-title_main_75{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_75 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_75 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_74 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_74 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_74 .background-img{
                border-radius:;
            }
        #medical_box_74.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_74:hover{}
                    #medical_box_74:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_74 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_74  
                
                #medical_box_74 .new_medical_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;
            
                }
            
                #medical_box_74:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_74 .mode1-size_74{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_74 .new_medical_box > div{
                width:100%;
            }
             #medical_box_74 > div{
               height:100%;
            }
            #medical_box_74 .mode2-size_74{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_74 .mode3-size_74{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_74 .mode4-size_74{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_74 .mode5-size_74{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_74 .mode6-size_74{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_74 .mode7-size_74{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_74 .mode7-size_74 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_74 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_74 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_74{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_74 span:hover{
                color:!important;
            }
            .custom2_74{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_74 span:hover{
                color:;
            }
            #medical_box_74 .mode-btn1_74{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_74 .mode-btn1_74 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_74 .mode-btn2_74{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_74 .mode-btn2_74 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_74 .div-btn-title_main_74{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_74 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_74 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_73 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_73 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_73 .background-img{
                border-radius:;
            }
        #medical_box_73.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_73:hover{}
                    #medical_box_73:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_73 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_73  
                
                #medical_box_73 .new_medical_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;
            
                }
            
                #medical_box_73:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_73 .mode1-size_73{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_73 .new_medical_box > div{
                width:100%;
            }
             #medical_box_73 > div{
               height:100%;
            }
            #medical_box_73 .mode2-size_73{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_73 .mode3-size_73{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_73 .mode4-size_73{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_73 .mode5-size_73{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_73 .mode6-size_73{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_73 .mode7-size_73{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_73 .mode7-size_73 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_73 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_73 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_73{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_73 span:hover{
                color:!important;
            }
            .custom2_73{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_73 span:hover{
                color:;
            }
            #medical_box_73 .mode-btn1_73{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_73 .mode-btn1_73 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_73 .mode-btn2_73{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_73 .mode-btn2_73 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_73 .div-btn-title_main_73{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_73 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_73 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_72 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_72 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_72 .background-img{
                border-radius:;
            }
        #medical_box_72.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_72:hover{}
                    #medical_box_72:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_72 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_72  
                
                #medical_box_72 .new_medical_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;
            
                }
            
                #medical_box_72:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_72 .mode1-size_72{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_72 .new_medical_box > div{
                width:100%;
            }
             #medical_box_72 > div{
               height:100%;
            }
            #medical_box_72 .mode2-size_72{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_72 .mode3-size_72{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_72 .mode4-size_72{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_72 .mode5-size_72{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_72 .mode6-size_72{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_72 .mode7-size_72{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_72 .mode7-size_72 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_72 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_72 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_72{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_72 span:hover{
                color:!important;
            }
            .custom2_72{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_72 span:hover{
                color:;
            }
            #medical_box_72 .mode-btn1_72{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_72 .mode-btn1_72 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_72 .mode-btn2_72{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_72 .mode-btn2_72 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_72 .div-btn-title_main_72{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_72 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_72 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_71 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_71 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_71 .background-img{
                border-radius:;
            }
        #medical_box_71.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_71:hover{}
                    #medical_box_71:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_71 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_71  
                
                #medical_box_71 .new_medical_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;
            
                }
            
                #medical_box_71:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_71 .mode1-size_71{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_71 .new_medical_box > div{
                width:100%;
            }
             #medical_box_71 > div{
               height:100%;
            }
            #medical_box_71 .mode2-size_71{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_71 .mode3-size_71{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_71 .mode4-size_71{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_71 .mode5-size_71{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_71 .mode6-size_71{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_71 .mode7-size_71{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_71 .mode7-size_71 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_71 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_71 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_71{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_71 span:hover{
                color:!important;
            }
            .custom2_71{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_71 span:hover{
                color:;
            }
            #medical_box_71 .mode-btn1_71{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_71 .mode-btn1_71 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_71 .mode-btn2_71{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_71 .mode-btn2_71 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_71 .div-btn-title_main_71{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_71 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_71 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_70 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_70 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_70 .background-img{
                border-radius:;
            }
        #medical_box_70.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_70:hover{}
                    #medical_box_70:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_70 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_70  
                
                #medical_box_70 .new_medical_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;
            
                }
            
                #medical_box_70:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_70 .mode1-size_70{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_70 .new_medical_box > div{
                width:100%;
            }
             #medical_box_70 > div{
               height:100%;
            }
            #medical_box_70 .mode2-size_70{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_70 .mode3-size_70{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_70 .mode4-size_70{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_70 .mode5-size_70{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_70 .mode6-size_70{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_70 .mode7-size_70{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_70 .mode7-size_70 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_70 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_70 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_70{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_70 span:hover{
                color:!important;
            }
            .custom2_70{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_70 span:hover{
                color:;
            }
            #medical_box_70 .mode-btn1_70{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_70 .mode-btn1_70 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_70 .mode-btn2_70{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_70 .mode-btn2_70 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_70 .div-btn-title_main_70{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_70 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_70 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_69 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_69 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_69 .background-img{
                border-radius:;
            }
        #medical_box_69.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_69:hover{}
                    #medical_box_69:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_69 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_69  
                
                #medical_box_69 .new_medical_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;
            
                }
            
                #medical_box_69:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_69 .mode1-size_69{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_69 .new_medical_box > div{
                width:100%;
            }
             #medical_box_69 > div{
               height:100%;
            }
            #medical_box_69 .mode2-size_69{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_69 .mode3-size_69{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_69 .mode4-size_69{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_69 .mode5-size_69{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_69 .mode6-size_69{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_69 .mode7-size_69{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_69 .mode7-size_69 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_69 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_69 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_69{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_69 span:hover{
                color:!important;
            }
            .custom2_69{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_69 span:hover{
                color:;
            }
            #medical_box_69 .mode-btn1_69{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_69 .mode-btn1_69 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_69 .mode-btn2_69{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_69 .mode-btn2_69 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_69 .div-btn-title_main_69{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_69 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_69 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_68 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_68 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_68 .background-img{
                border-radius:;
            }
        #medical_box_68.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_68:hover{}
                    #medical_box_68:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_68 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_68  
                
                #medical_box_68 .new_medical_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;
            
                }
            
                #medical_box_68:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_68 .mode1-size_68{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_68 .new_medical_box > div{
                width:100%;
            }
             #medical_box_68 > div{
               height:100%;
            }
            #medical_box_68 .mode2-size_68{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_68 .mode3-size_68{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_68 .mode4-size_68{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_68 .mode5-size_68{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_68 .mode6-size_68{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_68 .mode7-size_68{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_68 .mode7-size_68 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_68 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_68 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_68{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_68 span:hover{
                color:!important;
            }
            .custom2_68{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_68 span:hover{
                color:;
            }
            #medical_box_68 .mode-btn1_68{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_68 .mode-btn1_68 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_68 .mode-btn2_68{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_68 .mode-btn2_68 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_68 .div-btn-title_main_68{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_68 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_68 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_67 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_67 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_67 .background-img{
                border-radius:;
            }
        #medical_box_67.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_67:hover{}
                    #medical_box_67:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_67 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_67  
                
                #medical_box_67 .new_medical_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;
            
                }
            
                #medical_box_67:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_67 .mode1-size_67{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_67 .new_medical_box > div{
                width:100%;
            }
             #medical_box_67 > div{
               height:100%;
            }
            #medical_box_67 .mode2-size_67{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_67 .mode3-size_67{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_67 .mode4-size_67{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_67 .mode5-size_67{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_67 .mode6-size_67{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_67 .mode7-size_67{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_67 .mode7-size_67 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_67 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_67 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_67{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_67 span:hover{
                color:!important;
            }
            .custom2_67{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_67 span:hover{
                color:;
            }
            #medical_box_67 .mode-btn1_67{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_67 .mode-btn1_67 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_67 .mode-btn2_67{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_67 .mode-btn2_67 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_67 .div-btn-title_main_67{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_67 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_67 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_66 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_66 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_66 .background-img{
                border-radius:;
            }
        #medical_box_66.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_66:hover{}
                    #medical_box_66:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_66 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_66  
                
                #medical_box_66 .new_medical_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;
            
                }
            
                #medical_box_66:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_66 .mode1-size_66{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_66 .new_medical_box > div{
                width:100%;
            }
             #medical_box_66 > div{
               height:100%;
            }
            #medical_box_66 .mode2-size_66{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_66 .mode3-size_66{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_66 .mode4-size_66{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_66 .mode5-size_66{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_66 .mode6-size_66{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_66 .mode7-size_66{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_66 .mode7-size_66 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_66 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_66 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_66{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_66 span:hover{
                color:!important;
            }
            .custom2_66{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_66 span:hover{
                color:;
            }
            #medical_box_66 .mode-btn1_66{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_66 .mode-btn1_66 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_66 .mode-btn2_66{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_66 .mode-btn2_66 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_66 .div-btn-title_main_66{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_66 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_66 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_65 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_65 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_65 .background-img{
                border-radius:;
            }
        #medical_box_65.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_65:hover{}
                    #medical_box_65:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_65 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_65  
                
                #medical_box_65 .new_medical_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;
            
                }
            
                #medical_box_65:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_65 .mode1-size_65{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_65 .new_medical_box > div{
                width:100%;
            }
             #medical_box_65 > div{
               height:100%;
            }
            #medical_box_65 .mode2-size_65{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_65 .mode3-size_65{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_65 .mode4-size_65{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_65 .mode5-size_65{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_65 .mode6-size_65{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_65 .mode7-size_65{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_65 .mode7-size_65 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_65 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_65 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_65{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_65 span:hover{
                color:!important;
            }
            .custom2_65{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_65 span:hover{
                color:;
            }
            #medical_box_65 .mode-btn1_65{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_65 .mode-btn1_65 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_65 .mode-btn2_65{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_65 .mode-btn2_65 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_65 .div-btn-title_main_65{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_65 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_65 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_64 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_64 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_64 .background-img{
                border-radius:;
            }
        #medical_box_64.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_64:hover{}
                    #medical_box_64:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_64 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_64  
                
                #medical_box_64 .new_medical_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;
            
                }
            
                #medical_box_64:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_64 .mode1-size_64{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_64 .new_medical_box > div{
                width:100%;
            }
             #medical_box_64 > div{
               height:100%;
            }
            #medical_box_64 .mode2-size_64{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_64 .mode3-size_64{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_64 .mode4-size_64{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_64 .mode5-size_64{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_64 .mode6-size_64{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_64 .mode7-size_64{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_64 .mode7-size_64 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_64 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_64 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_64{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_64 span:hover{
                color:!important;
            }
            .custom2_64{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_64 span:hover{
                color:;
            }
            #medical_box_64 .mode-btn1_64{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_64 .mode-btn1_64 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_64 .mode-btn2_64{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_64 .mode-btn2_64 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_64 .div-btn-title_main_64{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_64 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_64 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_63 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_63 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_63 .background-img{
                border-radius:;
            }
        #medical_box_63.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_63:hover{}
                    #medical_box_63:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_63 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_63  
                
                #medical_box_63 .new_medical_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;
            
                }
            
                #medical_box_63:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_63 .mode1-size_63{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_63 .new_medical_box > div{
                width:100%;
            }
             #medical_box_63 > div{
               height:100%;
            }
            #medical_box_63 .mode2-size_63{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_63 .mode3-size_63{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_63 .mode4-size_63{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_63 .mode5-size_63{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_63 .mode6-size_63{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_63 .mode7-size_63{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_63 .mode7-size_63 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_63 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_63 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_63{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_63 span:hover{
                color:!important;
            }
            .custom2_63{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_63 span:hover{
                color:;
            }
            #medical_box_63 .mode-btn1_63{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_63 .mode-btn1_63 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_63 .mode-btn2_63{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_63 .mode-btn2_63 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_63 .div-btn-title_main_63{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_63 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_63 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_62 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_62 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_62 .background-img{
                border-radius:;
            }
        #medical_box_62.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_62:hover{}
                    #medical_box_62:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_62 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_62  
                
                #medical_box_62 .new_medical_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;
            
                }
            
                #medical_box_62:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_62 .mode1-size_62{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_62 .new_medical_box > div{
                width:100%;
            }
             #medical_box_62 > div{
               height:100%;
            }
            #medical_box_62 .mode2-size_62{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_62 .mode3-size_62{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_62 .mode4-size_62{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_62 .mode5-size_62{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_62 .mode6-size_62{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_62 .mode7-size_62{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_62 .mode7-size_62 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_62 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_62 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_62{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_62 span:hover{
                color:!important;
            }
            .custom2_62{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_62 span:hover{
                color:;
            }
            #medical_box_62 .mode-btn1_62{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_62 .mode-btn1_62 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_62 .mode-btn2_62{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_62 .mode-btn2_62 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_62 .div-btn-title_main_62{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_62 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_62 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_61 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_61 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_61 .background-img{
                border-radius:;
            }
        #medical_box_61.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_61:hover{}
                    #medical_box_61:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_61 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_61  
                
                #medical_box_61 .new_medical_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;
            
                }
            
                #medical_box_61:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_61 .mode1-size_61{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_61 .new_medical_box > div{
                width:100%;
            }
             #medical_box_61 > div{
               height:100%;
            }
            #medical_box_61 .mode2-size_61{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_61 .mode3-size_61{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_61 .mode4-size_61{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_61 .mode5-size_61{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_61 .mode6-size_61{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_61 .mode7-size_61{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_61 .mode7-size_61 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_61 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_61 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_61{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_61 span:hover{
                color:!important;
            }
            .custom2_61{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_61 span:hover{
                color:;
            }
            #medical_box_61 .mode-btn1_61{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_61 .mode-btn1_61 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_61 .mode-btn2_61{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_61 .mode-btn2_61 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_61 .div-btn-title_main_61{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_61 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_61 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_60 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_60 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_60 .background-img{
                border-radius:;
            }
        #medical_box_60.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_60:hover{}
                    #medical_box_60:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_60 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_60  
                
                #medical_box_60 .new_medical_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;
            
                }
            
                #medical_box_60:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_60 .mode1-size_60{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_60 .new_medical_box > div{
                width:100%;
            }
             #medical_box_60 > div{
               height:100%;
            }
            #medical_box_60 .mode2-size_60{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_60 .mode3-size_60{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_60 .mode4-size_60{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_60 .mode5-size_60{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_60 .mode6-size_60{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_60 .mode7-size_60{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_60 .mode7-size_60 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_60 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_60 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_60{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_60 span:hover{
                color:!important;
            }
            .custom2_60{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_60 span:hover{
                color:;
            }
            #medical_box_60 .mode-btn1_60{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_60 .mode-btn1_60 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_60 .mode-btn2_60{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_60 .mode-btn2_60 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_60 .div-btn-title_main_60{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_60 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_60 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_59 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_59 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_59 .background-img{
                border-radius:;
            }
        #medical_box_59.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_59:hover{}
                    #medical_box_59:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_59 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_59  
                
                #medical_box_59 .new_medical_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;
            
                }
            
                #medical_box_59:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_59 .mode1-size_59{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_59 .new_medical_box > div{
                width:100%;
            }
             #medical_box_59 > div{
               height:100%;
            }
            #medical_box_59 .mode2-size_59{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_59 .mode3-size_59{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_59 .mode4-size_59{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_59 .mode5-size_59{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_59 .mode6-size_59{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_59 .mode7-size_59{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_59 .mode7-size_59 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_59 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_59 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_59{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_59 span:hover{
                color:!important;
            }
            .custom2_59{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_59 span:hover{
                color:;
            }
            #medical_box_59 .mode-btn1_59{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_59 .mode-btn1_59 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_59 .mode-btn2_59{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_59 .mode-btn2_59 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_59 .div-btn-title_main_59{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_59 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_59 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_58 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_58 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_58 .background-img{
                border-radius:;
            }
        #medical_box_58.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_58:hover{}
                    #medical_box_58:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_58 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_58  
                
                #medical_box_58 .new_medical_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;
            
                }
            
                #medical_box_58:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_58 .mode1-size_58{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_58 .new_medical_box > div{
                width:100%;
            }
             #medical_box_58 > div{
               height:100%;
            }
            #medical_box_58 .mode2-size_58{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_58 .mode3-size_58{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_58 .mode4-size_58{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_58 .mode5-size_58{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_58 .mode6-size_58{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_58 .mode7-size_58{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_58 .mode7-size_58 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_58 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_58 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_58{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_58 span:hover{
                color:!important;
            }
            .custom2_58{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_58 span:hover{
                color:;
            }
            #medical_box_58 .mode-btn1_58{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_58 .mode-btn1_58 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_58 .mode-btn2_58{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_58 .mode-btn2_58 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_58 .div-btn-title_main_58{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_58 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_58 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_57 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_57 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_57 .background-img{
                border-radius:;
            }
        #medical_box_57.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_57:hover{}
                    #medical_box_57:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_57 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_57  
                
                #medical_box_57 .new_medical_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;
            
                }
            
                #medical_box_57:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_57 .mode1-size_57{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_57 .new_medical_box > div{
                width:100%;
            }
             #medical_box_57 > div{
               height:100%;
            }
            #medical_box_57 .mode2-size_57{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_57 .mode3-size_57{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_57 .mode4-size_57{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_57 .mode5-size_57{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_57 .mode6-size_57{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_57 .mode7-size_57{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_57 .mode7-size_57 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_57 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_57 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_57{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_57 span:hover{
                color:!important;
            }
            .custom2_57{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_57 span:hover{
                color:;
            }
            #medical_box_57 .mode-btn1_57{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_57 .mode-btn1_57 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_57 .mode-btn2_57{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_57 .mode-btn2_57 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_57 .div-btn-title_main_57{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_57 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_57 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_56 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_56 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_56 .background-img{
                border-radius:;
            }
        #medical_box_56.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_56:hover{}
                    #medical_box_56:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_56 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_56  
                
                #medical_box_56 .new_medical_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;
            
                }
            
                #medical_box_56:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_56 .mode1-size_56{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_56 .new_medical_box > div{
                width:100%;
            }
             #medical_box_56 > div{
               height:100%;
            }
            #medical_box_56 .mode2-size_56{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_56 .mode3-size_56{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_56 .mode4-size_56{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_56 .mode5-size_56{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_56 .mode6-size_56{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_56 .mode7-size_56{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_56 .mode7-size_56 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_56 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_56 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_56{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_56 span:hover{
                color:!important;
            }
            .custom2_56{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_56 span:hover{
                color:;
            }
            #medical_box_56 .mode-btn1_56{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_56 .mode-btn1_56 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_56 .mode-btn2_56{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_56 .mode-btn2_56 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_56 .div-btn-title_main_56{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_56 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_56 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_55 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_55 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_55 .background-img{
                border-radius:;
            }
        #medical_box_55.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_55:hover{}
                    #medical_box_55:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_55 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_55  
                
                #medical_box_55 .new_medical_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;
            
                }
            
                #medical_box_55:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_55 .mode1-size_55{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_55 .new_medical_box > div{
                width:100%;
            }
             #medical_box_55 > div{
               height:100%;
            }
            #medical_box_55 .mode2-size_55{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_55 .mode3-size_55{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_55 .mode4-size_55{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_55 .mode5-size_55{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_55 .mode6-size_55{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_55 .mode7-size_55{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_55 .mode7-size_55 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_55 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_55 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_55{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_55 span:hover{
                color:!important;
            }
            .custom2_55{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_55 span:hover{
                color:;
            }
            #medical_box_55 .mode-btn1_55{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_55 .mode-btn1_55 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_55 .mode-btn2_55{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_55 .mode-btn2_55 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_55 .div-btn-title_main_55{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_55 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_55 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_54 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_54 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_54 .background-img{
                border-radius:;
            }
        #medical_box_54.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_54:hover{}
                    #medical_box_54:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_54 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_54  
                
                #medical_box_54 .new_medical_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;
            
                }
            
                #medical_box_54:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_54 .mode1-size_54{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_54 .new_medical_box > div{
                width:100%;
            }
             #medical_box_54 > div{
               height:100%;
            }
            #medical_box_54 .mode2-size_54{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_54 .mode3-size_54{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_54 .mode4-size_54{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_54 .mode5-size_54{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_54 .mode6-size_54{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_54 .mode7-size_54{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_54 .mode7-size_54 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_54 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_54 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_54{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_54 span:hover{
                color:!important;
            }
            .custom2_54{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_54 span:hover{
                color:;
            }
            #medical_box_54 .mode-btn1_54{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_54 .mode-btn1_54 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_54 .mode-btn2_54{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_54 .mode-btn2_54 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_54 .div-btn-title_main_54{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_54 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_54 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_53 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_53 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_53 .background-img{
                border-radius:;
            }
        #medical_box_53.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_53:hover{}
                    #medical_box_53:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_53 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_53  
                
                #medical_box_53 .new_medical_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;
            
                }
            
                #medical_box_53:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_53 .mode1-size_53{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_53 .new_medical_box > div{
                width:100%;
            }
             #medical_box_53 > div{
               height:100%;
            }
            #medical_box_53 .mode2-size_53{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_53 .mode3-size_53{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_53 .mode4-size_53{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_53 .mode5-size_53{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_53 .mode6-size_53{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_53 .mode7-size_53{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_53 .mode7-size_53 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_53 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_53 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_53{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_53 span:hover{
                color:!important;
            }
            .custom2_53{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_53 span:hover{
                color:;
            }
            #medical_box_53 .mode-btn1_53{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_53 .mode-btn1_53 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_53 .mode-btn2_53{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_53 .mode-btn2_53 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_53 .div-btn-title_main_53{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_53 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_53 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_52 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_52 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_52 .background-img{
                border-radius:;
            }
        #medical_box_52.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_52:hover{}
                    #medical_box_52:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_52 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_52  
                
                #medical_box_52 .new_medical_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;
            
                }
            
                #medical_box_52:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_52 .mode1-size_52{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_52 .new_medical_box > div{
                width:100%;
            }
             #medical_box_52 > div{
               height:100%;
            }
            #medical_box_52 .mode2-size_52{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_52 .mode3-size_52{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_52 .mode4-size_52{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_52 .mode5-size_52{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_52 .mode6-size_52{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_52 .mode7-size_52{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_52 .mode7-size_52 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_52 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_52 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_52{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_52 span:hover{
                color:!important;
            }
            .custom2_52{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_52 span:hover{
                color:;
            }
            #medical_box_52 .mode-btn1_52{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_52 .mode-btn1_52 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_52 .mode-btn2_52{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_52 .mode-btn2_52 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_52 .div-btn-title_main_52{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_52 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_52 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_51 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_51 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_51 .background-img{
                border-radius:;
            }
        #medical_box_51.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_51:hover{}
                    #medical_box_51:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_51 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_51  
                
                #medical_box_51 .new_medical_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;
            
                }
            
                #medical_box_51:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_51 .mode1-size_51{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_51 .new_medical_box > div{
                width:100%;
            }
             #medical_box_51 > div{
               height:100%;
            }
            #medical_box_51 .mode2-size_51{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_51 .mode3-size_51{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_51 .mode4-size_51{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_51 .mode5-size_51{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_51 .mode6-size_51{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_51 .mode7-size_51{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_51 .mode7-size_51 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_51 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_51 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_51{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_51 span:hover{
                color:!important;
            }
            .custom2_51{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_51 span:hover{
                color:;
            }
            #medical_box_51 .mode-btn1_51{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_51 .mode-btn1_51 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_51 .mode-btn2_51{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_51 .mode-btn2_51 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_51 .div-btn-title_main_51{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_51 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_51 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_50 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_50 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_50 .background-img{
                border-radius:;
            }
        #medical_box_50.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_50:hover{}
                    #medical_box_50:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_50 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_50  
                
                #medical_box_50 .new_medical_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;
            
                }
            
                #medical_box_50:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_50 .mode1-size_50{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_50 .new_medical_box > div{
                width:100%;
            }
             #medical_box_50 > div{
               height:100%;
            }
            #medical_box_50 .mode2-size_50{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_50 .mode3-size_50{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_50 .mode4-size_50{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_50 .mode5-size_50{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_50 .mode6-size_50{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_50 .mode7-size_50{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_50 .mode7-size_50 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_50 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_50 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_50{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_50 span:hover{
                color:!important;
            }
            .custom2_50{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_50 span:hover{
                color:;
            }
            #medical_box_50 .mode-btn1_50{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_50 .mode-btn1_50 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_50 .mode-btn2_50{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_50 .mode-btn2_50 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_50 .div-btn-title_main_50{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_50 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_50 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_49 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_49 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_49 .background-img{
                border-radius:;
            }
        #medical_box_49.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_49:hover{}
                    #medical_box_49:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_49 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_49  
                
                #medical_box_49 .new_medical_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;
            
                }
            
                #medical_box_49:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_49 .mode1-size_49{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_49 .new_medical_box > div{
                width:100%;
            }
             #medical_box_49 > div{
               height:100%;
            }
            #medical_box_49 .mode2-size_49{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_49 .mode3-size_49{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_49 .mode4-size_49{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_49 .mode5-size_49{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_49 .mode6-size_49{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_49 .mode7-size_49{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_49 .mode7-size_49 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_49 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_49 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_49{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_49 span:hover{
                color:!important;
            }
            .custom2_49{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_49 span:hover{
                color:;
            }
            #medical_box_49 .mode-btn1_49{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_49 .mode-btn1_49 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_49 .mode-btn2_49{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_49 .mode-btn2_49 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_49 .div-btn-title_main_49{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_49 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_49 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_48 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_48 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_48 .background-img{
                border-radius:;
            }
        #medical_box_48.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_48:hover{}
                    #medical_box_48:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_48 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_48  
                
                #medical_box_48 .new_medical_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;
            
                }
            
                #medical_box_48:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_48 .mode1-size_48{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_48 .new_medical_box > div{
                width:100%;
            }
             #medical_box_48 > div{
               height:100%;
            }
            #medical_box_48 .mode2-size_48{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_48 .mode3-size_48{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_48 .mode4-size_48{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_48 .mode5-size_48{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_48 .mode6-size_48{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_48 .mode7-size_48{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_48 .mode7-size_48 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_48 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_48 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_48{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_48 span:hover{
                color:!important;
            }
            .custom2_48{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_48 span:hover{
                color:;
            }
            #medical_box_48 .mode-btn1_48{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_48 .mode-btn1_48 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_48 .mode-btn2_48{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_48 .mode-btn2_48 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_48 .div-btn-title_main_48{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_48 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_48 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_47 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_47 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_47 .background-img{
                border-radius:;
            }
        #medical_box_47.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_47:hover{}
                    #medical_box_47:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_47 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_47  
                
                #medical_box_47 .new_medical_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;
            
                }
            
                #medical_box_47:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_47 .mode1-size_47{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_47 .new_medical_box > div{
                width:100%;
            }
             #medical_box_47 > div{
               height:100%;
            }
            #medical_box_47 .mode2-size_47{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_47 .mode3-size_47{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_47 .mode4-size_47{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_47 .mode5-size_47{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_47 .mode6-size_47{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_47 .mode7-size_47{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_47 .mode7-size_47 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_47 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_47 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_47{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_47 span:hover{
                color:!important;
            }
            .custom2_47{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_47 span:hover{
                color:;
            }
            #medical_box_47 .mode-btn1_47{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_47 .mode-btn1_47 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_47 .mode-btn2_47{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_47 .mode-btn2_47 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_47 .div-btn-title_main_47{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_47 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_47 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_46 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_46 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_46 .background-img{
                border-radius:;
            }
        #medical_box_46.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_46:hover{}
                    #medical_box_46:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_46 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_46  
                
                #medical_box_46 .new_medical_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;
            
                }
            
                #medical_box_46:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_46 .mode1-size_46{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_46 .new_medical_box > div{
                width:100%;
            }
             #medical_box_46 > div{
               height:100%;
            }
            #medical_box_46 .mode2-size_46{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_46 .mode3-size_46{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_46 .mode4-size_46{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_46 .mode5-size_46{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_46 .mode6-size_46{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_46 .mode7-size_46{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_46 .mode7-size_46 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_46 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_46 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_46{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_46 span:hover{
                color:!important;
            }
            .custom2_46{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_46 span:hover{
                color:;
            }
            #medical_box_46 .mode-btn1_46{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_46 .mode-btn1_46 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_46 .mode-btn2_46{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_46 .mode-btn2_46 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_46 .div-btn-title_main_46{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_46 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_46 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_45 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_45 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_45 .background-img{
                border-radius:;
            }
        #medical_box_45.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_45:hover{}
                    #medical_box_45:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_45 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_45  
                
                #medical_box_45 .new_medical_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;
            
                }
            
                #medical_box_45:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_45 .mode1-size_45{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_45 .new_medical_box > div{
                width:100%;
            }
             #medical_box_45 > div{
               height:100%;
            }
            #medical_box_45 .mode2-size_45{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_45 .mode3-size_45{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_45 .mode4-size_45{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_45 .mode5-size_45{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_45 .mode6-size_45{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_45 .mode7-size_45{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_45 .mode7-size_45 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_45 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_45 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_45{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_45 span:hover{
                color:!important;
            }
            .custom2_45{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_45 span:hover{
                color:;
            }
            #medical_box_45 .mode-btn1_45{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_45 .mode-btn1_45 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_45 .mode-btn2_45{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_45 .mode-btn2_45 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_45 .div-btn-title_main_45{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_45 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_45 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_44 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_44 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_44 .background-img{
                border-radius:;
            }
        #medical_box_44.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_44:hover{}
                    #medical_box_44:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_44 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_44  
                
                #medical_box_44 .new_medical_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;
            
                }
            
                #medical_box_44:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_44 .mode1-size_44{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_44 .new_medical_box > div{
                width:100%;
            }
             #medical_box_44 > div{
               height:100%;
            }
            #medical_box_44 .mode2-size_44{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_44 .mode3-size_44{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_44 .mode4-size_44{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_44 .mode5-size_44{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_44 .mode6-size_44{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_44 .mode7-size_44{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_44 .mode7-size_44 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_44 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_44 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_44{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_44 span:hover{
                color:!important;
            }
            .custom2_44{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_44 span:hover{
                color:;
            }
            #medical_box_44 .mode-btn1_44{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_44 .mode-btn1_44 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_44 .mode-btn2_44{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_44 .mode-btn2_44 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_44 .div-btn-title_main_44{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_44 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_44 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_43 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_43 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_43 .background-img{
                border-radius:;
            }
        #medical_box_43.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_43:hover{}
                    #medical_box_43:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_43 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_43  
                
                #medical_box_43 .new_medical_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;
            
                }
            
                #medical_box_43:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_43 .mode1-size_43{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_43 .new_medical_box > div{
                width:100%;
            }
             #medical_box_43 > div{
               height:100%;
            }
            #medical_box_43 .mode2-size_43{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_43 .mode3-size_43{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_43 .mode4-size_43{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_43 .mode5-size_43{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_43 .mode6-size_43{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_43 .mode7-size_43{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_43 .mode7-size_43 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_43 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_43 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_43{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_43 span:hover{
                color:!important;
            }
            .custom2_43{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_43 span:hover{
                color:;
            }
            #medical_box_43 .mode-btn1_43{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_43 .mode-btn1_43 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_43 .mode-btn2_43{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_43 .mode-btn2_43 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_43 .div-btn-title_main_43{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_43 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_43 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_42 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/1627971105_جوجه کباب مغولی.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_42 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_42 .background-img{
                border-radius:;
            }
        #medical_box_42 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_42:hover .new_medical_icon{}#medical_box_42.new_medical_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_42:hover{}
                    #medical_box_42:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_42 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_42  
                
                #medical_box_42 .new_medical_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;
            
                }
            
                #medical_box_42:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_42 .mode1-size_42{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_42 .new_medical_box > div{
                width:100%;
            }
             #medical_box_42 > div{
               height:100%;
            }
            #medical_box_42 .mode2-size_42{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_42 .mode3-size_42{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_42 .mode4-size_42{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_42 .mode5-size_42{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_42 .mode6-size_42{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_42 .mode7-size_42{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_42 .mode7-size_42 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_42 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_42 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_42{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_42 span:hover{
                color:!important;
            }
            .custom2_42{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_42 span:hover{
                color:;
            }
            #medical_box_42 .mode-btn1_42{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_42 .mode-btn1_42 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_42 .mode-btn2_42{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_42 .mode-btn2_42 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_42 .div-btn-title_main_42{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_42 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_42 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_4 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_4 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_4 .background-img{
                border-radius:5px;
            }
        #medical_box_4 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_4:hover .new_medical_icon{}#medical_box_4.new_medical_module{background-color:#cf1322;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_4:hover{}#medical_box_4 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:25px;text-align:justify;margin-top:20px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;}#medical_box_14:hover .new_medical_description{color:#f5f5f5 !important;}
                    #medical_box_4:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_4 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_4 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{} 
                
                #medical_box_4 .new_medical_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;
            
                }
            
                #medical_box_4:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_4 .mode1-size_4{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_4 .new_medical_box > div{
                width:100%;
            }
             #medical_box_4 > div{
               height:100%;
            }
            #medical_box_4 .mode2-size_4{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4 .mode3-size_4{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_4 .mode4-size_4{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_4 .mode5-size_4{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_4 .mode6-size_4{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_4 .mode7-size_4{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_4 .mode7-size_4 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_4 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_4 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_4{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_4 span:hover{
                color:!important;
            }
            .custom2_4{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_4 span:hover{
                color:;
            }
            #medical_box_4 .mode-btn1_4{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4 .mode-btn1_4 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_4 .mode-btn2_4{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_4 .mode-btn2_4 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_4 .div-btn-title_main_4{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_4 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_4 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_3 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_3 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_3 .background-img{
                border-radius:5px;
            }
        #medical_box_3 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_3:hover .new_medical_icon{}#medical_box_3.new_medical_module{background-color:#cf1322;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_3:hover{}#medical_box_3 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:25px;text-align:justify;margin-top:20px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;}#medical_box_14:hover .new_medical_description{color:#f5f5f5 !important;}
                    #medical_box_3:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_3 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_3 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{} 
                
                #medical_box_3 .new_medical_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;
            
                }
            
                #medical_box_3:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_3 .mode1-size_3{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_3 .new_medical_box > div{
                width:100%;
            }
             #medical_box_3 > div{
               height:100%;
            }
            #medical_box_3 .mode2-size_3{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3 .mode3-size_3{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_3 .mode4-size_3{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_3 .mode5-size_3{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_3 .mode6-size_3{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_3 .mode7-size_3{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_3 .mode7-size_3 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_3 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_3 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_3{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_3 span:hover{
                color:!important;
            }
            .custom2_3{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_3 span:hover{
                color:;
            }
            #medical_box_3 .mode-btn1_3{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3 .mode-btn1_3 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_3 .mode-btn2_3{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_3 .mode-btn2_3 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_3 .div-btn-title_main_3{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_3 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_3 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_2 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_2 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_2 .background-img{
                border-radius:5px;
            }
        #medical_box_2 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_2:hover .new_medical_icon{}#medical_box_2.new_medical_module{background-color:#cf1322;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_2:hover{}#medical_box_2 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:25px;text-align:justify;margin-top:20px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;}#medical_box_14:hover .new_medical_description{color:#f5f5f5 !important;}
                    #medical_box_2:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_2 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_2 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{} 
                
                #medical_box_2 .new_medical_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;
            
                }
            
                #medical_box_2:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_2 .mode1-size_2{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_2 .new_medical_box > div{
                width:100%;
            }
             #medical_box_2 > div{
               height:100%;
            }
            #medical_box_2 .mode2-size_2{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2 .mode3-size_2{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_2 .mode4-size_2{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_2 .mode5-size_2{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_2 .mode6-size_2{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_2 .mode7-size_2{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_2 .mode7-size_2 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_2 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_2 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_2 span:hover{
                color:!important;
            }
            .custom2_2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_2 span:hover{
                color:;
            }
            #medical_box_2 .mode-btn1_2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2 .mode-btn1_2 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_2 .mode-btn2_2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_2 .mode-btn2_2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_2 .div-btn-title_main_2{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_2 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_2 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1 .background-img{
                border-radius:5px;
            }
        #medical_box_1 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:65px;margin-top:9px;border-style:none;border-color:#000;}#medical_box_1:hover .new_medical_icon{}#medical_box_1.new_medical_module{background-color:#cf1322;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:5px;border-style:none;}#medical_box_1:hover{}#medical_box_1 .new_medical_description{color:#ffffff;font-weight:500;font-size:16px;line-height:25px;text-align:justify;margin-top:20px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;}#medical_box_14:hover .new_medical_description{color:#f5f5f5 !important;}
                    #medical_box_1:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_1 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_1 .new_medical_layer{}#medical_box_14:hover .new_medical_layer{} 
                
                #medical_box_1 .new_medical_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;
            
                }
            
                #medical_box_1:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_1 .mode1-size_1{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1 > div{
               height:100%;
            }
            #medical_box_1 .mode2-size_1{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1 .mode3-size_1{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1 .mode4-size_1{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1 .mode5-size_1{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1 .mode6-size_1{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1 .mode7-size_1{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1 .mode7-size_1 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_1 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1 span:hover{
                color:!important;
            }
            .custom2_1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1 span:hover{
                color:;
            }
            #medical_box_1 .mode-btn1_1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1 .mode-btn1_1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1 .mode-btn2_1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1 .mode-btn2_1 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1 .div-btn-title_main_1{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_80 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_80 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_80 .background-img{
                border-radius:;
            }
        #medical_box_80.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_80:hover{}
                    #medical_box_80:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_80 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_80  
                
                #medical_box_80 .new_medical_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;
            
                }
            
                #medical_box_80:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_80 .mode1-size_80{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_80 .new_medical_box > div{
                width:100%;
            }
             #medical_box_80 > div{
               height:100%;
            }
            #medical_box_80 .mode2-size_80{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_80 .mode3-size_80{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_80 .mode4-size_80{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_80 .mode5-size_80{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_80 .mode6-size_80{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_80 .mode7-size_80{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_80 .mode7-size_80 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_80 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_80 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_80{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_80 span:hover{
                color:!important;
            }
            .custom2_80{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_80 span:hover{
                color:;
            }
            #medical_box_80 .mode-btn1_80{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_80 .mode-btn1_80 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_80 .mode-btn2_80{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_80 .mode-btn2_80 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_80 .div-btn-title_main_80{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_80 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_80 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_83 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_83 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_83 .background-img{
                border-radius:;
            }
        #medical_box_83.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_83:hover{}
                    #medical_box_83:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_83 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_83  
                
                #medical_box_83 .new_medical_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;
            
                }
            
                #medical_box_83:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_83 .mode1-size_83{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_83 .new_medical_box > div{
                width:100%;
            }
             #medical_box_83 > div{
               height:100%;
            }
            #medical_box_83 .mode2-size_83{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_83 .mode3-size_83{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_83 .mode4-size_83{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_83 .mode5-size_83{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_83 .mode6-size_83{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_83 .mode7-size_83{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_83 .mode7-size_83 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_83 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_83 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_83{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_83 span:hover{
                color:!important;
            }
            .custom2_83{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_83 span:hover{
                color:;
            }
            #medical_box_83 .mode-btn1_83{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_83 .mode-btn1_83 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_83 .mode-btn2_83{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_83 .mode-btn2_83 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_83 .div-btn-title_main_83{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_83 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_83 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_167 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_167 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_167 .background-img{
                border-radius:;
            }
        #medical_box_167.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_167:hover{}
                    #medical_box_167:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_167 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_167  
                
                #medical_box_167 .new_medical_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;
            
                }
            
                #medical_box_167:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_167 .mode1-size_167{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_167 .new_medical_box > div{
                width:100%;
            }
             #medical_box_167 > div{
               height:100%;
            }
            #medical_box_167 .mode2-size_167{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_167 .mode3-size_167{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_167 .mode4-size_167{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_167 .mode5-size_167{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_167 .mode6-size_167{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_167 .mode7-size_167{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_167 .mode7-size_167 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_167 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_167 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_167{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_167 span:hover{
                color:!important;
            }
            .custom2_167{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_167 span:hover{
                color:;
            }
            #medical_box_167 .mode-btn1_167{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_167 .mode-btn1_167 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_167 .mode-btn2_167{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_167 .mode-btn2_167 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_167 .div-btn-title_main_167{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_167 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_167 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_81 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/1640586157__12-27-09.42.58.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_81 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_81 .background-img{
                border-radius:;
            }
        #medical_box_81 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_81:hover .new_medical_icon{}#medical_box_81.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_81:hover{}
                    #medical_box_81:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_81 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_81  
                
                #medical_box_81 .new_medical_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;
            
                }
            
                #medical_box_81:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_81 .mode1-size_81{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_81 .new_medical_box > div{
                width:100%;
            }
             #medical_box_81 > div{
               height:100%;
            }
            #medical_box_81 .mode2-size_81{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_81 .mode3-size_81{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_81 .mode4-size_81{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_81 .mode5-size_81{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_81 .mode6-size_81{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_81 .mode7-size_81{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_81 .mode7-size_81 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_81 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_81 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_81{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_81 span:hover{
                color:!important;
            }
            .custom2_81{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_81 span:hover{
                color:;
            }
            #medical_box_81 .mode-btn1_81{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_81 .mode-btn1_81 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_81 .mode-btn2_81{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_81 .mode-btn2_81 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_81 .div-btn-title_main_81{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_81 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_81 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_171 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_171 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_171 .background-img{
                border-radius:;
            }
        
                   #medical_box_171  
                
                #medical_box_171 .new_medical_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;
            
                }
            
                #medical_box_171:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_171 .mode1-size_171{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_171 .new_medical_box > div{
                width:100%;
            }
             #medical_box_171 > div{
               height:100%;
            }
            #medical_box_171 .mode2-size_171{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_171 .mode3-size_171{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_171 .mode4-size_171{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_171 .mode5-size_171{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_171 .mode6-size_171{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_171 .mode7-size_171{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_171 .mode7-size_171 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_171 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_171 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_171{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_171 span:hover{
                color:!important;
            }
            .custom2_171{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_171 span:hover{
                color:;
            }
            #medical_box_171 .mode-btn1_171{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_171 .mode-btn1_171 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_171 .mode-btn2_171{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_171 .mode-btn2_171 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_171 .div-btn-title_main_171{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_171 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_171 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_170 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_170 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_170 .background-img{
                border-radius:;
            }
        #medical_box_170 .new_medical_title{color:#cf1322;font-weight:bold;font-size:45px;text-align:left;margin-top:10px;height:80px;}#medical_box_170:hover .new_medical_title{}
                #medical_box_170 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_170.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:150px;padding-top:80px;border-style:none;}#medical_box_170:hover{}
                   #medical_box_170  
                
                #medical_box_170 .new_medical_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;
            
                }
            
                #medical_box_170:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_170 .mode1-size_170{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_170 .new_medical_box > div{
                width:100%;
            }
             #medical_box_170 > div{
               height:100%;
            }
            #medical_box_170 .mode2-size_170{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_170 .mode3-size_170{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_170 .mode4-size_170{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_170 .mode5-size_170{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_170 .mode6-size_170{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_170 .mode7-size_170{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_170 .mode7-size_170 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_170 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_170 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_170{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_170 span:hover{
                color:!important;
            }
            .custom2_170{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_170 span:hover{
                color:;
            }
            #medical_box_170 .mode-btn1_170{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_170 .mode-btn1_170 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_170 .mode-btn2_170{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_170 .mode-btn2_170 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_170 .div-btn-title_main_170{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_170 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_170 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_169 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_169 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_169 .background-img{
                border-radius:;
            }
        #medical_box_169 .new_medical_title{color:#cf1322;font-weight:bold;font-size:45px;text-align:right;margin-top:10px;height:80px;}#medical_box_169:hover .new_medical_title{}
                #medical_box_169 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_169.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:150px;padding-top:80px;border-style:none;}#medical_box_169:hover{}
                   #medical_box_169  
                
                #medical_box_169 .new_medical_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;
            
                }
            
                #medical_box_169:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_169 .mode1-size_169{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_169 .new_medical_box > div{
                width:100%;
            }
             #medical_box_169 > div{
               height:100%;
            }
            #medical_box_169 .mode2-size_169{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_169 .mode3-size_169{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_169 .mode4-size_169{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_169 .mode5-size_169{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_169 .mode6-size_169{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_169 .mode7-size_169{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_169 .mode7-size_169 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_169 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_169 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_169{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_169 span:hover{
                color:!important;
            }
            .custom2_169{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_169 span:hover{
                color:;
            }
            #medical_box_169 .mode-btn1_169{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_169 .mode-btn1_169 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_169 .mode-btn2_169{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_169 .mode-btn2_169 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_169 .div-btn-title_main_169{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_169 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_169 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_168 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_168 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_168 .background-img{
                border-radius:;
            }
        
                   #medical_box_168 .new_medical_layer{}#medical_box_168:hover .new_medical_layer{} 
                
                #medical_box_168 .new_medical_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;
            
                }
            
                #medical_box_168:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_168 .mode1-size_168{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_168 .new_medical_box > div{
                width:100%;
            }
             #medical_box_168 > div{
               height:100%;
            }
            #medical_box_168 .mode2-size_168{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_168 .mode3-size_168{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_168 .mode4-size_168{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_168 .mode5-size_168{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_168 .mode6-size_168{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_168 .mode7-size_168{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_168 .mode7-size_168 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_168 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_168 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_168{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_168 span:hover{
                color:!important;
            }
            .custom2_168{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_168 span:hover{
                color:;
            }
            #medical_box_168 .mode-btn1_168{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_168 .mode-btn1_168 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_168 .mode-btn2_168{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_168 .mode-btn2_168 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_168 .div-btn-title_main_168{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_168 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_168 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_82 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_82 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_82 .background-img{
                border-radius:;
            }
        #medical_box_82.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;z-index:-10;border-style:none;}#medical_box_82:hover{}
                    #medical_box_82:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_82 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_82  
                
                #medical_box_82 .new_medical_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;
            
                }
            
                #medical_box_82:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_82 .mode1-size_82{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_82 .new_medical_box > div{
                width:100%;
            }
             #medical_box_82 > div{
               height:100%;
            }
            #medical_box_82 .mode2-size_82{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_82 .mode3-size_82{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_82 .mode4-size_82{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_82 .mode5-size_82{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_82 .mode6-size_82{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_82 .mode7-size_82{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_82 .mode7-size_82 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_82 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_82 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_82{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_82 span:hover{
                color:!important;
            }
            .custom2_82{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_82 span:hover{
                color:;
            }
            #medical_box_82 .mode-btn1_82{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_82 .mode-btn1_82 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_82 .mode-btn2_82{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_82 .mode-btn2_82 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_82 .div-btn-title_main_82{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_82 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_82 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_84 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_84 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_84 .background-img{
                border-radius:;
            }
        #medical_box_84.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_84:hover{}
                    #medical_box_84:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_84 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_84  
                
                #medical_box_84 .new_medical_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;
            
                }
            
                #medical_box_84:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_84 .mode1-size_84{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_84 .new_medical_box > div{
                width:100%;
            }
             #medical_box_84 > div{
               height:100%;
            }
            #medical_box_84 .mode2-size_84{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_84 .mode3-size_84{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_84 .mode4-size_84{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_84 .mode5-size_84{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_84 .mode6-size_84{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_84 .mode7-size_84{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_84 .mode7-size_84 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_84 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_84 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_84{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_84 span:hover{
                color:!important;
            }
            .custom2_84{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_84 span:hover{
                color:;
            }
            #medical_box_84 .mode-btn1_84{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_84 .mode-btn1_84 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_84 .mode-btn2_84{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_84 .mode-btn2_84 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_84 .div-btn-title_main_84{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_84 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_84 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_85 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_85 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_85 .background-img{
                border-radius:;
            }
        #medical_box_85.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_85:hover{}
                    #medical_box_85:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_85 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_85  
                
                #medical_box_85 .new_medical_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;
            
                }
            
                #medical_box_85:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_85 .mode1-size_85{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_85 .new_medical_box > div{
                width:100%;
            }
             #medical_box_85 > div{
               height:100%;
            }
            #medical_box_85 .mode2-size_85{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_85 .mode3-size_85{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_85 .mode4-size_85{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_85 .mode5-size_85{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_85 .mode6-size_85{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_85 .mode7-size_85{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_85 .mode7-size_85 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_85 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_85 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_85{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_85 span:hover{
                color:!important;
            }
            .custom2_85{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_85 span:hover{
                color:;
            }
            #medical_box_85 .mode-btn1_85{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_85 .mode-btn1_85 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_85 .mode-btn2_85{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_85 .mode-btn2_85 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_85 .div-btn-title_main_85{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_85 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_85 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_86 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_86 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_86 .background-img{
                border-radius:;
            }
        #medical_box_86.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_86:hover{}
                    #medical_box_86:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_86 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_86  
                
                #medical_box_86 .new_medical_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;
            
                }
            
                #medical_box_86:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_86 .mode1-size_86{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_86 .new_medical_box > div{
                width:100%;
            }
             #medical_box_86 > div{
               height:100%;
            }
            #medical_box_86 .mode2-size_86{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_86 .mode3-size_86{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_86 .mode4-size_86{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_86 .mode5-size_86{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_86 .mode6-size_86{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_86 .mode7-size_86{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_86 .mode7-size_86 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_86 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_86 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_86{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_86 span:hover{
                color:!important;
            }
            .custom2_86{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_86 span:hover{
                color:;
            }
            #medical_box_86 .mode-btn1_86{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_86 .mode-btn1_86 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_86 .mode-btn2_86{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_86 .mode-btn2_86 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_86 .div-btn-title_main_86{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_86 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_86 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_87 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_87 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_87 .background-img{
                border-radius:;
            }
        #medical_box_87.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_87:hover{}
                    #medical_box_87:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_87 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_87  
                
                #medical_box_87 .new_medical_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;
            
                }
            
                #medical_box_87:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_87 .mode1-size_87{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_87 .new_medical_box > div{
                width:100%;
            }
             #medical_box_87 > div{
               height:100%;
            }
            #medical_box_87 .mode2-size_87{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_87 .mode3-size_87{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_87 .mode4-size_87{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_87 .mode5-size_87{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_87 .mode6-size_87{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_87 .mode7-size_87{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_87 .mode7-size_87 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_87 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_87 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_87{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_87 span:hover{
                color:!important;
            }
            .custom2_87{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_87 span:hover{
                color:;
            }
            #medical_box_87 .mode-btn1_87{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_87 .mode-btn1_87 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_87 .mode-btn2_87{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_87 .mode-btn2_87 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_87 .div-btn-title_main_87{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_87 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_87 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_88 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_88 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_88 .background-img{
                border-radius:;
            }
        #medical_box_88.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_88:hover{}
                    #medical_box_88:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_88 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_88  
                
                #medical_box_88 .new_medical_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;
            
                }
            
                #medical_box_88:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_88 .mode1-size_88{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_88 .new_medical_box > div{
                width:100%;
            }
             #medical_box_88 > div{
               height:100%;
            }
            #medical_box_88 .mode2-size_88{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_88 .mode3-size_88{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_88 .mode4-size_88{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_88 .mode5-size_88{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_88 .mode6-size_88{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_88 .mode7-size_88{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_88 .mode7-size_88 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_88 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_88 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_88{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_88 span:hover{
                color:!important;
            }
            .custom2_88{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_88 span:hover{
                color:;
            }
            #medical_box_88 .mode-btn1_88{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_88 .mode-btn1_88 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_88 .mode-btn2_88{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_88 .mode-btn2_88 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_88 .div-btn-title_main_88{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_88 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_88 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_89 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_89 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_89 .background-img{
                border-radius:;
            }
        #medical_box_89.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_89:hover{}
                    #medical_box_89:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_89 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_89  
                
                #medical_box_89 .new_medical_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;
            
                }
            
                #medical_box_89:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_89 .mode1-size_89{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_89 .new_medical_box > div{
                width:100%;
            }
             #medical_box_89 > div{
               height:100%;
            }
            #medical_box_89 .mode2-size_89{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_89 .mode3-size_89{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_89 .mode4-size_89{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_89 .mode5-size_89{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_89 .mode6-size_89{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_89 .mode7-size_89{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_89 .mode7-size_89 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_89 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_89 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_89{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_89 span:hover{
                color:!important;
            }
            .custom2_89{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_89 span:hover{
                color:;
            }
            #medical_box_89 .mode-btn1_89{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_89 .mode-btn1_89 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_89 .mode-btn2_89{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_89 .mode-btn2_89 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_89 .div-btn-title_main_89{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_89 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_89 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_90 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_90 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_90 .background-img{
                border-radius:;
            }
        #medical_box_90.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_90:hover{}
                    #medical_box_90:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_90 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_90  
                
                #medical_box_90 .new_medical_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;
            
                }
            
                #medical_box_90:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_90 .mode1-size_90{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_90 .new_medical_box > div{
                width:100%;
            }
             #medical_box_90 > div{
               height:100%;
            }
            #medical_box_90 .mode2-size_90{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_90 .mode3-size_90{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_90 .mode4-size_90{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_90 .mode5-size_90{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_90 .mode6-size_90{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_90 .mode7-size_90{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_90 .mode7-size_90 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_90 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_90 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_90{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_90 span:hover{
                color:!important;
            }
            .custom2_90{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_90 span:hover{
                color:;
            }
            #medical_box_90 .mode-btn1_90{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_90 .mode-btn1_90 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_90 .mode-btn2_90{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_90 .mode-btn2_90 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_90 .div-btn-title_main_90{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_90 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_90 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_91 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_91 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_91 .background-img{
                border-radius:;
            }
        #medical_box_91.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_91:hover{}
                    #medical_box_91:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_91 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_91  
                
                #medical_box_91 .new_medical_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;
            
                }
            
                #medical_box_91:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_91 .mode1-size_91{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_91 .new_medical_box > div{
                width:100%;
            }
             #medical_box_91 > div{
               height:100%;
            }
            #medical_box_91 .mode2-size_91{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_91 .mode3-size_91{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_91 .mode4-size_91{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_91 .mode5-size_91{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_91 .mode6-size_91{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_91 .mode7-size_91{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_91 .mode7-size_91 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_91 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_91 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_91{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_91 span:hover{
                color:!important;
            }
            .custom2_91{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_91 span:hover{
                color:;
            }
            #medical_box_91 .mode-btn1_91{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_91 .mode-btn1_91 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_91 .mode-btn2_91{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_91 .mode-btn2_91 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_91 .div-btn-title_main_91{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_91 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_91 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_92 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_92 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_92 .background-img{
                border-radius:;
            }
        #medical_box_92.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_92:hover{}
                    #medical_box_92:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_92 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_92  
                
                #medical_box_92 .new_medical_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;
            
                }
            
                #medical_box_92:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_92 .mode1-size_92{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_92 .new_medical_box > div{
                width:100%;
            }
             #medical_box_92 > div{
               height:100%;
            }
            #medical_box_92 .mode2-size_92{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_92 .mode3-size_92{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_92 .mode4-size_92{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_92 .mode5-size_92{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_92 .mode6-size_92{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_92 .mode7-size_92{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_92 .mode7-size_92 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_92 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_92 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_92{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_92 span:hover{
                color:!important;
            }
            .custom2_92{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_92 span:hover{
                color:;
            }
            #medical_box_92 .mode-btn1_92{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_92 .mode-btn1_92 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_92 .mode-btn2_92{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_92 .mode-btn2_92 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_92 .div-btn-title_main_92{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_92 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_92 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_93 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_93 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_93 .background-img{
                border-radius:;
            }
        #medical_box_93.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_93:hover{}
                    #medical_box_93:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_93 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_93  
                
                #medical_box_93 .new_medical_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;
            
                }
            
                #medical_box_93:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_93 .mode1-size_93{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_93 .new_medical_box > div{
                width:100%;
            }
             #medical_box_93 > div{
               height:100%;
            }
            #medical_box_93 .mode2-size_93{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_93 .mode3-size_93{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_93 .mode4-size_93{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_93 .mode5-size_93{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_93 .mode6-size_93{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_93 .mode7-size_93{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_93 .mode7-size_93 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_93 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_93 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_93{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_93 span:hover{
                color:!important;
            }
            .custom2_93{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_93 span:hover{
                color:;
            }
            #medical_box_93 .mode-btn1_93{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_93 .mode-btn1_93 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_93 .mode-btn2_93{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_93 .mode-btn2_93 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_93 .div-btn-title_main_93{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_93 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_93 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_94 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_94 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_94 .background-img{
                border-radius:;
            }
        
                #medical_box_94 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_94.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_94:hover{}
                    #medical_box_94:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_94 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_94  
                
                #medical_box_94 .new_medical_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;
            
                }
            
                #medical_box_94:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_94 .mode1-size_94{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_94 .new_medical_box > div{
                width:100%;
            }
             #medical_box_94 > div{
               height:100%;
            }
            #medical_box_94 .mode2-size_94{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_94 .mode3-size_94{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_94 .mode4-size_94{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_94 .mode5-size_94{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_94 .mode6-size_94{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_94 .mode7-size_94{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_94 .mode7-size_94 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_94 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_94 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_94{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_94 span:hover{
                color:!important;
            }
            .custom2_94{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_94 span:hover{
                color:;
            }
            #medical_box_94 .mode-btn1_94{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_94 .mode-btn1_94 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_94 .mode-btn2_94{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_94 .mode-btn2_94 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_94 .div-btn-title_main_94{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_94 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_94 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_95 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_95 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_95 .background-img{
                border-radius:;
            }
        #medical_box_95.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_95:hover{}
                    #medical_box_95:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_95 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_95  
                
                #medical_box_95 .new_medical_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;
            
                }
            
                #medical_box_95:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_95 .mode1-size_95{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_95 .new_medical_box > div{
                width:100%;
            }
             #medical_box_95 > div{
               height:100%;
            }
            #medical_box_95 .mode2-size_95{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_95 .mode3-size_95{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_95 .mode4-size_95{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_95 .mode5-size_95{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_95 .mode6-size_95{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_95 .mode7-size_95{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_95 .mode7-size_95 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_95 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_95 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_95{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_95 span:hover{
                color:!important;
            }
            .custom2_95{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_95 span:hover{
                color:;
            }
            #medical_box_95 .mode-btn1_95{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_95 .mode-btn1_95 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_95 .mode-btn2_95{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_95 .mode-btn2_95 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_95 .div-btn-title_main_95{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_95 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_95 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_96 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_96 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_96 .background-img{
                border-radius:;
            }
        #medical_box_96.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_96:hover{}
                    #medical_box_96:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_96 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_96  
                
                #medical_box_96 .new_medical_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;
            
                }
            
                #medical_box_96:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_96 .mode1-size_96{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_96 .new_medical_box > div{
                width:100%;
            }
             #medical_box_96 > div{
               height:100%;
            }
            #medical_box_96 .mode2-size_96{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_96 .mode3-size_96{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_96 .mode4-size_96{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_96 .mode5-size_96{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_96 .mode6-size_96{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_96 .mode7-size_96{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_96 .mode7-size_96 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_96 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_96 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_96{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_96 span:hover{
                color:!important;
            }
            .custom2_96{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_96 span:hover{
                color:;
            }
            #medical_box_96 .mode-btn1_96{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_96 .mode-btn1_96 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_96 .mode-btn2_96{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_96 .mode-btn2_96 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_96 .div-btn-title_main_96{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_96 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_96 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_97 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_97 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_97 .background-img{
                border-radius:;
            }
        #medical_box_97.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_97:hover{}
                    #medical_box_97:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_97 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_97  
                
                #medical_box_97 .new_medical_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;
            
                }
            
                #medical_box_97:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_97 .mode1-size_97{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_97 .new_medical_box > div{
                width:100%;
            }
             #medical_box_97 > div{
               height:100%;
            }
            #medical_box_97 .mode2-size_97{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_97 .mode3-size_97{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_97 .mode4-size_97{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_97 .mode5-size_97{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_97 .mode6-size_97{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_97 .mode7-size_97{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_97 .mode7-size_97 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_97 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_97 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_97{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_97 span:hover{
                color:!important;
            }
            .custom2_97{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_97 span:hover{
                color:;
            }
            #medical_box_97 .mode-btn1_97{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_97 .mode-btn1_97 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_97 .mode-btn2_97{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_97 .mode-btn2_97 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_97 .div-btn-title_main_97{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_97 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_97 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_98 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_98 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_98 .background-img{
                border-radius:;
            }
        #medical_box_98.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_98:hover{}
                    #medical_box_98:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_98 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_98  
                
                #medical_box_98 .new_medical_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;
            
                }
            
                #medical_box_98:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_98 .mode1-size_98{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_98 .new_medical_box > div{
                width:100%;
            }
             #medical_box_98 > div{
               height:100%;
            }
            #medical_box_98 .mode2-size_98{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_98 .mode3-size_98{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_98 .mode4-size_98{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_98 .mode5-size_98{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_98 .mode6-size_98{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_98 .mode7-size_98{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_98 .mode7-size_98 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_98 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_98 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_98{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_98 span:hover{
                color:!important;
            }
            .custom2_98{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_98 span:hover{
                color:;
            }
            #medical_box_98 .mode-btn1_98{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_98 .mode-btn1_98 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_98 .mode-btn2_98{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_98 .mode-btn2_98 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_98 .div-btn-title_main_98{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_98 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_98 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_99 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_99 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_99 .background-img{
                border-radius:;
            }
        #medical_box_99.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_99:hover{}
                    #medical_box_99:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_99 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_99  
                
                #medical_box_99 .new_medical_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;
            
                }
            
                #medical_box_99:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_99 .mode1-size_99{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_99 .new_medical_box > div{
                width:100%;
            }
             #medical_box_99 > div{
               height:100%;
            }
            #medical_box_99 .mode2-size_99{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_99 .mode3-size_99{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_99 .mode4-size_99{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_99 .mode5-size_99{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_99 .mode6-size_99{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_99 .mode7-size_99{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_99 .mode7-size_99 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_99 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_99 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_99{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_99 span:hover{
                color:!important;
            }
            .custom2_99{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_99 span:hover{
                color:;
            }
            #medical_box_99 .mode-btn1_99{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_99 .mode-btn1_99 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_99 .mode-btn2_99{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_99 .mode-btn2_99 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_99 .div-btn-title_main_99{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_99 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_99 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_101 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_101 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_101 .background-img{
                border-radius:;
            }
        #medical_box_101.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_101:hover{}
                    #medical_box_101:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_101 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_101  
                
                #medical_box_101 .new_medical_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;
            
                }
            
                #medical_box_101:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_101 .mode1-size_101{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_101 .new_medical_box > div{
                width:100%;
            }
             #medical_box_101 > div{
               height:100%;
            }
            #medical_box_101 .mode2-size_101{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_101 .mode3-size_101{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_101 .mode4-size_101{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_101 .mode5-size_101{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_101 .mode6-size_101{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_101 .mode7-size_101{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_101 .mode7-size_101 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_101 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_101 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_101{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_101 span:hover{
                color:!important;
            }
            .custom2_101{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_101 span:hover{
                color:;
            }
            #medical_box_101 .mode-btn1_101{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_101 .mode-btn1_101 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_101 .mode-btn2_101{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_101 .mode-btn2_101 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_101 .div-btn-title_main_101{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_101 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_101 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_102 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_102 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_102 .background-img{
                border-radius:;
            }
        #medical_box_102.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_102:hover{}
                    #medical_box_102:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_102 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_102  
                
                #medical_box_102 .new_medical_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;
            
                }
            
                #medical_box_102:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_102 .mode1-size_102{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_102 .new_medical_box > div{
                width:100%;
            }
             #medical_box_102 > div{
               height:100%;
            }
            #medical_box_102 .mode2-size_102{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_102 .mode3-size_102{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_102 .mode4-size_102{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_102 .mode5-size_102{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_102 .mode6-size_102{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_102 .mode7-size_102{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_102 .mode7-size_102 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_102 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_102 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_102{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_102 span:hover{
                color:!important;
            }
            .custom2_102{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_102 span:hover{
                color:;
            }
            #medical_box_102 .mode-btn1_102{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_102 .mode-btn1_102 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_102 .mode-btn2_102{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_102 .mode-btn2_102 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_102 .div-btn-title_main_102{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_102 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_102 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_103 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_103 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_103 .background-img{
                border-radius:;
            }
        #medical_box_103.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_103:hover{}
                    #medical_box_103:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_103 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_103  
                
                #medical_box_103 .new_medical_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;
            
                }
            
                #medical_box_103:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_103 .mode1-size_103{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_103 .new_medical_box > div{
                width:100%;
            }
             #medical_box_103 > div{
               height:100%;
            }
            #medical_box_103 .mode2-size_103{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_103 .mode3-size_103{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_103 .mode4-size_103{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_103 .mode5-size_103{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_103 .mode6-size_103{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_103 .mode7-size_103{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_103 .mode7-size_103 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_103 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_103 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_103{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_103 span:hover{
                color:!important;
            }
            .custom2_103{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_103 span:hover{
                color:;
            }
            #medical_box_103 .mode-btn1_103{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_103 .mode-btn1_103 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_103 .mode-btn2_103{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_103 .mode-btn2_103 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_103 .div-btn-title_main_103{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_103 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_103 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_104 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_104 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_104 .background-img{
                border-radius:;
            }
        #medical_box_104.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_104:hover{}
                    #medical_box_104:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_104 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_104  
                
                #medical_box_104 .new_medical_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;
            
                }
            
                #medical_box_104:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_104 .mode1-size_104{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_104 .new_medical_box > div{
                width:100%;
            }
             #medical_box_104 > div{
               height:100%;
            }
            #medical_box_104 .mode2-size_104{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_104 .mode3-size_104{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_104 .mode4-size_104{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_104 .mode5-size_104{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_104 .mode6-size_104{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_104 .mode7-size_104{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_104 .mode7-size_104 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_104 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_104 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_104{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_104 span:hover{
                color:!important;
            }
            .custom2_104{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_104 span:hover{
                color:;
            }
            #medical_box_104 .mode-btn1_104{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_104 .mode-btn1_104 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_104 .mode-btn2_104{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_104 .mode-btn2_104 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_104 .div-btn-title_main_104{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_104 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_104 .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://tarbod.ir/files/");
                 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_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_105:hover{}
                    #medical_box_105:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_105 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_105  
                
                #medical_box_105 .new_medical_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;
            
                }
            
                #medical_box_105:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #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%;
            }
        
            #medical_box_106 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 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_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_106:hover{}
                    #medical_box_106:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_106 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_106  
                
                #medical_box_106 .new_medical_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;
            
                }
            
                #medical_box_106:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #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_107 .new_medical_icon{
                background-image:url("https://tarbod.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_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_107:hover{}
                    #medical_box_107:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_107 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_107  
                
                #medical_box_107 .new_medical_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;
            
                }
            
                #medical_box_107:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #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:;
            }
            #medical_box_107 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .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%;
            }
        
            #medical_box_108 .new_medical_icon{
                background-image:url("https://tarbod.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_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_108:hover{}
                    #medical_box_108:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_108 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_108  
                
                #medical_box_108 .new_medical_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;
            
                }
            
                #medical_box_108:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #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:;
            }
            #medical_box_108 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .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_109 .new_medical_icon{
                background-image:url("https://tarbod.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_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_109:hover{}
                    #medical_box_109:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_109 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_109  
                
                #medical_box_109 .new_medical_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;
            
                }
            
                #medical_box_109:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #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:;
            }
            #medical_box_109 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .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_110 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_110 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_110 .background-img{
                border-radius:;
            }
        #medical_box_110.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_110:hover{}
                    #medical_box_110:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_110 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_110  
                
                #medical_box_110 .new_medical_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;
            
                }
            
                #medical_box_110:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_110 .mode1-size_110{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_110 .new_medical_box > div{
                width:100%;
            }
             #medical_box_110 > div{
               height:100%;
            }
            #medical_box_110 .mode2-size_110{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_110 .mode3-size_110{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_110 .mode4-size_110{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_110 .mode5-size_110{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_110 .mode6-size_110{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_110 .mode7-size_110{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_110 .mode7-size_110 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_110 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_110 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_110{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_110 span:hover{
                color:!important;
            }
            .custom2_110{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_110 span:hover{
                color:;
            }
            #medical_box_110 .mode-btn1_110{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_110 .mode-btn1_110 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_110 .mode-btn2_110{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_110 .mode-btn2_110 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_110 .div-btn-title_main_110{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_110 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_110 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_111 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_111 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_111 .background-img{
                border-radius:;
            }
        #medical_box_111.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_111:hover{}
                    #medical_box_111:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_111 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_111  
                
                #medical_box_111 .new_medical_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;
            
                }
            
                #medical_box_111:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_111 .mode1-size_111{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_111 .new_medical_box > div{
                width:100%;
            }
             #medical_box_111 > div{
               height:100%;
            }
            #medical_box_111 .mode2-size_111{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_111 .mode3-size_111{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_111 .mode4-size_111{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_111 .mode5-size_111{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_111 .mode6-size_111{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_111 .mode7-size_111{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_111 .mode7-size_111 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_111 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_111 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_111{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_111 span:hover{
                color:!important;
            }
            .custom2_111{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_111 span:hover{
                color:;
            }
            #medical_box_111 .mode-btn1_111{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_111 .mode-btn1_111 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_111 .mode-btn2_111{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_111 .mode-btn2_111 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_111 .div-btn-title_main_111{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_111 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_111 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_112 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_112 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_112 .background-img{
                border-radius:;
            }
        #medical_box_112.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_112:hover{}
                    #medical_box_112:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_112 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_112  
                
                #medical_box_112 .new_medical_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;
            
                }
            
                #medical_box_112:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_112 .mode1-size_112{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_112 .new_medical_box > div{
                width:100%;
            }
             #medical_box_112 > div{
               height:100%;
            }
            #medical_box_112 .mode2-size_112{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_112 .mode3-size_112{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_112 .mode4-size_112{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_112 .mode5-size_112{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_112 .mode6-size_112{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_112 .mode7-size_112{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_112 .mode7-size_112 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_112 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_112 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_112{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_112 span:hover{
                color:!important;
            }
            .custom2_112{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_112 span:hover{
                color:;
            }
            #medical_box_112 .mode-btn1_112{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_112 .mode-btn1_112 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_112 .mode-btn2_112{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_112 .mode-btn2_112 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_112 .div-btn-title_main_112{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_112 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_112 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_113 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_113 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_113 .background-img{
                border-radius:;
            }
        #medical_box_113.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_113:hover{}
                    #medical_box_113:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_113 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_113  
                
                #medical_box_113 .new_medical_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;
            
                }
            
                #medical_box_113:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_113 .mode1-size_113{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_113 .new_medical_box > div{
                width:100%;
            }
             #medical_box_113 > div{
               height:100%;
            }
            #medical_box_113 .mode2-size_113{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_113 .mode3-size_113{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_113 .mode4-size_113{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_113 .mode5-size_113{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_113 .mode6-size_113{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_113 .mode7-size_113{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_113 .mode7-size_113 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_113 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_113 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_113{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_113 span:hover{
                color:!important;
            }
            .custom2_113{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_113 span:hover{
                color:;
            }
            #medical_box_113 .mode-btn1_113{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_113 .mode-btn1_113 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_113 .mode-btn2_113{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_113 .mode-btn2_113 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_113 .div-btn-title_main_113{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_113 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_113 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_114 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_114 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_114 .background-img{
                border-radius:;
            }
        #medical_box_114.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_114:hover{}
                    #medical_box_114:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_114 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_114  
                
                #medical_box_114 .new_medical_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;
            
                }
            
                #medical_box_114:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_114 .mode1-size_114{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_114 .new_medical_box > div{
                width:100%;
            }
             #medical_box_114 > div{
               height:100%;
            }
            #medical_box_114 .mode2-size_114{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_114 .mode3-size_114{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_114 .mode4-size_114{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_114 .mode5-size_114{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_114 .mode6-size_114{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_114 .mode7-size_114{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_114 .mode7-size_114 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_114 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_114 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_114{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_114 span:hover{
                color:!important;
            }
            .custom2_114{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_114 span:hover{
                color:;
            }
            #medical_box_114 .mode-btn1_114{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_114 .mode-btn1_114 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_114 .mode-btn2_114{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_114 .mode-btn2_114 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_114 .div-btn-title_main_114{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_114 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_114 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_115 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_115 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_115 .background-img{
                border-radius:;
            }
        #medical_box_115.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_115:hover{}
                    #medical_box_115:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_115 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_115  
                
                #medical_box_115 .new_medical_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;
            
                }
            
                #medical_box_115:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_115 .mode1-size_115{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_115 .new_medical_box > div{
                width:100%;
            }
             #medical_box_115 > div{
               height:100%;
            }
            #medical_box_115 .mode2-size_115{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_115 .mode3-size_115{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_115 .mode4-size_115{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_115 .mode5-size_115{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_115 .mode6-size_115{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_115 .mode7-size_115{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_115 .mode7-size_115 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_115 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_115 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_115{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_115 span:hover{
                color:!important;
            }
            .custom2_115{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_115 span:hover{
                color:;
            }
            #medical_box_115 .mode-btn1_115{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_115 .mode-btn1_115 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_115 .mode-btn2_115{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_115 .mode-btn2_115 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_115 .div-btn-title_main_115{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_115 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_115 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_116 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_116 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_116 .background-img{
                border-radius:;
            }
        #medical_box_116.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_116:hover{}
                    #medical_box_116:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_116 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_116  
                
                #medical_box_116 .new_medical_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;
            
                }
            
                #medical_box_116:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_116 .mode1-size_116{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_116 .new_medical_box > div{
                width:100%;
            }
             #medical_box_116 > div{
               height:100%;
            }
            #medical_box_116 .mode2-size_116{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_116 .mode3-size_116{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_116 .mode4-size_116{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_116 .mode5-size_116{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_116 .mode6-size_116{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_116 .mode7-size_116{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_116 .mode7-size_116 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_116 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_116 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_116{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_116 span:hover{
                color:!important;
            }
            .custom2_116{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_116 span:hover{
                color:;
            }
            #medical_box_116 .mode-btn1_116{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_116 .mode-btn1_116 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_116 .mode-btn2_116{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_116 .mode-btn2_116 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_116 .div-btn-title_main_116{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_116 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_116 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_117 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_117 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_117 .background-img{
                border-radius:;
            }
        #medical_box_117.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_117:hover{}
                    #medical_box_117:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_117 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_117  
                
                #medical_box_117 .new_medical_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;
            
                }
            
                #medical_box_117:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_117 .mode1-size_117{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_117 .new_medical_box > div{
                width:100%;
            }
             #medical_box_117 > div{
               height:100%;
            }
            #medical_box_117 .mode2-size_117{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_117 .mode3-size_117{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_117 .mode4-size_117{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_117 .mode5-size_117{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_117 .mode6-size_117{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_117 .mode7-size_117{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_117 .mode7-size_117 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_117 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_117 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_117{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_117 span:hover{
                color:!important;
            }
            .custom2_117{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_117 span:hover{
                color:;
            }
            #medical_box_117 .mode-btn1_117{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_117 .mode-btn1_117 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_117 .mode-btn2_117{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_117 .mode-btn2_117 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_117 .div-btn-title_main_117{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_117 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_117 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_118 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_118 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_118 .background-img{
                border-radius:;
            }
        #medical_box_118.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_118:hover{}
                    #medical_box_118:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_118 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_118  
                
                #medical_box_118 .new_medical_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;
            
                }
            
                #medical_box_118:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_118 .mode1-size_118{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_118 .new_medical_box > div{
                width:100%;
            }
             #medical_box_118 > div{
               height:100%;
            }
            #medical_box_118 .mode2-size_118{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_118 .mode3-size_118{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_118 .mode4-size_118{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_118 .mode5-size_118{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_118 .mode6-size_118{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_118 .mode7-size_118{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_118 .mode7-size_118 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_118 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_118 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_118{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_118 span:hover{
                color:!important;
            }
            .custom2_118{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_118 span:hover{
                color:;
            }
            #medical_box_118 .mode-btn1_118{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_118 .mode-btn1_118 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_118 .mode-btn2_118{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_118 .mode-btn2_118 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_118 .div-btn-title_main_118{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_118 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_118 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_119 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_119 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_119 .background-img{
                border-radius:;
            }
        #medical_box_119.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_119:hover{}
                    #medical_box_119:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_119 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_119  
                
                #medical_box_119 .new_medical_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;
            
                }
            
                #medical_box_119:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_119 .mode1-size_119{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_119 .new_medical_box > div{
                width:100%;
            }
             #medical_box_119 > div{
               height:100%;
            }
            #medical_box_119 .mode2-size_119{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_119 .mode3-size_119{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_119 .mode4-size_119{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_119 .mode5-size_119{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_119 .mode6-size_119{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_119 .mode7-size_119{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_119 .mode7-size_119 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_119 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_119 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_119{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_119 span:hover{
                color:!important;
            }
            .custom2_119{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_119 span:hover{
                color:;
            }
            #medical_box_119 .mode-btn1_119{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_119 .mode-btn1_119 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_119 .mode-btn2_119{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_119 .mode-btn2_119 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_119 .div-btn-title_main_119{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_119 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_119 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_120 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_120 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_120 .background-img{
                border-radius:;
            }
        #medical_box_120.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_120:hover{}
                    #medical_box_120:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_120 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_120  
                
                #medical_box_120 .new_medical_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;
            
                }
            
                #medical_box_120:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_120 .mode1-size_120{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_120 .new_medical_box > div{
                width:100%;
            }
             #medical_box_120 > div{
               height:100%;
            }
            #medical_box_120 .mode2-size_120{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_120 .mode3-size_120{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_120 .mode4-size_120{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_120 .mode5-size_120{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_120 .mode6-size_120{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_120 .mode7-size_120{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_120 .mode7-size_120 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_120 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_120 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_120{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_120 span:hover{
                color:!important;
            }
            .custom2_120{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_120 span:hover{
                color:;
            }
            #medical_box_120 .mode-btn1_120{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_120 .mode-btn1_120 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_120 .mode-btn2_120{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_120 .mode-btn2_120 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_120 .div-btn-title_main_120{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_120 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_120 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_121 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_121 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_121 .background-img{
                border-radius:;
            }
        #medical_box_121.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_121:hover{}
                    #medical_box_121:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_121 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_121  
                
                #medical_box_121 .new_medical_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;
            
                }
            
                #medical_box_121:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_121 .mode1-size_121{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_121 .new_medical_box > div{
                width:100%;
            }
             #medical_box_121 > div{
               height:100%;
            }
            #medical_box_121 .mode2-size_121{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_121 .mode3-size_121{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_121 .mode4-size_121{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_121 .mode5-size_121{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_121 .mode6-size_121{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_121 .mode7-size_121{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_121 .mode7-size_121 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_121 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_121 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_121{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_121 span:hover{
                color:!important;
            }
            .custom2_121{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_121 span:hover{
                color:;
            }
            #medical_box_121 .mode-btn1_121{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_121 .mode-btn1_121 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_121 .mode-btn2_121{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_121 .mode-btn2_121 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_121 .div-btn-title_main_121{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_121 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_121 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_122 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_122 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_122 .background-img{
                border-radius:;
            }
        #medical_box_122.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_122:hover{}
                    #medical_box_122:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_122 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_122  
                
                #medical_box_122 .new_medical_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;
            
                }
            
                #medical_box_122:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_122 .mode1-size_122{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_122 .new_medical_box > div{
                width:100%;
            }
             #medical_box_122 > div{
               height:100%;
            }
            #medical_box_122 .mode2-size_122{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_122 .mode3-size_122{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_122 .mode4-size_122{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_122 .mode5-size_122{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_122 .mode6-size_122{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_122 .mode7-size_122{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_122 .mode7-size_122 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_122 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_122 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_122{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_122 span:hover{
                color:!important;
            }
            .custom2_122{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_122 span:hover{
                color:;
            }
            #medical_box_122 .mode-btn1_122{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_122 .mode-btn1_122 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_122 .mode-btn2_122{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_122 .mode-btn2_122 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_122 .div-btn-title_main_122{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_122 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_122 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_123 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_123 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_123 .background-img{
                border-radius:;
            }
        #medical_box_123.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_123:hover{}
                    #medical_box_123:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_123 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_123  
                
                #medical_box_123 .new_medical_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;
            
                }
            
                #medical_box_123:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_123 .mode1-size_123{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_123 .new_medical_box > div{
                width:100%;
            }
             #medical_box_123 > div{
               height:100%;
            }
            #medical_box_123 .mode2-size_123{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_123 .mode3-size_123{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_123 .mode4-size_123{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_123 .mode5-size_123{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_123 .mode6-size_123{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_123 .mode7-size_123{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_123 .mode7-size_123 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_123 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_123 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_123{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_123 span:hover{
                color:!important;
            }
            .custom2_123{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_123 span:hover{
                color:;
            }
            #medical_box_123 .mode-btn1_123{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_123 .mode-btn1_123 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_123 .mode-btn2_123{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_123 .mode-btn2_123 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_123 .div-btn-title_main_123{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_123 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_123 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_124 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_124 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_124 .background-img{
                border-radius:;
            }
        #medical_box_124.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_124:hover{}
                    #medical_box_124:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_124 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_124  
                
                #medical_box_124 .new_medical_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;
            
                }
            
                #medical_box_124:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_124 .mode1-size_124{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_124 .new_medical_box > div{
                width:100%;
            }
             #medical_box_124 > div{
               height:100%;
            }
            #medical_box_124 .mode2-size_124{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_124 .mode3-size_124{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_124 .mode4-size_124{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_124 .mode5-size_124{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_124 .mode6-size_124{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_124 .mode7-size_124{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_124 .mode7-size_124 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_124 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_124 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_124{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_124 span:hover{
                color:!important;
            }
            .custom2_124{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_124 span:hover{
                color:;
            }
            #medical_box_124 .mode-btn1_124{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_124 .mode-btn1_124 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_124 .mode-btn2_124{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_124 .mode-btn2_124 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_124 .div-btn-title_main_124{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_124 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_124 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_125 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_125 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_125 .background-img{
                border-radius:;
            }
        #medical_box_125.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_125:hover{}
                    #medical_box_125:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_125 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_125  
                
                #medical_box_125 .new_medical_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;
            
                }
            
                #medical_box_125:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_125 .mode1-size_125{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_125 .new_medical_box > div{
                width:100%;
            }
             #medical_box_125 > div{
               height:100%;
            }
            #medical_box_125 .mode2-size_125{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_125 .mode3-size_125{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_125 .mode4-size_125{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_125 .mode5-size_125{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_125 .mode6-size_125{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_125 .mode7-size_125{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_125 .mode7-size_125 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_125 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_125 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_125{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_125 span:hover{
                color:!important;
            }
            .custom2_125{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_125 span:hover{
                color:;
            }
            #medical_box_125 .mode-btn1_125{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_125 .mode-btn1_125 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_125 .mode-btn2_125{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_125 .mode-btn2_125 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_125 .div-btn-title_main_125{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_125 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_125 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_126 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_126 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_126 .background-img{
                border-radius:;
            }
        #medical_box_126.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_126:hover{}
                    #medical_box_126:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_126 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_126  
                
                #medical_box_126 .new_medical_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;
            
                }
            
                #medical_box_126:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_126 .mode1-size_126{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_126 .new_medical_box > div{
                width:100%;
            }
             #medical_box_126 > div{
               height:100%;
            }
            #medical_box_126 .mode2-size_126{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_126 .mode3-size_126{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_126 .mode4-size_126{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_126 .mode5-size_126{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_126 .mode6-size_126{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_126 .mode7-size_126{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_126 .mode7-size_126 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_126 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_126 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_126{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_126 span:hover{
                color:!important;
            }
            .custom2_126{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_126 span:hover{
                color:;
            }
            #medical_box_126 .mode-btn1_126{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_126 .mode-btn1_126 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_126 .mode-btn2_126{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_126 .mode-btn2_126 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_126 .div-btn-title_main_126{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_126 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_126 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_127 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_127 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_127 .background-img{
                border-radius:;
            }
        #medical_box_127.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_127:hover{}
                    #medical_box_127:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_127 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_127  
                
                #medical_box_127 .new_medical_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;
            
                }
            
                #medical_box_127:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_127 .mode1-size_127{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_127 .new_medical_box > div{
                width:100%;
            }
             #medical_box_127 > div{
               height:100%;
            }
            #medical_box_127 .mode2-size_127{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_127 .mode3-size_127{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_127 .mode4-size_127{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_127 .mode5-size_127{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_127 .mode6-size_127{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_127 .mode7-size_127{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_127 .mode7-size_127 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_127 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_127 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_127{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_127 span:hover{
                color:!important;
            }
            .custom2_127{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_127 span:hover{
                color:;
            }
            #medical_box_127 .mode-btn1_127{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_127 .mode-btn1_127 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_127 .mode-btn2_127{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_127 .mode-btn2_127 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_127 .div-btn-title_main_127{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_127 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_127 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_128 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_128 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_128 .background-img{
                border-radius:;
            }
        #medical_box_128.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_128:hover{}
                    #medical_box_128:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_128 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_128  
                
                #medical_box_128 .new_medical_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;
            
                }
            
                #medical_box_128:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_128 .mode1-size_128{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_128 .new_medical_box > div{
                width:100%;
            }
             #medical_box_128 > div{
               height:100%;
            }
            #medical_box_128 .mode2-size_128{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_128 .mode3-size_128{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_128 .mode4-size_128{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_128 .mode5-size_128{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_128 .mode6-size_128{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_128 .mode7-size_128{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_128 .mode7-size_128 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_128 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_128 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_128{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_128 span:hover{
                color:!important;
            }
            .custom2_128{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_128 span:hover{
                color:;
            }
            #medical_box_128 .mode-btn1_128{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_128 .mode-btn1_128 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_128 .mode-btn2_128{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_128 .mode-btn2_128 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_128 .div-btn-title_main_128{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_128 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_128 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_129 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_129 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_129 .background-img{
                border-radius:;
            }
        #medical_box_129.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_129:hover{}
                    #medical_box_129:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_129 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_129  
                
                #medical_box_129 .new_medical_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;
            
                }
            
                #medical_box_129:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_129 .mode1-size_129{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_129 .new_medical_box > div{
                width:100%;
            }
             #medical_box_129 > div{
               height:100%;
            }
            #medical_box_129 .mode2-size_129{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_129 .mode3-size_129{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_129 .mode4-size_129{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_129 .mode5-size_129{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_129 .mode6-size_129{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_129 .mode7-size_129{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_129 .mode7-size_129 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_129 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_129 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_129{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_129 span:hover{
                color:!important;
            }
            .custom2_129{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_129 span:hover{
                color:;
            }
            #medical_box_129 .mode-btn1_129{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_129 .mode-btn1_129 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_129 .mode-btn2_129{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_129 .mode-btn2_129 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_129 .div-btn-title_main_129{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_129 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_129 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_130 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_130 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_130 .background-img{
                border-radius:;
            }
        #medical_box_130.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_130:hover{}
                    #medical_box_130:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_130 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_130  
                
                #medical_box_130 .new_medical_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;
            
                }
            
                #medical_box_130:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_130 .mode1-size_130{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_130 .new_medical_box > div{
                width:100%;
            }
             #medical_box_130 > div{
               height:100%;
            }
            #medical_box_130 .mode2-size_130{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_130 .mode3-size_130{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_130 .mode4-size_130{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_130 .mode5-size_130{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_130 .mode6-size_130{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_130 .mode7-size_130{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_130 .mode7-size_130 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_130 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_130 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_130{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_130 span:hover{
                color:!important;
            }
            .custom2_130{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_130 span:hover{
                color:;
            }
            #medical_box_130 .mode-btn1_130{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_130 .mode-btn1_130 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_130 .mode-btn2_130{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_130 .mode-btn2_130 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_130 .div-btn-title_main_130{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_130 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_130 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_131 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_131 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_131 .background-img{
                border-radius:;
            }
        #medical_box_131.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_131:hover{}
                    #medical_box_131:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_131 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_131  
                
                #medical_box_131 .new_medical_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;
            
                }
            
                #medical_box_131:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_131 .mode1-size_131{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_131 .new_medical_box > div{
                width:100%;
            }
             #medical_box_131 > div{
               height:100%;
            }
            #medical_box_131 .mode2-size_131{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_131 .mode3-size_131{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_131 .mode4-size_131{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_131 .mode5-size_131{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_131 .mode6-size_131{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_131 .mode7-size_131{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_131 .mode7-size_131 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_131 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_131 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_131{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_131 span:hover{
                color:!important;
            }
            .custom2_131{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_131 span:hover{
                color:;
            }
            #medical_box_131 .mode-btn1_131{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_131 .mode-btn1_131 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_131 .mode-btn2_131{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_131 .mode-btn2_131 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_131 .div-btn-title_main_131{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_131 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_131 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_132 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_132 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_132 .background-img{
                border-radius:;
            }
        #medical_box_132.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_132:hover{}
                    #medical_box_132:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_132 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_132  
                
                #medical_box_132 .new_medical_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;
            
                }
            
                #medical_box_132:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_132 .mode1-size_132{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_132 .new_medical_box > div{
                width:100%;
            }
             #medical_box_132 > div{
               height:100%;
            }
            #medical_box_132 .mode2-size_132{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_132 .mode3-size_132{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_132 .mode4-size_132{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_132 .mode5-size_132{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_132 .mode6-size_132{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_132 .mode7-size_132{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_132 .mode7-size_132 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_132 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_132 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_132{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_132 span:hover{
                color:!important;
            }
            .custom2_132{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_132 span:hover{
                color:;
            }
            #medical_box_132 .mode-btn1_132{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_132 .mode-btn1_132 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_132 .mode-btn2_132{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_132 .mode-btn2_132 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_132 .div-btn-title_main_132{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_132 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_132 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_133 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_133 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_133 .background-img{
                border-radius:;
            }
        #medical_box_133.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_133:hover{}
                    #medical_box_133:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_133 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_133  
                
                #medical_box_133 .new_medical_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;
            
                }
            
                #medical_box_133:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_133 .mode1-size_133{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_133 .new_medical_box > div{
                width:100%;
            }
             #medical_box_133 > div{
               height:100%;
            }
            #medical_box_133 .mode2-size_133{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_133 .mode3-size_133{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_133 .mode4-size_133{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_133 .mode5-size_133{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_133 .mode6-size_133{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_133 .mode7-size_133{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_133 .mode7-size_133 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_133 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_133 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_133{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_133 span:hover{
                color:!important;
            }
            .custom2_133{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_133 span:hover{
                color:;
            }
            #medical_box_133 .mode-btn1_133{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_133 .mode-btn1_133 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_133 .mode-btn2_133{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_133 .mode-btn2_133 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_133 .div-btn-title_main_133{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_133 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_133 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_143 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_143 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_143 .background-img{
                border-radius:;
            }
        
                #medical_box_143 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_143.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_143:hover{}
                    #medical_box_143:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_143 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_143  
                
                #medical_box_143 .new_medical_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;
            
                }
            
                #medical_box_143:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_143 .mode1-size_143{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_143 .new_medical_box > div{
                width:100%;
            }
             #medical_box_143 > div{
               height:100%;
            }
            #medical_box_143 .mode2-size_143{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_143 .mode3-size_143{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_143 .mode4-size_143{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_143 .mode5-size_143{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_143 .mode6-size_143{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_143 .mode7-size_143{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_143 .mode7-size_143 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_143 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_143 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_143{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_143 span:hover{
                color:!important;
            }
            .custom2_143{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_143 span:hover{
                color:;
            }
            #medical_box_143 .mode-btn1_143{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_143 .mode-btn1_143 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_143 .mode-btn2_143{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_143 .mode-btn2_143 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_143 .div-btn-title_main_143{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_143 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_143 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_569 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_569 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_569 .background-img{
                border-radius:;
            }
        #medical_box_569.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_569:hover{}
                    #medical_box_569:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_569 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_569  
                
                #medical_box_569 .new_medical_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;
            
                }
            
                #medical_box_569:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_569 .mode1-size_569{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_569 .new_medical_box > div{
                width:100%;
            }
             #medical_box_569 > div{
               height:100%;
            }
            #medical_box_569 .mode2-size_569{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_569 .mode3-size_569{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_569 .mode4-size_569{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_569 .mode5-size_569{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_569 .mode6-size_569{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_569 .mode7-size_569{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_569 .mode7-size_569 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_569 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_569 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_569{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_569 span:hover{
                color:!important;
            }
            .custom2_569{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_569 span:hover{
                color:;
            }
            #medical_box_569 .mode-btn1_569{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_569 .mode-btn1_569 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_569 .mode-btn2_569{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_569 .mode-btn2_569 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_569 .div-btn-title_main_569{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_569 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_569 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_2 .new_medical_title_main{color:#000;font-weight:bold;font-size:32px;cursor:cell;justify-content:center;text-align:center;line-height:48px;}.module[data-id_page='9']:hover .new_medical_title_main{color:#810000 !important;}#module_new_medical_2 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:solid;}.module[data-id_page='9']:hover .new_medical_box_main{}
            #module_new_medical_2 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_2 .new_medical_module{
                    width:288px;
                    position:relative;
                    overflow:hidden;
                    margin-left:16px;
                    margin-bottom:16px;
                }
                #module_new_medical_2 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_2 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_2 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_2 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_2 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_2 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_2 .more-text {
                display: none;
            }
            #module_new_medical_2 .read-less-des {
                display: none;
            }
            #module_new_medical_2 .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_2{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_2 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_2 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_2 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_2 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_2 .swiper-container{
                width:1200px;
            }
            #module_new_medical_2 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_2 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_2 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_2 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            #module_new_medical_24 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#module_new_medical_24 .content_str{
				width:100%;
			}
            #module_new_medical_24 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_24 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_24 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_24 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_24 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_24 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_24 .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_24 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_24 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_24 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_24 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_24 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_24 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_24 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_517 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_517 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_517 .background-img{
                border-radius:;
            }
        #medical_box_517.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;z-index:-10;border-style:none;}#medical_box_82:hover{}
                    #medical_box_517:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_517 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_517  
                
                #medical_box_517 .new_medical_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;
            
                }
            
                #medical_box_517:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_517 .mode1-size_517{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_517 .new_medical_box > div{
                width:100%;
            }
             #medical_box_517 > div{
               height:100%;
            }
            #medical_box_517 .mode2-size_517{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_517 .mode3-size_517{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_517 .mode4-size_517{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_517 .mode5-size_517{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_517 .mode6-size_517{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_517 .mode7-size_517{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_517 .mode7-size_517 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_517 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_517 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_517{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_517 span:hover{
                color:!important;
            }
            .custom2_517{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_517 span:hover{
                color:;
            }
            #medical_box_517 .mode-btn1_517{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_517 .mode-btn1_517 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_517 .mode-btn2_517{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_517 .mode-btn2_517 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_517 .div-btn-title_main_517{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_517 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_517 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_519 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_519 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_519 .background-img{
                border-radius:;
            }
        #medical_box_519.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_84:hover{}
                    #medical_box_519:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_519 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_519  
                
                #medical_box_519 .new_medical_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;
            
                }
            
                #medical_box_519:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_519 .mode1-size_519{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_519 .new_medical_box > div{
                width:100%;
            }
             #medical_box_519 > div{
               height:100%;
            }
            #medical_box_519 .mode2-size_519{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_519 .mode3-size_519{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_519 .mode4-size_519{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_519 .mode5-size_519{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_519 .mode6-size_519{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_519 .mode7-size_519{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_519 .mode7-size_519 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_519 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_519 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_519{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_519 span:hover{
                color:!important;
            }
            .custom2_519{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_519 span:hover{
                color:;
            }
            #medical_box_519 .mode-btn1_519{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_519 .mode-btn1_519 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_519 .mode-btn2_519{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_519 .mode-btn2_519 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_519 .div-btn-title_main_519{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_519 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_519 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_520 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_520 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_520 .background-img{
                border-radius:;
            }
        #medical_box_520.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_85:hover{}
                    #medical_box_520:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_520 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_520  
                
                #medical_box_520 .new_medical_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;
            
                }
            
                #medical_box_520:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_520 .mode1-size_520{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_520 .new_medical_box > div{
                width:100%;
            }
             #medical_box_520 > div{
               height:100%;
            }
            #medical_box_520 .mode2-size_520{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_520 .mode3-size_520{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_520 .mode4-size_520{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_520 .mode5-size_520{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_520 .mode6-size_520{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_520 .mode7-size_520{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_520 .mode7-size_520 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_520 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_520 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_520{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_520 span:hover{
                color:!important;
            }
            .custom2_520{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_520 span:hover{
                color:;
            }
            #medical_box_520 .mode-btn1_520{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_520 .mode-btn1_520 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_520 .mode-btn2_520{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_520 .mode-btn2_520 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_520 .div-btn-title_main_520{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_520 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_520 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_521 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_521 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_521 .background-img{
                border-radius:;
            }
        #medical_box_521.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_86:hover{}
                    #medical_box_521:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_521 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_521  
                
                #medical_box_521 .new_medical_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;
            
                }
            
                #medical_box_521:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_521 .mode1-size_521{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_521 .new_medical_box > div{
                width:100%;
            }
             #medical_box_521 > div{
               height:100%;
            }
            #medical_box_521 .mode2-size_521{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_521 .mode3-size_521{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_521 .mode4-size_521{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_521 .mode5-size_521{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_521 .mode6-size_521{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_521 .mode7-size_521{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_521 .mode7-size_521 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_521 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_521 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_521{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_521 span:hover{
                color:!important;
            }
            .custom2_521{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_521 span:hover{
                color:;
            }
            #medical_box_521 .mode-btn1_521{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_521 .mode-btn1_521 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_521 .mode-btn2_521{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_521 .mode-btn2_521 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_521 .div-btn-title_main_521{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_521 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_521 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_522 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_522 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_522 .background-img{
                border-radius:;
            }
        #medical_box_522.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_87:hover{}
                    #medical_box_522:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_522 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_522  
                
                #medical_box_522 .new_medical_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;
            
                }
            
                #medical_box_522:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_522 .mode1-size_522{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_522 .new_medical_box > div{
                width:100%;
            }
             #medical_box_522 > div{
               height:100%;
            }
            #medical_box_522 .mode2-size_522{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_522 .mode3-size_522{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_522 .mode4-size_522{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_522 .mode5-size_522{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_522 .mode6-size_522{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_522 .mode7-size_522{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_522 .mode7-size_522 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_522 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_522 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_522{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_522 span:hover{
                color:!important;
            }
            .custom2_522{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_522 span:hover{
                color:;
            }
            #medical_box_522 .mode-btn1_522{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_522 .mode-btn1_522 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_522 .mode-btn2_522{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_522 .mode-btn2_522 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_522 .div-btn-title_main_522{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_522 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_522 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_523 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_523 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_523 .background-img{
                border-radius:;
            }
        #medical_box_523.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_88:hover{}
                    #medical_box_523:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_523 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_523  
                
                #medical_box_523 .new_medical_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;
            
                }
            
                #medical_box_523:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_523 .mode1-size_523{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_523 .new_medical_box > div{
                width:100%;
            }
             #medical_box_523 > div{
               height:100%;
            }
            #medical_box_523 .mode2-size_523{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_523 .mode3-size_523{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_523 .mode4-size_523{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_523 .mode5-size_523{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_523 .mode6-size_523{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_523 .mode7-size_523{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_523 .mode7-size_523 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_523 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_523 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_523{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_523 span:hover{
                color:!important;
            }
            .custom2_523{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_523 span:hover{
                color:;
            }
            #medical_box_523 .mode-btn1_523{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_523 .mode-btn1_523 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_523 .mode-btn2_523{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_523 .mode-btn2_523 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_523 .div-btn-title_main_523{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_523 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_523 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_524 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_524 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_524 .background-img{
                border-radius:;
            }
        #medical_box_524.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_89:hover{}
                    #medical_box_524:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_524 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_524  
                
                #medical_box_524 .new_medical_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;
            
                }
            
                #medical_box_524:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_524 .mode1-size_524{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_524 .new_medical_box > div{
                width:100%;
            }
             #medical_box_524 > div{
               height:100%;
            }
            #medical_box_524 .mode2-size_524{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_524 .mode3-size_524{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_524 .mode4-size_524{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_524 .mode5-size_524{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_524 .mode6-size_524{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_524 .mode7-size_524{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_524 .mode7-size_524 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_524 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_524 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_524{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_524 span:hover{
                color:!important;
            }
            .custom2_524{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_524 span:hover{
                color:;
            }
            #medical_box_524 .mode-btn1_524{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_524 .mode-btn1_524 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_524 .mode-btn2_524{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_524 .mode-btn2_524 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_524 .div-btn-title_main_524{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_524 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_524 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_525 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_525 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_525 .background-img{
                border-radius:;
            }
        #medical_box_525.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_90:hover{}
                    #medical_box_525:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_525 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_525  
                
                #medical_box_525 .new_medical_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;
            
                }
            
                #medical_box_525:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_525 .mode1-size_525{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_525 .new_medical_box > div{
                width:100%;
            }
             #medical_box_525 > div{
               height:100%;
            }
            #medical_box_525 .mode2-size_525{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_525 .mode3-size_525{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_525 .mode4-size_525{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_525 .mode5-size_525{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_525 .mode6-size_525{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_525 .mode7-size_525{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_525 .mode7-size_525 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_525 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_525 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_525{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_525 span:hover{
                color:!important;
            }
            .custom2_525{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_525 span:hover{
                color:;
            }
            #medical_box_525 .mode-btn1_525{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_525 .mode-btn1_525 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_525 .mode-btn2_525{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_525 .mode-btn2_525 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_525 .div-btn-title_main_525{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_525 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_525 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_526 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_526 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_526 .background-img{
                border-radius:;
            }
        #medical_box_526.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_91:hover{}
                    #medical_box_526:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_526 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_526  
                
                #medical_box_526 .new_medical_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;
            
                }
            
                #medical_box_526:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_526 .mode1-size_526{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_526 .new_medical_box > div{
                width:100%;
            }
             #medical_box_526 > div{
               height:100%;
            }
            #medical_box_526 .mode2-size_526{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_526 .mode3-size_526{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_526 .mode4-size_526{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_526 .mode5-size_526{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_526 .mode6-size_526{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_526 .mode7-size_526{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_526 .mode7-size_526 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_526 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_526 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_526{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_526 span:hover{
                color:!important;
            }
            .custom2_526{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_526 span:hover{
                color:;
            }
            #medical_box_526 .mode-btn1_526{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_526 .mode-btn1_526 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_526 .mode-btn2_526{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_526 .mode-btn2_526 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_526 .div-btn-title_main_526{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_526 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_526 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_527 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_527 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_527 .background-img{
                border-radius:;
            }
        #medical_box_527.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_92:hover{}
                    #medical_box_527:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_527 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_527  
                
                #medical_box_527 .new_medical_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;
            
                }
            
                #medical_box_527:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_527 .mode1-size_527{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_527 .new_medical_box > div{
                width:100%;
            }
             #medical_box_527 > div{
               height:100%;
            }
            #medical_box_527 .mode2-size_527{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_527 .mode3-size_527{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_527 .mode4-size_527{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_527 .mode5-size_527{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_527 .mode6-size_527{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_527 .mode7-size_527{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_527 .mode7-size_527 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_527 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_527 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_527{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_527 span:hover{
                color:!important;
            }
            .custom2_527{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_527 span:hover{
                color:;
            }
            #medical_box_527 .mode-btn1_527{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_527 .mode-btn1_527 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_527 .mode-btn2_527{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_527 .mode-btn2_527 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_527 .div-btn-title_main_527{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_527 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_527 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_528 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_528 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_528 .background-img{
                border-radius:;
            }
        #medical_box_528.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_93:hover{}
                    #medical_box_528:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_528 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_528  
                
                #medical_box_528 .new_medical_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;
            
                }
            
                #medical_box_528:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_528 .mode1-size_528{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_528 .new_medical_box > div{
                width:100%;
            }
             #medical_box_528 > div{
               height:100%;
            }
            #medical_box_528 .mode2-size_528{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_528 .mode3-size_528{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_528 .mode4-size_528{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_528 .mode5-size_528{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_528 .mode6-size_528{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_528 .mode7-size_528{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_528 .mode7-size_528 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_528 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_528 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_528{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_528 span:hover{
                color:!important;
            }
            .custom2_528{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_528 span:hover{
                color:;
            }
            #medical_box_528 .mode-btn1_528{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_528 .mode-btn1_528 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_528 .mode-btn2_528{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_528 .mode-btn2_528 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_528 .div-btn-title_main_528{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_528 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_528 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_529 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_529 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_529 .background-img{
                border-radius:;
            }
        
                #medical_box_529 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_529.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_94:hover{}
                    #medical_box_529:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_529 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_529  
                
                #medical_box_529 .new_medical_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;
            
                }
            
                #medical_box_529:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_529 .mode1-size_529{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_529 .new_medical_box > div{
                width:100%;
            }
             #medical_box_529 > div{
               height:100%;
            }
            #medical_box_529 .mode2-size_529{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_529 .mode3-size_529{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_529 .mode4-size_529{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_529 .mode5-size_529{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_529 .mode6-size_529{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_529 .mode7-size_529{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_529 .mode7-size_529 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_529 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_529 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_529{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_529 span:hover{
                color:!important;
            }
            .custom2_529{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_529 span:hover{
                color:;
            }
            #medical_box_529 .mode-btn1_529{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_529 .mode-btn1_529 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_529 .mode-btn2_529{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_529 .mode-btn2_529 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_529 .div-btn-title_main_529{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_529 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_529 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_530 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_530 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_530 .background-img{
                border-radius:;
            }
        #medical_box_530.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_95:hover{}
                    #medical_box_530:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_530 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_530  
                
                #medical_box_530 .new_medical_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;
            
                }
            
                #medical_box_530:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_530 .mode1-size_530{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_530 .new_medical_box > div{
                width:100%;
            }
             #medical_box_530 > div{
               height:100%;
            }
            #medical_box_530 .mode2-size_530{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_530 .mode3-size_530{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_530 .mode4-size_530{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_530 .mode5-size_530{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_530 .mode6-size_530{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_530 .mode7-size_530{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_530 .mode7-size_530 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_530 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_530 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_530{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_530 span:hover{
                color:!important;
            }
            .custom2_530{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_530 span:hover{
                color:;
            }
            #medical_box_530 .mode-btn1_530{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_530 .mode-btn1_530 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_530 .mode-btn2_530{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_530 .mode-btn2_530 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_530 .div-btn-title_main_530{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_530 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_530 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_531 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_531 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_531 .background-img{
                border-radius:;
            }
        #medical_box_531.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_96:hover{}
                    #medical_box_531:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_531 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_531  
                
                #medical_box_531 .new_medical_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;
            
                }
            
                #medical_box_531:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_531 .mode1-size_531{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_531 .new_medical_box > div{
                width:100%;
            }
             #medical_box_531 > div{
               height:100%;
            }
            #medical_box_531 .mode2-size_531{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_531 .mode3-size_531{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_531 .mode4-size_531{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_531 .mode5-size_531{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_531 .mode6-size_531{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_531 .mode7-size_531{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_531 .mode7-size_531 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_531 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_531 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_531{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_531 span:hover{
                color:!important;
            }
            .custom2_531{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_531 span:hover{
                color:;
            }
            #medical_box_531 .mode-btn1_531{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_531 .mode-btn1_531 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_531 .mode-btn2_531{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_531 .mode-btn2_531 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_531 .div-btn-title_main_531{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_531 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_531 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_532 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_532 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_532 .background-img{
                border-radius:;
            }
        #medical_box_532.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_97:hover{}
                    #medical_box_532:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_532 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_532  
                
                #medical_box_532 .new_medical_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;
            
                }
            
                #medical_box_532:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_532 .mode1-size_532{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_532 .new_medical_box > div{
                width:100%;
            }
             #medical_box_532 > div{
               height:100%;
            }
            #medical_box_532 .mode2-size_532{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_532 .mode3-size_532{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_532 .mode4-size_532{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_532 .mode5-size_532{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_532 .mode6-size_532{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_532 .mode7-size_532{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_532 .mode7-size_532 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_532 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_532 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_532{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_532 span:hover{
                color:!important;
            }
            .custom2_532{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_532 span:hover{
                color:;
            }
            #medical_box_532 .mode-btn1_532{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_532 .mode-btn1_532 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_532 .mode-btn2_532{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_532 .mode-btn2_532 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_532 .div-btn-title_main_532{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_532 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_532 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_533 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_533 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_533 .background-img{
                border-radius:;
            }
        #medical_box_533.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_98:hover{}
                    #medical_box_533:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_533 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_533  
                
                #medical_box_533 .new_medical_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;
            
                }
            
                #medical_box_533:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_533 .mode1-size_533{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_533 .new_medical_box > div{
                width:100%;
            }
             #medical_box_533 > div{
               height:100%;
            }
            #medical_box_533 .mode2-size_533{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_533 .mode3-size_533{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_533 .mode4-size_533{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_533 .mode5-size_533{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_533 .mode6-size_533{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_533 .mode7-size_533{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_533 .mode7-size_533 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_533 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_533 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_533{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_533 span:hover{
                color:!important;
            }
            .custom2_533{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_533 span:hover{
                color:;
            }
            #medical_box_533 .mode-btn1_533{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_533 .mode-btn1_533 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_533 .mode-btn2_533{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_533 .mode-btn2_533 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_533 .div-btn-title_main_533{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_533 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_533 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_534 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_534 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_534 .background-img{
                border-radius:;
            }
        #medical_box_534.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_99:hover{}
                    #medical_box_534:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_534 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_534  
                
                #medical_box_534 .new_medical_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;
            
                }
            
                #medical_box_534:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_534 .mode1-size_534{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_534 .new_medical_box > div{
                width:100%;
            }
             #medical_box_534 > div{
               height:100%;
            }
            #medical_box_534 .mode2-size_534{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_534 .mode3-size_534{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_534 .mode4-size_534{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_534 .mode5-size_534{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_534 .mode6-size_534{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_534 .mode7-size_534{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_534 .mode7-size_534 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_534 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_534 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_534{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_534 span:hover{
                color:!important;
            }
            .custom2_534{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_534 span:hover{
                color:;
            }
            #medical_box_534 .mode-btn1_534{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_534 .mode-btn1_534 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_534 .mode-btn2_534{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_534 .mode-btn2_534 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_534 .div-btn-title_main_534{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_534 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_534 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_535 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_535 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_535 .background-img{
                border-radius:;
            }
        #medical_box_535.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_101:hover{}
                    #medical_box_535:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_535 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_535  
                
                #medical_box_535 .new_medical_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;
            
                }
            
                #medical_box_535:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_535 .mode1-size_535{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_535 .new_medical_box > div{
                width:100%;
            }
             #medical_box_535 > div{
               height:100%;
            }
            #medical_box_535 .mode2-size_535{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_535 .mode3-size_535{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_535 .mode4-size_535{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_535 .mode5-size_535{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_535 .mode6-size_535{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_535 .mode7-size_535{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_535 .mode7-size_535 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_535 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_535 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_535{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_535 span:hover{
                color:!important;
            }
            .custom2_535{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_535 span:hover{
                color:;
            }
            #medical_box_535 .mode-btn1_535{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_535 .mode-btn1_535 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_535 .mode-btn2_535{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_535 .mode-btn2_535 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_535 .div-btn-title_main_535{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_535 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_535 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_536 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_536 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_536 .background-img{
                border-radius:;
            }
        #medical_box_536.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_102:hover{}
                    #medical_box_536:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_536 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_536  
                
                #medical_box_536 .new_medical_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;
            
                }
            
                #medical_box_536:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_536 .mode1-size_536{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_536 .new_medical_box > div{
                width:100%;
            }
             #medical_box_536 > div{
               height:100%;
            }
            #medical_box_536 .mode2-size_536{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_536 .mode3-size_536{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_536 .mode4-size_536{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_536 .mode5-size_536{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_536 .mode6-size_536{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_536 .mode7-size_536{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_536 .mode7-size_536 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_536 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_536 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_536{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_536 span:hover{
                color:!important;
            }
            .custom2_536{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_536 span:hover{
                color:;
            }
            #medical_box_536 .mode-btn1_536{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_536 .mode-btn1_536 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_536 .mode-btn2_536{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_536 .mode-btn2_536 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_536 .div-btn-title_main_536{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_536 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_536 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_537 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_537 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_537 .background-img{
                border-radius:;
            }
        #medical_box_537.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_103:hover{}
                    #medical_box_537:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_537 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_537  
                
                #medical_box_537 .new_medical_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;
            
                }
            
                #medical_box_537:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_537 .mode1-size_537{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_537 .new_medical_box > div{
                width:100%;
            }
             #medical_box_537 > div{
               height:100%;
            }
            #medical_box_537 .mode2-size_537{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_537 .mode3-size_537{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_537 .mode4-size_537{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_537 .mode5-size_537{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_537 .mode6-size_537{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_537 .mode7-size_537{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_537 .mode7-size_537 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_537 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_537 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_537{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_537 span:hover{
                color:!important;
            }
            .custom2_537{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_537 span:hover{
                color:;
            }
            #medical_box_537 .mode-btn1_537{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_537 .mode-btn1_537 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_537 .mode-btn2_537{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_537 .mode-btn2_537 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_537 .div-btn-title_main_537{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_537 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_537 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_538 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_538 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_538 .background-img{
                border-radius:;
            }
        #medical_box_538.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_104:hover{}
                    #medical_box_538:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_538 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_538  
                
                #medical_box_538 .new_medical_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;
            
                }
            
                #medical_box_538:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_538 .mode1-size_538{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_538 .new_medical_box > div{
                width:100%;
            }
             #medical_box_538 > div{
               height:100%;
            }
            #medical_box_538 .mode2-size_538{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_538 .mode3-size_538{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_538 .mode4-size_538{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_538 .mode5-size_538{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_538 .mode6-size_538{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_538 .mode7-size_538{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_538 .mode7-size_538 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_538 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_538 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_538{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_538 span:hover{
                color:!important;
            }
            .custom2_538{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_538 span:hover{
                color:;
            }
            #medical_box_538 .mode-btn1_538{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_538 .mode-btn1_538 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_538 .mode-btn2_538{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_538 .mode-btn2_538 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_538 .div-btn-title_main_538{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_538 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_538 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_539 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_539 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_539 .background-img{
                border-radius:;
            }
        #medical_box_539.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_105:hover{}
                    #medical_box_539:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_539 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_539  
                
                #medical_box_539 .new_medical_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;
            
                }
            
                #medical_box_539:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_539 .mode1-size_539{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_539 .new_medical_box > div{
                width:100%;
            }
             #medical_box_539 > div{
               height:100%;
            }
            #medical_box_539 .mode2-size_539{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_539 .mode3-size_539{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_539 .mode4-size_539{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_539 .mode5-size_539{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_539 .mode6-size_539{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_539 .mode7-size_539{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_539 .mode7-size_539 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_539 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_539 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_539{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_539 span:hover{
                color:!important;
            }
            .custom2_539{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_539 span:hover{
                color:;
            }
            #medical_box_539 .mode-btn1_539{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_539 .mode-btn1_539 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_539 .mode-btn2_539{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_539 .mode-btn2_539 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_539 .div-btn-title_main_539{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_539 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_539 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_540 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_540 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_540 .background-img{
                border-radius:;
            }
        #medical_box_540.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_106:hover{}
                    #medical_box_540:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_540 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_540  
                
                #medical_box_540 .new_medical_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;
            
                }
            
                #medical_box_540:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_540 .mode1-size_540{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_540 .new_medical_box > div{
                width:100%;
            }
             #medical_box_540 > div{
               height:100%;
            }
            #medical_box_540 .mode2-size_540{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_540 .mode3-size_540{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_540 .mode4-size_540{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_540 .mode5-size_540{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_540 .mode6-size_540{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_540 .mode7-size_540{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_540 .mode7-size_540 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_540 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_540 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_540{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_540 span:hover{
                color:!important;
            }
            .custom2_540{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_540 span:hover{
                color:;
            }
            #medical_box_540 .mode-btn1_540{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_540 .mode-btn1_540 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_540 .mode-btn2_540{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_540 .mode-btn2_540 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_540 .div-btn-title_main_540{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_540 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_540 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_541 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_541 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_541 .background-img{
                border-radius:;
            }
        #medical_box_541.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_107:hover{}
                    #medical_box_541:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_541 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_541  
                
                #medical_box_541 .new_medical_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;
            
                }
            
                #medical_box_541:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_541 .mode1-size_541{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_541 .new_medical_box > div{
                width:100%;
            }
             #medical_box_541 > div{
               height:100%;
            }
            #medical_box_541 .mode2-size_541{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_541 .mode3-size_541{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_541 .mode4-size_541{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_541 .mode5-size_541{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_541 .mode6-size_541{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_541 .mode7-size_541{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_541 .mode7-size_541 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_541 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_541 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_541{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_541 span:hover{
                color:!important;
            }
            .custom2_541{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_541 span:hover{
                color:;
            }
            #medical_box_541 .mode-btn1_541{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_541 .mode-btn1_541 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_541 .mode-btn2_541{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_541 .mode-btn2_541 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_541 .div-btn-title_main_541{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_541 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_541 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_542 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_542 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_542 .background-img{
                border-radius:;
            }
        #medical_box_542.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_108:hover{}
                    #medical_box_542:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_542 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_542  
                
                #medical_box_542 .new_medical_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;
            
                }
            
                #medical_box_542:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_542 .mode1-size_542{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_542 .new_medical_box > div{
                width:100%;
            }
             #medical_box_542 > div{
               height:100%;
            }
            #medical_box_542 .mode2-size_542{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_542 .mode3-size_542{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_542 .mode4-size_542{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_542 .mode5-size_542{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_542 .mode6-size_542{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_542 .mode7-size_542{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_542 .mode7-size_542 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_542 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_542 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_542{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_542 span:hover{
                color:!important;
            }
            .custom2_542{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_542 span:hover{
                color:;
            }
            #medical_box_542 .mode-btn1_542{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_542 .mode-btn1_542 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_542 .mode-btn2_542{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_542 .mode-btn2_542 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_542 .div-btn-title_main_542{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_542 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_542 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_543 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_543 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_543 .background-img{
                border-radius:;
            }
        #medical_box_543.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_109:hover{}
                    #medical_box_543:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_543 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_543  
                
                #medical_box_543 .new_medical_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;
            
                }
            
                #medical_box_543:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_543 .mode1-size_543{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_543 .new_medical_box > div{
                width:100%;
            }
             #medical_box_543 > div{
               height:100%;
            }
            #medical_box_543 .mode2-size_543{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_543 .mode3-size_543{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_543 .mode4-size_543{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_543 .mode5-size_543{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_543 .mode6-size_543{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_543 .mode7-size_543{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_543 .mode7-size_543 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_543 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_543 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_543{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_543 span:hover{
                color:!important;
            }
            .custom2_543{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_543 span:hover{
                color:;
            }
            #medical_box_543 .mode-btn1_543{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_543 .mode-btn1_543 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_543 .mode-btn2_543{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_543 .mode-btn2_543 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_543 .div-btn-title_main_543{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_543 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_543 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_544 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_544 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_544 .background-img{
                border-radius:;
            }
        #medical_box_544.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_110:hover{}
                    #medical_box_544:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_544 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_544  
                
                #medical_box_544 .new_medical_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;
            
                }
            
                #medical_box_544:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_544 .mode1-size_544{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_544 .new_medical_box > div{
                width:100%;
            }
             #medical_box_544 > div{
               height:100%;
            }
            #medical_box_544 .mode2-size_544{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_544 .mode3-size_544{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_544 .mode4-size_544{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_544 .mode5-size_544{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_544 .mode6-size_544{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_544 .mode7-size_544{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_544 .mode7-size_544 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_544 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_544 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_544{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_544 span:hover{
                color:!important;
            }
            .custom2_544{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_544 span:hover{
                color:;
            }
            #medical_box_544 .mode-btn1_544{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_544 .mode-btn1_544 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_544 .mode-btn2_544{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_544 .mode-btn2_544 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_544 .div-btn-title_main_544{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_544 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_544 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_545 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_545 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_545 .background-img{
                border-radius:;
            }
        #medical_box_545.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_111:hover{}
                    #medical_box_545:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_545 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_545  
                
                #medical_box_545 .new_medical_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;
            
                }
            
                #medical_box_545:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_545 .mode1-size_545{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_545 .new_medical_box > div{
                width:100%;
            }
             #medical_box_545 > div{
               height:100%;
            }
            #medical_box_545 .mode2-size_545{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_545 .mode3-size_545{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_545 .mode4-size_545{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_545 .mode5-size_545{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_545 .mode6-size_545{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_545 .mode7-size_545{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_545 .mode7-size_545 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_545 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_545 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_545{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_545 span:hover{
                color:!important;
            }
            .custom2_545{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_545 span:hover{
                color:;
            }
            #medical_box_545 .mode-btn1_545{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_545 .mode-btn1_545 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_545 .mode-btn2_545{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_545 .mode-btn2_545 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_545 .div-btn-title_main_545{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_545 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_545 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_547 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_547 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_547 .background-img{
                border-radius:;
            }
        #medical_box_547.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_113:hover{}
                    #medical_box_547:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_547 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_547  
                
                #medical_box_547 .new_medical_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;
            
                }
            
                #medical_box_547:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_547 .mode1-size_547{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_547 .new_medical_box > div{
                width:100%;
            }
             #medical_box_547 > div{
               height:100%;
            }
            #medical_box_547 .mode2-size_547{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_547 .mode3-size_547{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_547 .mode4-size_547{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_547 .mode5-size_547{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_547 .mode6-size_547{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_547 .mode7-size_547{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_547 .mode7-size_547 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_547 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_547 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_547{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_547 span:hover{
                color:!important;
            }
            .custom2_547{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_547 span:hover{
                color:;
            }
            #medical_box_547 .mode-btn1_547{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_547 .mode-btn1_547 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_547 .mode-btn2_547{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_547 .mode-btn2_547 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_547 .div-btn-title_main_547{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_547 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_547 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_548 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_548 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_548 .background-img{
                border-radius:;
            }
        #medical_box_548.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_114:hover{}
                    #medical_box_548:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_548 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_548  
                
                #medical_box_548 .new_medical_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;
            
                }
            
                #medical_box_548:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_548 .mode1-size_548{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_548 .new_medical_box > div{
                width:100%;
            }
             #medical_box_548 > div{
               height:100%;
            }
            #medical_box_548 .mode2-size_548{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_548 .mode3-size_548{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_548 .mode4-size_548{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_548 .mode5-size_548{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_548 .mode6-size_548{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_548 .mode7-size_548{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_548 .mode7-size_548 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_548 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_548 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_548{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_548 span:hover{
                color:!important;
            }
            .custom2_548{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_548 span:hover{
                color:;
            }
            #medical_box_548 .mode-btn1_548{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_548 .mode-btn1_548 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_548 .mode-btn2_548{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_548 .mode-btn2_548 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_548 .div-btn-title_main_548{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_548 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_548 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_549 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_549 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_549 .background-img{
                border-radius:;
            }
        #medical_box_549.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_115:hover{}
                    #medical_box_549:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_549 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_549  
                
                #medical_box_549 .new_medical_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;
            
                }
            
                #medical_box_549:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_549 .mode1-size_549{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_549 .new_medical_box > div{
                width:100%;
            }
             #medical_box_549 > div{
               height:100%;
            }
            #medical_box_549 .mode2-size_549{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_549 .mode3-size_549{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_549 .mode4-size_549{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_549 .mode5-size_549{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_549 .mode6-size_549{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_549 .mode7-size_549{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_549 .mode7-size_549 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_549 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_549 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_549{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_549 span:hover{
                color:!important;
            }
            .custom2_549{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_549 span:hover{
                color:;
            }
            #medical_box_549 .mode-btn1_549{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_549 .mode-btn1_549 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_549 .mode-btn2_549{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_549 .mode-btn2_549 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_549 .div-btn-title_main_549{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_549 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_549 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_550 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_550 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_550 .background-img{
                border-radius:;
            }
        #medical_box_550.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_116:hover{}
                    #medical_box_550:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_550 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_550  
                
                #medical_box_550 .new_medical_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;
            
                }
            
                #medical_box_550:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_550 .mode1-size_550{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_550 .new_medical_box > div{
                width:100%;
            }
             #medical_box_550 > div{
               height:100%;
            }
            #medical_box_550 .mode2-size_550{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_550 .mode3-size_550{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_550 .mode4-size_550{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_550 .mode5-size_550{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_550 .mode6-size_550{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_550 .mode7-size_550{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_550 .mode7-size_550 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_550 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_550 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_550{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_550 span:hover{
                color:!important;
            }
            .custom2_550{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_550 span:hover{
                color:;
            }
            #medical_box_550 .mode-btn1_550{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_550 .mode-btn1_550 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_550 .mode-btn2_550{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_550 .mode-btn2_550 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_550 .div-btn-title_main_550{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_550 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_550 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_551 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_551 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_551 .background-img{
                border-radius:;
            }
        #medical_box_551.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_117:hover{}
                    #medical_box_551:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_551 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_551  
                
                #medical_box_551 .new_medical_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;
            
                }
            
                #medical_box_551:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_551 .mode1-size_551{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_551 .new_medical_box > div{
                width:100%;
            }
             #medical_box_551 > div{
               height:100%;
            }
            #medical_box_551 .mode2-size_551{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_551 .mode3-size_551{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_551 .mode4-size_551{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_551 .mode5-size_551{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_551 .mode6-size_551{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_551 .mode7-size_551{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_551 .mode7-size_551 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_551 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_551 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_551{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_551 span:hover{
                color:!important;
            }
            .custom2_551{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_551 span:hover{
                color:;
            }
            #medical_box_551 .mode-btn1_551{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_551 .mode-btn1_551 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_551 .mode-btn2_551{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_551 .mode-btn2_551 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_551 .div-btn-title_main_551{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_551 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_551 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_552 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_552 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_552 .background-img{
                border-radius:;
            }
        #medical_box_552.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_118:hover{}
                    #medical_box_552:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_552 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_552  
                
                #medical_box_552 .new_medical_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;
            
                }
            
                #medical_box_552:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_552 .mode1-size_552{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_552 .new_medical_box > div{
                width:100%;
            }
             #medical_box_552 > div{
               height:100%;
            }
            #medical_box_552 .mode2-size_552{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_552 .mode3-size_552{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_552 .mode4-size_552{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_552 .mode5-size_552{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_552 .mode6-size_552{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_552 .mode7-size_552{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_552 .mode7-size_552 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_552 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_552 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_552{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_552 span:hover{
                color:!important;
            }
            .custom2_552{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_552 span:hover{
                color:;
            }
            #medical_box_552 .mode-btn1_552{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_552 .mode-btn1_552 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_552 .mode-btn2_552{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_552 .mode-btn2_552 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_552 .div-btn-title_main_552{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_552 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_552 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_553 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_553 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_553 .background-img{
                border-radius:;
            }
        #medical_box_553.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_119:hover{}
                    #medical_box_553:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_553 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_553  
                
                #medical_box_553 .new_medical_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;
            
                }
            
                #medical_box_553:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_553 .mode1-size_553{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_553 .new_medical_box > div{
                width:100%;
            }
             #medical_box_553 > div{
               height:100%;
            }
            #medical_box_553 .mode2-size_553{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_553 .mode3-size_553{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_553 .mode4-size_553{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_553 .mode5-size_553{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_553 .mode6-size_553{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_553 .mode7-size_553{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_553 .mode7-size_553 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_553 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_553 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_553{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_553 span:hover{
                color:!important;
            }
            .custom2_553{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_553 span:hover{
                color:;
            }
            #medical_box_553 .mode-btn1_553{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_553 .mode-btn1_553 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_553 .mode-btn2_553{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_553 .mode-btn2_553 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_553 .div-btn-title_main_553{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_553 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_553 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_554 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_554 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_554 .background-img{
                border-radius:;
            }
        #medical_box_554.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_120:hover{}
                    #medical_box_554:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_554 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_554  
                
                #medical_box_554 .new_medical_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;
            
                }
            
                #medical_box_554:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_554 .mode1-size_554{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_554 .new_medical_box > div{
                width:100%;
            }
             #medical_box_554 > div{
               height:100%;
            }
            #medical_box_554 .mode2-size_554{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_554 .mode3-size_554{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_554 .mode4-size_554{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_554 .mode5-size_554{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_554 .mode6-size_554{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_554 .mode7-size_554{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_554 .mode7-size_554 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_554 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_554 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_554{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_554 span:hover{
                color:!important;
            }
            .custom2_554{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_554 span:hover{
                color:;
            }
            #medical_box_554 .mode-btn1_554{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_554 .mode-btn1_554 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_554 .mode-btn2_554{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_554 .mode-btn2_554 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_554 .div-btn-title_main_554{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_554 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_554 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_555 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_555 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_555 .background-img{
                border-radius:;
            }
        #medical_box_555.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_121:hover{}
                    #medical_box_555:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_555 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_555  
                
                #medical_box_555 .new_medical_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;
            
                }
            
                #medical_box_555:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_555 .mode1-size_555{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_555 .new_medical_box > div{
                width:100%;
            }
             #medical_box_555 > div{
               height:100%;
            }
            #medical_box_555 .mode2-size_555{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_555 .mode3-size_555{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_555 .mode4-size_555{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_555 .mode5-size_555{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_555 .mode6-size_555{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_555 .mode7-size_555{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_555 .mode7-size_555 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_555 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_555 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_555{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_555 span:hover{
                color:!important;
            }
            .custom2_555{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_555 span:hover{
                color:;
            }
            #medical_box_555 .mode-btn1_555{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_555 .mode-btn1_555 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_555 .mode-btn2_555{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_555 .mode-btn2_555 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_555 .div-btn-title_main_555{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_555 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_555 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_556 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_556 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_556 .background-img{
                border-radius:;
            }
        #medical_box_556.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_122:hover{}
                    #medical_box_556:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_556 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_556  
                
                #medical_box_556 .new_medical_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;
            
                }
            
                #medical_box_556:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_556 .mode1-size_556{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_556 .new_medical_box > div{
                width:100%;
            }
             #medical_box_556 > div{
               height:100%;
            }
            #medical_box_556 .mode2-size_556{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_556 .mode3-size_556{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_556 .mode4-size_556{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_556 .mode5-size_556{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_556 .mode6-size_556{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_556 .mode7-size_556{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_556 .mode7-size_556 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_556 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_556 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_556{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_556 span:hover{
                color:!important;
            }
            .custom2_556{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_556 span:hover{
                color:;
            }
            #medical_box_556 .mode-btn1_556{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_556 .mode-btn1_556 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_556 .mode-btn2_556{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_556 .mode-btn2_556 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_556 .div-btn-title_main_556{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_556 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_556 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_557 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_557 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_557 .background-img{
                border-radius:;
            }
        #medical_box_557.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_123:hover{}
                    #medical_box_557:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_557 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_557  
                
                #medical_box_557 .new_medical_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;
            
                }
            
                #medical_box_557:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_557 .mode1-size_557{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_557 .new_medical_box > div{
                width:100%;
            }
             #medical_box_557 > div{
               height:100%;
            }
            #medical_box_557 .mode2-size_557{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_557 .mode3-size_557{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_557 .mode4-size_557{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_557 .mode5-size_557{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_557 .mode6-size_557{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_557 .mode7-size_557{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_557 .mode7-size_557 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_557 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_557 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_557{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_557 span:hover{
                color:!important;
            }
            .custom2_557{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_557 span:hover{
                color:;
            }
            #medical_box_557 .mode-btn1_557{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_557 .mode-btn1_557 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_557 .mode-btn2_557{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_557 .mode-btn2_557 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_557 .div-btn-title_main_557{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_557 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_557 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_558 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_558 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_558 .background-img{
                border-radius:;
            }
        #medical_box_558.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_124:hover{}
                    #medical_box_558:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_558 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_558  
                
                #medical_box_558 .new_medical_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;
            
                }
            
                #medical_box_558:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_558 .mode1-size_558{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_558 .new_medical_box > div{
                width:100%;
            }
             #medical_box_558 > div{
               height:100%;
            }
            #medical_box_558 .mode2-size_558{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_558 .mode3-size_558{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_558 .mode4-size_558{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_558 .mode5-size_558{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_558 .mode6-size_558{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_558 .mode7-size_558{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_558 .mode7-size_558 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_558 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_558 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_558{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_558 span:hover{
                color:!important;
            }
            .custom2_558{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_558 span:hover{
                color:;
            }
            #medical_box_558 .mode-btn1_558{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_558 .mode-btn1_558 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_558 .mode-btn2_558{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_558 .mode-btn2_558 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_558 .div-btn-title_main_558{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_558 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_558 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_559 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_559 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_559 .background-img{
                border-radius:;
            }
        #medical_box_559.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_125:hover{}
                    #medical_box_559:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_559 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_559  
                
                #medical_box_559 .new_medical_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;
            
                }
            
                #medical_box_559:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_559 .mode1-size_559{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_559 .new_medical_box > div{
                width:100%;
            }
             #medical_box_559 > div{
               height:100%;
            }
            #medical_box_559 .mode2-size_559{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_559 .mode3-size_559{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_559 .mode4-size_559{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_559 .mode5-size_559{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_559 .mode6-size_559{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_559 .mode7-size_559{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_559 .mode7-size_559 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_559 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_559 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_559{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_559 span:hover{
                color:!important;
            }
            .custom2_559{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_559 span:hover{
                color:;
            }
            #medical_box_559 .mode-btn1_559{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_559 .mode-btn1_559 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_559 .mode-btn2_559{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_559 .mode-btn2_559 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_559 .div-btn-title_main_559{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_559 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_559 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_560 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_560 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_560 .background-img{
                border-radius:;
            }
        #medical_box_560.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_126:hover{}
                    #medical_box_560:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_560 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_560  
                
                #medical_box_560 .new_medical_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;
            
                }
            
                #medical_box_560:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_560 .mode1-size_560{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_560 .new_medical_box > div{
                width:100%;
            }
             #medical_box_560 > div{
               height:100%;
            }
            #medical_box_560 .mode2-size_560{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_560 .mode3-size_560{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_560 .mode4-size_560{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_560 .mode5-size_560{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_560 .mode6-size_560{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_560 .mode7-size_560{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_560 .mode7-size_560 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_560 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_560 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_560{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_560 span:hover{
                color:!important;
            }
            .custom2_560{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_560 span:hover{
                color:;
            }
            #medical_box_560 .mode-btn1_560{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_560 .mode-btn1_560 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_560 .mode-btn2_560{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_560 .mode-btn2_560 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_560 .div-btn-title_main_560{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_560 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_560 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_561 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_561 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_561 .background-img{
                border-radius:;
            }
        #medical_box_561.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_127:hover{}
                    #medical_box_561:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_561 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_561  
                
                #medical_box_561 .new_medical_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;
            
                }
            
                #medical_box_561:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_561 .mode1-size_561{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_561 .new_medical_box > div{
                width:100%;
            }
             #medical_box_561 > div{
               height:100%;
            }
            #medical_box_561 .mode2-size_561{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_561 .mode3-size_561{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_561 .mode4-size_561{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_561 .mode5-size_561{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_561 .mode6-size_561{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_561 .mode7-size_561{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_561 .mode7-size_561 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_561 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_561 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_561{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_561 span:hover{
                color:!important;
            }
            .custom2_561{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_561 span:hover{
                color:;
            }
            #medical_box_561 .mode-btn1_561{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_561 .mode-btn1_561 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_561 .mode-btn2_561{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_561 .mode-btn2_561 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_561 .div-btn-title_main_561{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_561 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_561 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_562 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_562 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_562 .background-img{
                border-radius:;
            }
        #medical_box_562.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_128:hover{}
                    #medical_box_562:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_562 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_562  
                
                #medical_box_562 .new_medical_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;
            
                }
            
                #medical_box_562:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_562 .mode1-size_562{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_562 .new_medical_box > div{
                width:100%;
            }
             #medical_box_562 > div{
               height:100%;
            }
            #medical_box_562 .mode2-size_562{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_562 .mode3-size_562{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_562 .mode4-size_562{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_562 .mode5-size_562{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_562 .mode6-size_562{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_562 .mode7-size_562{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_562 .mode7-size_562 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_562 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_562 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_562{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_562 span:hover{
                color:!important;
            }
            .custom2_562{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_562 span:hover{
                color:;
            }
            #medical_box_562 .mode-btn1_562{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_562 .mode-btn1_562 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_562 .mode-btn2_562{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_562 .mode-btn2_562 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_562 .div-btn-title_main_562{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_562 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_562 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_563 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_563 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_563 .background-img{
                border-radius:;
            }
        #medical_box_563.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_129:hover{}
                    #medical_box_563:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_563 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_563  
                
                #medical_box_563 .new_medical_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;
            
                }
            
                #medical_box_563:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_563 .mode1-size_563{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_563 .new_medical_box > div{
                width:100%;
            }
             #medical_box_563 > div{
               height:100%;
            }
            #medical_box_563 .mode2-size_563{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_563 .mode3-size_563{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_563 .mode4-size_563{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_563 .mode5-size_563{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_563 .mode6-size_563{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_563 .mode7-size_563{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_563 .mode7-size_563 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_563 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_563 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_563{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_563 span:hover{
                color:!important;
            }
            .custom2_563{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_563 span:hover{
                color:;
            }
            #medical_box_563 .mode-btn1_563{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_563 .mode-btn1_563 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_563 .mode-btn2_563{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_563 .mode-btn2_563 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_563 .div-btn-title_main_563{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_563 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_563 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_564 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_564 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_564 .background-img{
                border-radius:;
            }
        #medical_box_564.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_130:hover{}
                    #medical_box_564:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_564 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_564  
                
                #medical_box_564 .new_medical_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;
            
                }
            
                #medical_box_564:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_564 .mode1-size_564{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_564 .new_medical_box > div{
                width:100%;
            }
             #medical_box_564 > div{
               height:100%;
            }
            #medical_box_564 .mode2-size_564{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_564 .mode3-size_564{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_564 .mode4-size_564{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_564 .mode5-size_564{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_564 .mode6-size_564{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_564 .mode7-size_564{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_564 .mode7-size_564 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_564 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_564 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_564{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_564 span:hover{
                color:!important;
            }
            .custom2_564{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_564 span:hover{
                color:;
            }
            #medical_box_564 .mode-btn1_564{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_564 .mode-btn1_564 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_564 .mode-btn2_564{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_564 .mode-btn2_564 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_564 .div-btn-title_main_564{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_564 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_564 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_565 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_565 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_565 .background-img{
                border-radius:;
            }
        #medical_box_565.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_131:hover{}
                    #medical_box_565:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_565 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_565  
                
                #medical_box_565 .new_medical_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;
            
                }
            
                #medical_box_565:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_565 .mode1-size_565{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_565 .new_medical_box > div{
                width:100%;
            }
             #medical_box_565 > div{
               height:100%;
            }
            #medical_box_565 .mode2-size_565{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_565 .mode3-size_565{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_565 .mode4-size_565{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_565 .mode5-size_565{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_565 .mode6-size_565{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_565 .mode7-size_565{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_565 .mode7-size_565 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_565 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_565 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_565{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_565 span:hover{
                color:!important;
            }
            .custom2_565{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_565 span:hover{
                color:;
            }
            #medical_box_565 .mode-btn1_565{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_565 .mode-btn1_565 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_565 .mode-btn2_565{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_565 .mode-btn2_565 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_565 .div-btn-title_main_565{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_565 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_565 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_566 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_566 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_566 .background-img{
                border-radius:;
            }
        #medical_box_566.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_132:hover{}
                    #medical_box_566:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_566 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_566  
                
                #medical_box_566 .new_medical_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;
            
                }
            
                #medical_box_566:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_566 .mode1-size_566{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_566 .new_medical_box > div{
                width:100%;
            }
             #medical_box_566 > div{
               height:100%;
            }
            #medical_box_566 .mode2-size_566{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_566 .mode3-size_566{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_566 .mode4-size_566{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_566 .mode5-size_566{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_566 .mode6-size_566{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_566 .mode7-size_566{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_566 .mode7-size_566 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_566 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_566 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_566{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_566 span:hover{
                color:!important;
            }
            .custom2_566{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_566 span:hover{
                color:;
            }
            #medical_box_566 .mode-btn1_566{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_566 .mode-btn1_566 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_566 .mode-btn2_566{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_566 .mode-btn2_566 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_566 .div-btn-title_main_566{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_566 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_566 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_567 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_567 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_567 .background-img{
                border-radius:;
            }
        #medical_box_567.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_133:hover{}
                    #medical_box_567:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_567 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_567  
                
                #medical_box_567 .new_medical_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;
            
                }
            
                #medical_box_567:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_567 .mode1-size_567{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_567 .new_medical_box > div{
                width:100%;
            }
             #medical_box_567 > div{
               height:100%;
            }
            #medical_box_567 .mode2-size_567{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_567 .mode3-size_567{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_567 .mode4-size_567{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_567 .mode5-size_567{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_567 .mode6-size_567{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_567 .mode7-size_567{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_567 .mode7-size_567 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_567 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_567 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_567{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_567 span:hover{
                color:!important;
            }
            .custom2_567{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_567 span:hover{
                color:;
            }
            #medical_box_567 .mode-btn1_567{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_567 .mode-btn1_567 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_567 .mode-btn2_567{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_567 .mode-btn2_567 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_567 .div-btn-title_main_567{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_567 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_567 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_568 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_568 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_568 .background-img{
                border-radius:;
            }
        
                #medical_box_568 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_568.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:270px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_143:hover{}
                    #medical_box_568:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_568 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_568  
                
                #medical_box_568 .new_medical_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;
            
                }
            
                #medical_box_568:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_568 .mode1-size_568{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_568 .new_medical_box > div{
                width:100%;
            }
             #medical_box_568 > div{
               height:100%;
            }
            #medical_box_568 .mode2-size_568{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_568 .mode3-size_568{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_568 .mode4-size_568{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_568 .mode5-size_568{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_568 .mode6-size_568{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_568 .mode7-size_568{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_568 .mode7-size_568 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_568 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_568 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_568{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_568 span:hover{
                color:!important;
            }
            .custom2_568{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_568 span:hover{
                color:;
            }
            #medical_box_568 .mode-btn1_568{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_568 .mode-btn1_568 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_568 .mode-btn2_568{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_568 .mode-btn2_568 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_568 .div-btn-title_main_568{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_568 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_568 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_24 .new_medical_title_main{color:#000;font-weight:bold;font-size:32px;cursor:cell;justify-content:center;text-align:center;line-height:48px;}.module[data-id_page='9']:hover .new_medical_title_main{color:#810000 !important;}#module_new_medical_24 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:solid;}.module[data-id_page='9']:hover .new_medical_box_main{}
            #module_new_medical_24 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_24 .new_medical_module{
                    width:288px;
                    position:relative;
                    overflow:hidden;
                    margin-left:16px;
                    margin-bottom:16px;
                }
                #module_new_medical_24 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_24 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_24 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_24 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_24 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_24 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_24 .more-text {
                display: none;
            }
            #module_new_medical_24 .read-less-des {
                display: none;
            }
            #module_new_medical_24 .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_24{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_24 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_24 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_24 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_24 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_24 .swiper-container{
                width:1200px;
            }
            #module_new_medical_24 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_24 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_24 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_24 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='7']{;background-color:#a8071a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:100px;padding-bottom:100px;border-style:none;border-top-width:1px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;}.module[data-id_page='7']:hover{;}.module[data-id_page='7'] .new_admin_layer{;}.module[data-id_page='7']:hover .new_admin_layer{;}.module[data-id_page='7']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='7'] > div{
                        position:relative;
                        z-index:12;
                    }
                        .module[data-id_page='7'] .new_admin_layer > div{
                            display:none;
                        }
                        .module[data-id_page='7']:hover .new_admin_layer > div{
                            display:block;
                        }
                    
                   .module[data-id_page='7'] .module[data-id_page='7'] .new_admin_layer{;}.module[data-id_page='7']:hover .new_admin_layer{;} 
                
                .module[data-id_page='7'] .new_admin_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 0ms linear;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                .module[data-id_page='7']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #layout_box_21.new_layout_module{background-color:#f5222d;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:5;grid-row-start:1;grid-row-end:3;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;border-radius:25px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:0px;border-left-width:1px;border-color:#9254de;}#layout_box_21:hover{}#layout_box_21 .new_layout_description{color:#f0f0f0;font-weight:500;font-size:14px;text-align:center;margin-top:30px;margin-bottom:0px;padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-style:none;border-top-width:1px;border-color:#555;}#layout_box_21:hover .new_layout_description{color:#000 !important;border-color:#555 !important;}#layout_box_21 .new_layout_title{color:#ffffff;font-weight:bold;font-size:30px;text-align:center;margin-top:100px;margin-bottom:0px;padding-right:60px;padding-left:60px;line-height:50px;}#layout_box_21:hover .new_layout_title{color:#ffd6e7 !important;}
                #layout_box_21 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_21 .new_layout_button{color:#000;font-weight:300;width:50px;height:50px;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_21 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layout_box_21:hover .background-img{
                        filter:brightness(0.7);
                    }
                
                #layout_box_21 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1629876594_قوطی ادویه5.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:brightness(0.7);
                }
            
                   #layout_box_21 .new_layout_layer{padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-top-right-radius:200px;border-top-left-radius:200px;border-bottom-right-radius:200px;border-bottom-left-radius:200px;}#layout_box_21:hover .new_layout_layer{} 
                
                #layout_box_21 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 1050ms ease;
                    background-color:rgba(114,46,209,.4);
                    display:flex;
                    
                            left: -100%;
                            top:0;
                        
                }
            
                #layout_box_21:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            left:0;
                        
                    background-color:rgba(114,46,209,.45);
                }
            
                #layout_box_21 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_21 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_21.cursor_box-layout{
                cursor:auto; 
            }
        
                #layout_box_36 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_36 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_36 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_36.cursor_box-layout{
                cursor:auto; 
            }
        
                #layout_box_35 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_35 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_35 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_35.cursor_box-layout{
                cursor:auto; 
            }
        
                #layout_box_34 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_34 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_34 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_34.cursor_box-layout{
                cursor:auto; 
            }
        
                #layout_box_33 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_33 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_33 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_33.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_20.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:2;grid-row-end:3;padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-radius:30px;border-style:none;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;}#layout_box_20:hover{}#layout_box_20 .new_layout_description{color:#ffffff;font-weight:500;font-size:13px;text-align:center;margin-top:0px;margin-bottom:0px;padding-top:10px;padding-bottom:0px;padding-right:40px;padding-left:0px;border-style:none;border-top-width:2px;border-color:#ffffff;}#layout_box_20:hover .new_layout_description{color:#000 !important;border-color:#141414 !important;}#layout_box_20 .new_layout_title{color:#ffffff;font-weight:bold;font-size:24px;text-align:center;margin-top:57px;margin-bottom:0px;padding-right:100px;padding-left:0px;line-height:38px;}#layout_box_20:hover .new_layout_title{color:#0050b3 !important;}
                #layout_box_20 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_20:hover .background-img{
                        filter:brightness(0.7);
                    }
                
                #layout_box_20 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1629016800_abcd.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:brightness(0.7);
                }
            
                   #layout_box_20 .new_layout_layer{padding-top:1px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-top-right-radius:30px;border-top-left-radius:30px;border-bottom-right-radius:30px;border-bottom-left-radius:30px;}#layout_box_20:hover .new_layout_layer{} 
                
                #layout_box_20 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 1050ms ease;
                    background-color:rgba(186,231,255,.4);
                    display:flex;
                    
                            bottom: -100%;
                            right:0;
                            top:unset;
                        
                }
            
                #layout_box_20:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            bottom:0;
                        
                    background-color:rgba(186,231,255,.45);
                }
            
                #layout_box_20 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_20 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_20.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_19.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;padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-radius:30px;border-style:none;border-top-width:3px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;}#layout_box_19:hover{}#layout_box_19 .new_layout_description{color:#000;font-weight:500;font-size:12px;text-align:justify;margin-top:0px;margin-bottom:0px;padding-top:10px;padding-bottom:0px;padding-right:35px;padding-left:0px;border-style:none;border-top-width:0px;border-color:#555;}#layout_box_19:hover .new_layout_description{color:#000 !important;border-color:#555 !important;}#layout_box_19 .new_layout_title{color:#ffffff;font-weight:bold;font-size:22px;text-align:center;margin-top:57px;margin-bottom:0px;padding-right:7px;padding-left:0px;line-height:38px;}#layout_box_19:hover .new_layout_title{color:#eaff8f !important;}
                #layout_box_19 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_19:hover .background-img{
                        filter:brightness(0.7);
                    }
                
                #layout_box_19 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1629019066_afg.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:brightness(0.7);
                }
            
                   #layout_box_19 .new_layout_layer{padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-top-right-radius:0px;border-top-left-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}#layout_box_19:hover .new_layout_layer{} 
                
                #layout_box_19 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 1050ms ease;
                    background-color:rgba(35,120,4,.4);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
            
                #layout_box_19:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(35,120,4,.45);
                }
            
                #layout_box_19 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_19 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_19.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_18.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:3;padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-radius:20px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:0px;border-left-width:1px;border-color:#9254de;}#layout_box_18:hover{}#layout_box_18 .new_layout_description{color:#120338;font-weight:500;font-size:15px;text-align:center;margin-top:20px;padding-right:20px;border-style:none;border-top-width:3px;border-color:#555;}#layout_box_18:hover .new_layout_description{color:#000 !important;border-color:#555 !important;}#layout_box_18 .new_layout_title{color:#ffffff;font-weight:bold;font-size:28px;text-align:center;margin-top:150px;padding-right:120px;}#layout_box_18:hover .new_layout_title{color:#faad14 !important;}
                #layout_box_18 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_18:hover .background-img{
                        filter:brightness(0.7);
                    }
                
                #layout_box_18 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1629876819_استند5.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:brightness(0.7);
                }
            
                   #layout_box_18 .new_layout_layer{padding-bottom:0px;padding-right:0px;padding-left:0px;border-top-right-radius:200px;border-top-left-radius:200px;border-bottom-right-radius:200px;border-bottom-left-radius:200px;}#layout_box_18:hover .new_layout_layer{} 
                
                #layout_box_18 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 1050ms ease;
                    background-color:rgba(255,197,61,.4);
                    display:flex;
                    
                            right: -100%;
                            top:0;
                        
                }
            
                #layout_box_18:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                            right:0;
                        
                    background-color:rgba(255,197,61,.45);
                }
            
                #layout_box_18 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_18 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_18.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_4 .new_layout_box_main{display:grid;width:1200px;height:350px;grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(2,1fr);column-gap:10px;row-gap:10px;visibility:visible;margin-top:10px;margin-bottom:10px;padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-radius:3px;border-style:none;border-top-width:0px;border-right-width:0px;border-bottom-width:0px;border-left-width:0px;}.module[data-id_page='7']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_4{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_4 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_4 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_4 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_4 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_4 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='6']{;background-color:#fff;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='6']:hover{;}.module[data-id_page='6']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='6'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='6']  
                
                .module[data-id_page='6'] .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='6']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #layout_box_16.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;grid-column-start:1;grid-column-end:4;grid-row-start:1;grid-row-end:9;border-style:none;}#layout_box_16:hover{}#layout_box_16 .new_layout_description{color:#000;font-weight:300;font-size:18px;line-height:38px;text-align:center;margin-top:10px;padding-right:40px;padding-left:27px;border-style:solid;border-color:#555;}#layout_box_16:hover .new_layout_description{}#layout_box_16 .new_layout_title{color:#a8071a;font-weight:bold;font-size:26px;text-align:right;margin-top:45px;padding-right:90px;}#layout_box_16:hover .new_layout_title{}
                #layout_box_16 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_16 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/1628931941_@4cb.jpg");
                }
            #layout_box_16 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:80px;height:80px;margin-top:10px;border-style:none;border-color:#000;}#layout_box_16:hover .new_layout_icon{}
                   #layout_box_16  
                
                #layout_box_16 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_16:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_16 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_16 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_16.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_17.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;grid-column-start:4;grid-column-end:6;grid-row-start:2;grid-row-end:8;border-style:none;}#layout_box_17:hover{}#layout_box_17 .new_layout_description{color:#ffadd2;font-weight:500;font-size:20px;line-height:36px;text-align:center;margin-top:40px;padding-right:30px;padding-left:30px;border-style:solid;border-color:#555;}#layout_box_17:hover .new_layout_description{}#layout_box_17 .new_layout_title{color:#fff;font-weight:bold;font-size:25px;text-align:center;margin-top:70px;padding-right:30px;}#layout_box_17:hover .new_layout_title{}
                #layout_box_17 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                    #layout_box_17:hover .background-img{
                        filter:brightness(0.3);
                    }
                
                #layout_box_17 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://tarbod.ir/files/1628575433_@4bb.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:brightness(0.3);
                }
            
                   #layout_box_17  
                
                #layout_box_17 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_17:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_17 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_17 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_17.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_3 .new_layout_box_main{display:grid;width:1200px;height:300px;grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(8,1fr);column-gap:5px;row-gap:5px;visibility:visible;border-style:none;}.module[data-id_page='1291']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_3{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_3 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_3 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_3 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_3 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_3 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        #layout_box_22.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:4;border-style:none;}#layout_box_386:hover{}#layout_box_22 .new_layout_description{color:#000;font-weight:300;font-size:16px;line-height:35px;text-align:right;margin-top:15px;border-style:solid;border-color:#555;}#layout_box_22:hover .new_layout_description{}#layout_box_22 .new_layout_title{color:#000;font-weight:500;font-size:21px;text-align:right;margin-top:20px;}#layout_box_22:hover .new_layout_title{}
                #layout_box_22 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                   #layout_box_22  
                
                #layout_box_22 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_22:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_22 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_22 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_22.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_23.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_387:hover{}#layout_box_23 .new_layout_description{color:#000;font-weight:300;font-size:13px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_23:hover .new_layout_description{}#layout_box_23 .new_layout_title{color:#000;font-weight:500;font-size:16px;text-align:right;padding-right:10px;}#layout_box_23:hover .new_layout_title{}
                #layout_box_23 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_23 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/icon/1591089301_q5.png");
                }
            #layout_box_23 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:30px;height:30px;border-style:none;border-color:#000;}#layout_box_23:hover .new_layout_icon{}
                   #layout_box_23  
                
                #layout_box_23 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_23:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_23 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_23 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_23.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_24.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:2;grid-row-end:3;border-style:none;}#layout_box_388:hover{}#layout_box_24 .new_layout_description{color:#000;font-weight:300;font-size:13px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_24:hover .new_layout_description{}#layout_box_24 .new_layout_title{color:#000;font-weight:500;font-size:16px;text-align:right;padding-right:10px;}#layout_box_24:hover .new_layout_title{}
                #layout_box_24 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_24 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/icon/1591089301_q7.png");
                }
            #layout_box_24 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:30px;height:30px;border-style:none;border-color:#000;}#layout_box_24:hover .new_layout_icon{}
                   #layout_box_24  
                
                #layout_box_24 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_24:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_24 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_24 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_24.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_25.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:3;grid-row-end:4;border-style:none;}#layout_box_389:hover{}#layout_box_25 .new_layout_description{color:#000;font-weight:300;font-size:13px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_25:hover .new_layout_description{}#layout_box_25 .new_layout_title{color:#000;font-weight:500;font-size:16px;text-align:right;padding-right:10px;}#layout_box_25:hover .new_layout_title{}
                #layout_box_25 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_25 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/icon/1591089301_q4.png");
                }
            #layout_box_25 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:30px;height:30px;border-style:none;border-color:#000;}#layout_box_25:hover .new_layout_icon{}
                   #layout_box_25  
                
                #layout_box_25 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_25:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_25 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_25 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_25.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_26.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_390:hover{}#layout_box_26 .new_layout_description{color:#000;font-weight:300;font-size:13px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_26:hover .new_layout_description{}#layout_box_26 .new_layout_title{color:#000;font-weight:500;font-size:16px;text-align:right;padding-right:10px;}#layout_box_26:hover .new_layout_title{}
                #layout_box_26 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_26 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/icon/1591089301_q3.png");
                }
            #layout_box_26 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:30px;height:30px;border-style:none;border-color:#000;}#layout_box_26:hover .new_layout_icon{}
                   #layout_box_26  
                
                #layout_box_26 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_26:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_26 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_26 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_26.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_27.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:2;grid-row-end:3;border-style:none;}#layout_box_391:hover{}#layout_box_27 .new_layout_description{color:#000;font-weight:300;font-size:13px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_27:hover .new_layout_description{}#layout_box_27 .new_layout_title{color:#000;font-weight:500;font-size:16px;text-align:right;padding-right:10px;}#layout_box_27:hover .new_layout_title{}
                #layout_box_27 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_27 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/icon/1591089301_q2.png");
                }
            #layout_box_27 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:30px;height:30px;border-style:none;border-color:#000;}#layout_box_27:hover .new_layout_icon{}
                   #layout_box_27  
                
                #layout_box_27 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_27:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_27 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_27 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_27.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_28.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:3;grid-row-end:4;border-style:none;}#layout_box_392:hover{}#layout_box_28 .new_layout_description{color:#000;font-weight:300;font-size:13px;text-align:justify;border-style:solid;border-color:#555;}#layout_box_28:hover .new_layout_description{}#layout_box_28 .new_layout_title{color:#000;font-weight:500;font-size:16px;text-align:right;padding-right:10px;}#layout_box_28:hover .new_layout_title{}
                #layout_box_28 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_28 .new_layout_icon{
                    background-image:url("https://tarbod.ir/files/icon/1591089301_q1.png");
                }
            #layout_box_28 .new_layout_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:30px;height:30px;border-style:none;border-color:#000;}#layout_box_28:hover .new_layout_icon{}
                   #layout_box_28  
                
                #layout_box_28 .new_layout_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #layout_box_28:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_28 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_28 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_28.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_5 .new_layout_box_main{display:grid;width:1200px;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);column-gap:20px;row-gap:20px;visibility:visible;margin-top:20px;margin-bottom:20px;border-style:none;}.module[data-id_page='1282']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_5{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_5 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_5 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_5 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_5 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_5 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='11']{;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;height:850px;padding-top:60px;padding-bottom:60px;border-style:none;}.module[data-id_page='11']:hover{;}.module[data-id_page='11'] .new_admin_layer{;}.module[data-id_page='11']:hover .new_admin_layer{;}.module[data-id_page='11']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='11'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='11']:hover .background-img{
                        filter:brightness(0.3);
                    }
                
                .module[data-id_page='11'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:brightness(0.3);
                }
            
                   .module[data-id_page='11'] .module[data-id_page='11'] .new_admin_layer{;}.module[data-id_page='11']:hover .new_admin_layer{;} 
                
                .module[data-id_page='11'] .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='11']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='11']{
                               background-image:url("https://tarbod.ir/files/pic/1640956709_Spices Page-min.jpg");
                           }
                       
            #module_new_medical_3 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#module_new_medical_3 .content_str{
				width:100%;
			}
            #module_new_medical_3 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_3 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_3 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_3 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_3 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_3 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_3 .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_3 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_3 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_3 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_3 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_3 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_3 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_3 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_5 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/1630214585_14.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_5 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_5 .background-img{
                border-radius:2px;
            }
        #medical_box_5 .new_medical_button{color:#ffffff;background-color:#810000;font-weight:500;font-size:14px;width:80px;height:35px;line-height:35px;text-align:center;margin-top:20px;border-radius:2px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#002766;box-shadow:0px 0px 0px 0px ;}#medical_box_5 .new_medical_button:hover{color:#ffffff !important;background-color:#595959 !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_5 .new_medical_title{color:#000000;font-weight:bold;font-size:20px;text-align:center;margin-top:30px;padding-right:0px;padding-left:0px;height:20px;line-height:20px;}#medical_box_25:hover .new_medical_title{color:#000000 !important;}
                #medical_box_5 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_5 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:90%;height:180px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_5:hover .new_medical_icon{}#medical_box_5.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:700px;border-radius:2px;border-style:none;}#medical_box_5:hover{}#medical_box_5 .new_medical_description{color:#777;font-weight:300;font-size:16px;line-height:27px;text-align:center;margin-top:20px;padding-right:45px;padding-left:45px;border-style:none;border-color:#555;}#medical_box_25:hover .new_medical_description{color:#777 !important;}
                   #medical_box_5 .new_medical_layer{}#medical_box_25:hover .new_medical_layer{} 
                
                #medical_box_5 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            bottom: -100%;
                            right:-100%;
                        
                }
            
                #medical_box_5:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            bottom:0;
                            right:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_5 .mode1-size_5{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_5 .new_medical_box > div{
                width:100%;
            }
             #medical_box_5 > div{
               height:100%;
            }
            #medical_box_5 .mode2-size_5{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_5 .mode3-size_5{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_5 .mode4-size_5{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_5 .mode5-size_5{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_5 .mode6-size_5{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_5 .mode7-size_5{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_5 .mode7-size_5 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_5 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_5 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_5{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_5 span:hover{
                color:!important;
            }
            .custom2_5{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_5 span:hover{
                color:;
            }
            #medical_box_5 .mode-btn1_5{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_5 .mode-btn1_5 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_5 .mode-btn2_5{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_5 .mode-btn2_5 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_5 .div-btn-title_main_5{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_5 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_5 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_10 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/1630218947_15.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_10 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_10 .background-img{
                border-radius:2px;
            }
        #medical_box_10 .new_medical_button{color:#ffffff;background-color:#810000;font-weight:500;font-size:14px;width:80px;height:35px;line-height:35px;text-align:center;margin-top:20px;border-radius:2px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#002766;box-shadow:0px 0px 0px 0px ;}#medical_box_10 .new_medical_button:hover{color:#ffffff !important;background-color:#595959 !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_10 .new_medical_title{color:#000000;font-weight:bold;font-size:20px;text-align:center;margin-top:30px;padding-right:0px;padding-left:0px;height:20px;line-height:20px;}#medical_box_30:hover .new_medical_title{color:#000000 !important;}
                #medical_box_10 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_10 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:90%;height:180px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_10:hover .new_medical_icon{}#medical_box_10.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:700px;padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-radius:2px;border-style:none;}#medical_box_10:hover{}#medical_box_10 .new_medical_description{color:#777;font-weight:300;font-size:16px;line-height:27px;text-align:center;margin-top:20px;padding-right:45px;padding-left:45px;border-style:none;border-color:#555;}#medical_box_30:hover .new_medical_description{color:#777 !important;}
                   #medical_box_10 .new_medical_layer{}#medical_box_30:hover .new_medical_layer{} 
                
                #medical_box_10 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            bottom: -100%;
                            right:0;
                            top:unset;
                        
                }
            
                #medical_box_10:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            bottom:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_10 .mode1-size_10{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_10 .new_medical_box > div{
                width:100%;
            }
             #medical_box_10 > div{
               height:100%;
            }
            #medical_box_10 .mode2-size_10{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_10 .mode3-size_10{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_10 .mode4-size_10{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_10 .mode5-size_10{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_10 .mode6-size_10{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_10 .mode7-size_10{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_10 .mode7-size_10 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_10 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_10 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_10{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_10 span:hover{
                color:!important;
            }
            .custom2_10{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_10 span:hover{
                color:;
            }
            #medical_box_10 .mode-btn1_10{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_10 .mode-btn1_10 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_10 .mode-btn2_10{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_10 .mode-btn2_10 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_10 .div-btn-title_main_10{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_10 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_10 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_9 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/1630141965_استند2.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_9 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_9 .background-img{
                border-radius:2px;
            }
        #medical_box_9 .new_medical_button{color:#ffffff;background-color:#810000;font-weight:500;font-size:14px;width:80px;height:35px;line-height:35px;text-align:center;margin-top:20px;border-radius:2px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#002766;box-shadow:0px 0px 0px 0px ;}#medical_box_9 .new_medical_button:hover{color:#ffffff !important;background-color:#595959 !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_9 .new_medical_title{color:#000000;font-weight:bold;font-size:17px;text-align:center;margin-top:30px;height:20px;line-height:20px;}#medical_box_9:hover .new_medical_title{color:#000000 !important;}
                #medical_box_9 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_9 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:90%;height:180px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_9:hover .new_medical_icon{}#medical_box_9.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:700px;border-radius:2px;border-style:none;}#medical_box_9:hover{}#medical_box_9 .new_medical_description{color:#777;font-weight:300;font-size:16px;line-height:27px;text-align:center;margin-top:20px;padding-right:45px;padding-left:45px;border-style:none;border-color:#555;}#medical_box_29:hover .new_medical_description{color:#777 !important;}
                   #medical_box_9 .new_medical_layer{}#medical_box_29:hover .new_medical_layer{} 
                
                #medical_box_9 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            top: -100%;
                            right:0;
                        
                }
            
                #medical_box_9:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            top:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_9 .mode1-size_9{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_9 .new_medical_box > div{
                width:100%;
            }
             #medical_box_9 > div{
               height:100%;
            }
            #medical_box_9 .mode2-size_9{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_9 .mode3-size_9{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_9 .mode4-size_9{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_9 .mode5-size_9{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_9 .mode6-size_9{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_9 .mode7-size_9{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_9 .mode7-size_9 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_9 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_9 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_9{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_9 span:hover{
                color:!important;
            }
            .custom2_9{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_9 span:hover{
                color:;
            }
            #medical_box_9 .mode-btn1_9{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_9 .mode-btn1_9 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_9 .mode-btn2_9{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_9 .mode-btn2_9 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_9 .div-btn-title_main_9{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_9 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_9 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_8 .new_medical_icon{
                background-image:url("https://tarbod.ir/files/1630142367_12.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_8 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_8 .background-img{
                border-radius:2px;
            }
        #medical_box_8 .new_medical_button{color:#ffffff;background-color:#810000;font-weight:500;font-size:14px;width:80px;height:35px;line-height:35px;text-align:center;margin-top:20px;border-radius:2px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#002766;box-shadow:0px 0px 0px 0px ;}#medical_box_8 .new_medical_button:hover{color:#ffffff !important;background-color:#595959 !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_8 .new_medical_title{color:#000000;font-weight:bold;font-size:20px;text-align:center;margin-top:30px;height:20px;line-height:20px;}#medical_box_28:hover .new_medical_title{color:#000000 !important;}
                #medical_box_8 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_8 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:90%;height:180px;margin-top:20px;border-style:none;border-color:#000;}#medical_box_8:hover .new_medical_icon{}#medical_box_8.new_medical_module{background-color:#ffffff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;height:700px;border-radius:2px;border-style:none;}#medical_box_8:hover{}#medical_box_8 .new_medical_description{color:#777;font-weight:300;font-size:16px;line-height:27px;text-align:center;margin-top:20px;padding-right:45px;padding-left:45px;border-style:none;border-color:#555;}#medical_box_28:hover .new_medical_description{color:#777 !important;}
                   #medical_box_8 .new_medical_layer{}#medical_box_28:hover .new_medical_layer{} 
                
                #medical_box_8 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 800ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            bottom: -100%;
                            right:0;
                            top:unset;
                        
                }
            
                #medical_box_8:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            bottom:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_8 .mode1-size_8{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_8 .new_medical_box > div{
                width:100%;
            }
             #medical_box_8 > div{
               height:100%;
            }
            #medical_box_8 .mode2-size_8{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_8 .mode3-size_8{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_8 .mode4-size_8{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_8 .mode5-size_8{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_8 .mode6-size_8{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_8 .mode7-size_8{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_8 .mode7-size_8 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_8 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_8 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_8{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_8 span:hover{
                color:!important;
            }
            .custom2_8{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_8 span:hover{
                color:;
            }
            #medical_box_8 .mode-btn1_8{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_8 .mode-btn1_8 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_8 .mode-btn2_8{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_8 .mode-btn2_8 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_8 .div-btn-title_main_8{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_8 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_8 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_3 .new_medical_title_main{color:#ffffff;font-weight:bold;font-size:40px;justify-content:center;text-align:center;margin-top:30px;height:30px;line-height:30px;}.module[data-id_page='11']:hover .new_medical_title_main{}#module_new_medical_3 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:50px;padding-top:30px;padding-bottom:30px;border-radius:5px;border-style:none;}.module[data-id_page='17']:hover .new_medical_box_main{}
            #module_new_medical_3 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_3 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_3 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_3 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_3 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_3 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_3 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_3 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_3 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_3 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_3 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_3 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_3 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_3 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_3 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_3 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_3 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_3 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_3 .new_medical_description{ 
                    height:0px;
                }
                
            
             #module_new_medical_3 .more-text {
                display: none;
            }
            #module_new_medical_3 .read-less-des {
                display: none;
            }
            #module_new_medical_3 .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_3{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_3 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_3 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_3 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_3 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_3 .swiper-container{
                width:1200px;
            }
            #module_new_medical_3 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_3 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_3 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_3 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            
            body{
                position: relative;
            }
            .public-header{
                position: relative;
            }
            .absolute-container{
                background-color: #ee273a;
                border-radius: 7px;
                position: fixed;
                top: 50%;
                left: 2%;
                transform: translateY(-50%);
                padding: 10px;
                z-index: 4900;
            }
            .social-absolute{
                position: relative;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0, 0, 0, .1);
                box-sizing: content-box;
                width: 24px;
                height: 24px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
            }
            .social-absolute img{
                width: 24px;
                height: 24px;
            }
            .absolute-tooltip{
                position: relative;
                transition: all 0.5s;
                border-radius: 0 7px 7px 0;
                font-size: 14px;
                overflow: hidden;
                white-space: nowrap;
            }
            .absolute-tooltip > span{
                padding: 10px 20px;
                display: block;
            }
            .tooltip-shake{
                display: block;
                width: 100%;
                height: 100%;
            }
            .tooltip-shake:before,
            .tooltip-shake:after {
                position: absolute;
                content: "";
                opacity: 0;
                transition: all 0.4s ease;
                color: #fff;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #3c5059;
                width: 0;
                padding: 0;
                font-size: 0.9rem;
                top: 50%;
                left: calc(24px + 32px);
                border-radius: 5px;
                transform: translateY(-50%);
                overflow: hidden;
                white-space: nowrap;
            }
            .tooltip-shake:after {
                border-width: 8px 10px 8px 0;
                border-style: solid;
                border-color: transparent #3c5059 transparent transparent;
                top: 50%;
                left: calc(24px + 24px);
                transform: translateY(-50%);
            }
            .tooltip-shake:hover::before,
            .tooltip-shake:hover::after {
                opacity: 1;
                overflow: hidden;
                white-space: nowrap;
                transform: translate(0, -50%);
            }
            .tooltip-shake:hover::before {
                width: max-content;
                padding: 10px 25px;
            }
            @keyframes shake {
                0% {
                    transform: rotate(2deg);
                }
                50% {
                    transform: rotate(-3deg);
                }
                70% {
                    transform: rotate(3deg);
                }
                100% {
                    transform: rotate(0deg);
                }
            }
            .social-absolute:hover {
                animation: shake 500ms ease-in-out forwards;
            }
            
                
                .public-header{
                    width: 100%;
                    background: #fafafa;
                    background-size: auto;
                    background-repeat: no-repeat;
                }
            
            
            .adv-banner-container{
                width: 100%;
                height: 10px;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .top-bar-container{
                width: 100%;
                min-height: 30px;
                height: 30px;
                background: #810000;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-bar{
                width: 1200px;
                height: 100%;
                margin: auto;
                padding: 0 8px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .top-item{
                height: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container{
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container img{
                width: 16px;
                height: 16px;
            }
            .info-container > span{
                display: inline-flex;
            }
            .top-info,
            .top-social{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-social{
                padding: 5px 0;
            }
            .top-social li a img{
                width: 32px;
                height: 32px;
            }
            .top-social li a span{
                font-size: 0px;
                font-weight: 200;
                color: #777;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: ;
            }
            
                .top-list:first-child{
                    margin-right : 0;
                }
                .top-list:last-child{
                    margin-left : 0;
                }
            
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #777;
                font-weight: bold;
                font-size: 15px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 14px;
                height: 14px;
                object-fit: contain;
            }
            .top-list:first-child a img,
            .top-list:first-child span img{
                margin-right: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #000;
                font-size: 0px;
                font-weight: 200;search
            }
            .top-nav-list:hover{
                background-color: #fff;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #fff;
                fill: #fff;
            }
            .top-nav-list .icon-title-part{
                padding-left: 5px;
            }
            .top-sub-nav > .top-sub-list a span,
            .top-sub-nav > .top-sub-list span{
                color: #000;
            }
            .top-sub-nav > .top-sub-list:hover a span,
            .top-sub-nav > .top-sub-list:hover span{
                color: #fff;
            }
            
            .top-sub-nav{
                flex-direction: column;
                justify-content: center;
                align-content: flex-start;
                position: absolute;
                z-index: 4999;
                min-width: 150px;
                width: max-content;
                background: #2c3e50;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translateY(-10px) scaleY(0.5);
                transform-origin: top;  
                border-radius: 0;
            }
            .top-nav-list:hover > .top-sub-nav{
                display: flex;
                top: 100%;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
        
                .top-nav-list:hover > .top-sub-nav{
                    right: 0;
                }
                .top-sub-list{
                    border-left: 5px solid  #f00;
                }
            
        
            .top-sub-list{
                width: 100%;
                padding: 8px 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-sub-list:hover{
                background: #fff;
            }
            .header-container{
                display: grid;
                width: 1200px;
                margin: auto;
                height: auto;
                grid-template-rows: 1fr 1fr;  
                grid-template-columns: 1fr 3fr 1fr;
                grid-template-areas: 
                    "top-1 top-2 top-3"
                    "bottom-1 bottom-2 bottom-3"; 
                padding-top: 8px;
                padding-bottom: 8px;
                padding-left: 8px;
                padding-right: 8px;
            }
            .top-section-1{
                grid-area: top-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-2{
                grid-area: top-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-3{
                grid-area: top-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            }
            .logo-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 0px  0px;
            }
            .logo-container img{
                display: block;
                width: 180px;
                height: 80px;
                max-width: 180px;
                max-height: 80px;
                object-fit: contain;
            }
            .nav-container{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                box-sizing: border-box;
                margin: 0 10px;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                background: #fafafa;
                box-sizing: border-box;
                border: px  solid  ;
                border-radius: 3px;
            }
            
                .nav-container > .navbar{
                    margin-left: calc(0px + 10px);
                }
            
        
            .max-height{
                height: 700px;
                overflow-x:hidden;
                overflow-y: auto;
                display:flex!important;
                flex-direction: column!important;
                justify-content: flex-start!important;
            }
            .nav-container .navbar .nav-list{
                padding: 10px 18px;
                min-height: 45px;
                position: relative;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list.active{
                background-color: ;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: #000000;
            }
            
            .nav-container .navbar .nav-list .icon-title-part{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .nav-container .navbar .nav-list .icon-title-part img{
                width: 24px;
                height: 24px;
                margin: 0 5px;
            }
            .nav-container .navbar .nav-list .overflow-menu{
                justify-content: center !important;
            }
            .nav-container .navbar .nav-list:hover{
                background-color: ;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list:hover a,
            .nav-container .navbar .nav-list:hover span{
                color:  ;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 14px;
                color: #810000;
            }
            .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
            .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                display: flex;
                top: 45px;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                display: flex;
                right: calc(100%  +  px);
                top: 0;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
                    
                    .nav-container .navbar.navbar-sub{
                        position: absolute;
                        z-index: 4999;
                        background: #fff;
                        clip: rect(1px, 1px, 1px, 1px);
                        opacity: 0.1;
                        transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                                    opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                        transform: translateY(-10px) scaleY(0.5);
                        transform-origin: top;  
                        border-radius: 0;
                    }
                    .nav-container .navbar.navbar-sub{
                        flex-direction: column;
                        justify-content: center;
                        align-content: flex-start;
                        min-width: 150px;
                        width: max-content;
                    }
                    .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
                    .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                        right: 0;
                    }
                    .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                        right: calc(100%  +  px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width:200px;
                        border-left: px solid ;
                    }
                
        
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu.arrow-bottom{
                transform: rotate(90deg);
            }
            
                .arrow-menu-container{
                    margin-right: 5px;
                }
                .arrow-icon-menu.arrow-right,
                .overflow-list .arrow-icon-menu.arrow-bottom{
                    transform: rotate(180deg);
                }
                .nav-container .navbar .nav-list:first-child:hover{
                    border-radius: 0 3px 3px 0;
                }
                .nav-container .navbar .nav-list:last-child:hover{
                    border-radius: 3px 0 0 3px;
                }
            
            
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #810000;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: ;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #fff;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 4999;
               /* display: none;*/
            } 
            /*.sub-navbar{
                width: 100%;
                height: 100%;
            }*/
            .nav-container .navbar.navbar-sub .nav-list img{
                width: 16px;
                height: 16px;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #000;
                font-size: 12px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #000;
            }
            .active{
                background-color: ;
            }
            .active a{
                color: #000000;
            }     
            .icon-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
            }
            .icon-container .icon-item{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
                box-sizing: border-box;
                min-height: 45px;
                margin: 0 5px;
            }
            
                
                .icon-container .icon-item:first-child{
                    margin-right: 0 !important;
                }
                .icon-container .icon-item:last-child{
                    margin-left: 0 !important;
                }
                
            
            
            .icon-container .icon-item a{
                border: 0px  solid  ;
            }
            .icon-container .icon-item.basket-icon{
                position: relative;
                color: #810000;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #fafafa;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                margin: 0 10px;
            }
            .icon-container .icon-item .icon-shortcut{
                color: #810000;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #fafafa;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
            
            .basket-shop{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                border-radius: 3px;
            }
            .icon-container .icon-item .icon-shortcut:hover svg,
            .icon-container .icon-item .icon-shortcut:hover .add-item-to-cart.open span
            {
                fill: #fff;
                color: #fff;
            }
            
                
                .icon-container .icon-item.basket-icon .add-item-to-cart{
                    color: #810000;
                    border-radius: 3px;
                    background: #fafafa;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .4s;
                    cursor: pointer;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                
                    .icon-container .icon-item.basket-icon .add-item-to-cart{
                        border-left: none !important;
                    }
                    .border-basket{
                        border-right: none !important;
                    }
                
                
                    .icon-container .icon-item:hover > span,
                    .icon-container .icon-item.login-icon:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover,
                    .icon-container .icon-item.login-icon .icon-shortcut:hover,
                    
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover .add-item-to-cart{
                       background: #fafafa;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open{
                        width: 45px;
                        border-radius: 0 3px 3px 0;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                    }
                    .icon-container .icon-item.basket-icon:hover .add-item-to-cart.open{
                        background: #fafafa;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open + .icon-shortcut{
                        border-radius: 3px 0 0 3px;
                    }
                    .icon-container .icon-item.lang-icon .icon-shortcut:hover{
                        background: #fafafa;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: #fafafa;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #810000;
            
            
            }
            .icon-container .icon-item.login-icon{
                position: relative;
            }
            /*.icon-container .icon-item.login-icon .icon-shortcut{
                width: 100%;
                height: 100%;
            }*/
            .icon-container .icon-item.login-icon .icon-login{
                width: 25px;
                height: 25px;
            }
            #div_profile_picture, 
            #div_profile_picture_metro {
                display: inline !important;
                width: 0 !important;
                height: 0 !important;
                line-height: unset !important;
            }
            #div_profile_picture .rShowLogin{
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 0;
                z-index: -1000;
            }
            #div_profile_picture .login-container{
                display: none !important;
            }
            #div_profile_picture #profile_picture,
            #div_profile_picture #profile_exit{
                display: none !important;
            }
        
                
                .icon-container .icon-item.login-icon{
                    color: #810000;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                        .search-container .search-input{
                            border-left: none !important;
                            border-radius: 0 3px 3px 0;
                        }
                        .search-container .search-btn{
                            border-right: none !important; 
                            border-radius: 3px 0 0 3px;
                        }
                    
                
                .search-container{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 45px;
                    padding: 0 6%;
                    transition: .8s;
                }
                .search-container .search-input{
                    width: 95%;
                    height: calc(2 * 0px + 45px);
                    padding: 5px 10px; 
                    background-color: #ffffff;
                    color: #ffffff;
                    border: 0px  solid  transparent;
                }
                .search-container .search-input::placeholder{
                    color: #aaa;
                }
                .search-container .search-btn{
                    width: 45px;
                    height: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    background-color: #fafafa;
                    box-sizing: border-box;
                    border: 0px  solid  transparent;
                }
                .search-container .search-btn svg{
                    width: 20px;
                    height: 20px;
                    fill: #810000;
                }
                .icon-container .search-icon{
                    display: none;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
            
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color: #fafafa !important;
            }
            .d-none{
                display: none !important;
            }
            .border-left-n{
                border-left: none !important;
            }
            .border-right-n{
                border-right: none !important;
            }
            .w-1200px{
                width: 1200px !important;
                margin: auto;
            }
            .lang-icon{
                position: relative;
            }
            .language-container .lang-btn{
                width: 25px;
                height: 25px;
            }
            .lang-list-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .lang-list{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .lang-list::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
                color: #fff;
            }
            .lang-nav .lang-li a{
                color: #fff;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #fff;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #e84118;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            /*---------------------------------------------------------------------------------*/
            .link-profile-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .link-profile-container .link-wrapper{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px 25px;
                background: #2c3e50;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #fff;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #fff;
            }
            .link-profile-container .link-wrapper::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #2c3e50;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 25px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: 50%;
                border: 1px  solid  #000;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #777 ;
            }
            #back_to_top svg{
                width: 25px;
                height: 25px;
                fill: #fff ;
            }
            #back_to_top img{
                width: 25px;
                height: 25px;
                fill: #fff ;
                object-fit:contain;
            }
            .search-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .basket-shop img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .lang-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .icon-login img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
        
                    
                    .header-container{
                        grid-template-rows: 1fr auto;  
                        grid-template-columns: 180px 5fr 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"
                            "bottom-1 bottom-1 bottom-1"; 
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .top-section-2{
                        justify-content: center;
                    }
                    .top-section-3{
                        justify-content: flex-end;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        padding: 15px 0;
                        justify-content: flex-start;
                    }
                    .nav-container .navbar{
                        justify-content: center;
                    }
                    .bottom-section-2{
                        justify-content: flex-start;
                    }
                    #module_footer_section_15{
;
width:100%;
padding-top:2%;
padding-right:5%;
padding-left:5%;
border-style:none;
}#module_footer_column_30{
;
width:50%;
border-style:none;
}#module_footer_items_126{
;
cursor:default;
line-height:3vw;
color:#ffffff;
font-weight:500;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_126:hover{
;
}#module_footer_column_31{
;
width:25%;
border-style:none;
}#module_footer_items_127{
;
cursor:default;
line-height:3vw;
color:#ffffff;
font-weight:500;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_127:hover{
;
}#module_footer_column_32{
;
width:25%;
border-style:none;
}#module_footer_items_132{
;
cursor:default;
line-height:3vw;
color:#ffffff;
font-weight:500;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_132:hover{
;
}#module_footer_section_16{
;
width:100%;
padding-top:1vw;
padding-right:5%;
padding-left:5%;
border-style:none;
}#module_footer_column_33{
;
width:50%;
margin-top:0px;
padding-left:3vw;
border-style:none;
}#module_footer_items_133{
;
cursor:default;
line-height:2vw;
color:#ffffff;
font-weight:200;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_133:hover{
;
}#module_footer_column_34{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_row_72{
;
margin-top:0px;
border-style:none;
}#module_footer_items_134{
;
cursor:default;
line-height:2vw;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0px;
}#module_footer_items_134:hover{
;
}#module_footer_items_135{
;
cursor:default;
line-height:2.5vw;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0px;
}#module_footer_items_135:hover{
;
}#module_footer_row_74{
;
margin-top:.75vw;
border-style:none;
}#module_footer_items_155{
;
cursor:default;
line-height:2.5%;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_155:hover{
;
}#module_footer_row_90{
;
margin-top:.75vw;
border-style:none;
}#module_footer_items_156{
;
cursor:default;
line-height:2.5vw;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_156:hover{
;
}#module_footer_row_91{
;
margin-top:.75vw;
border-style:none;
}#module_footer_items_157{
;
cursor:default;
line-height:2.5px;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_157:hover{
;
}#module_footer_column_35{
;
width:25%;
margin-top:0px;
border-style:none;
}#module_footer_row_75{
;
margin-top:0px;
border-style:none;
}#module_footer_items_136{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_136:hover{
;
}#module_footer_items_137{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:1.5vw;
}#module_footer_items_137:hover{
;
}#module_footer_items_138{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:1.5vw;
}#module_footer_items_138:hover{
;
}#module_footer_items_139{
;
cursor:pointer;
width:3.5vw;
height:3.5vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:1.5vw;
}#module_footer_items_139:hover{
;
}#module_footer_section_17{
;
width:100%;
padding-top:2%;
padding-right:5%;
padding-bottom:1%;
padding-left:5%;
border-style:none;
}#module_footer_column_36{
;
width:85%;
border-style:none;
}#module_footer_items_140{
;
cursor:default;
line-height:2vw;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_140:hover{
;
}#module_footer_column_37{
;
width:15%;
border-style:none;
}#module_footer_items_142{
;
cursor:default;
line-height:2vw;
color:#ffffff;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_142:hover{
;
}#public_footer_main_4{;background-color:#a8071a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_4:hover{;}#public_footer_main_4{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_4 > div{
                    position:relative;
                    z-index:12;
                }
                   #public_footer_main_4  
                
                #public_footer_main_4 .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_4: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;}