/**
 * 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;
}
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_569 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 0px;
                color: #000000;
                background-color: #fddb3a;
            }
            #description_569 .ti_ma_h a{color: #000000;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: #fddb3a;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
             .pr_text_pic:before{
                position: absolute;
                display: block;
                top: 24px;
                right: 4%;
                background-image:url(https://asgharabdoli.com/files/main/module/description/img/quote.png);
                content:"";
                background-size: contain;
                width: 26px;
                height: 26px;
                background-repeat: no-repeat;

             }
             .imgtext{
                width:100%;
                /*height:120px;*/
                border-radius:50%;
             }
             .imgtext2{
                width:100%;
             }
             .video_tag{width:100%;}

        
                #description_569 .container_box_2320{
                    background-color:#fddb3a;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:13px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_569 .font_title_box_0{
                    font-size: 20px;
                    padding:0 1rem;
                    text-align:center;
                    line-height:3;
                }
            
                .sidebar_box_0 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_0  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_0 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_0 a{
                    color:;
                }
                .sidebar_box_0 a:hover{
                    color:;
                }
                .sidebar_box_0 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2319{
                    background-color:;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:13px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_1{
                    font-size: 22px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_1 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_1  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_1 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_1 a{
                    color:;
                }
                .sidebar_box_1 a:hover{
                    color:;
                }
                .sidebar_box_1 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2318{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_2{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_2 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_2  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_2 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_2 a{
                    color:;
                }
                .sidebar_box_2 a:hover{
                    color:;
                }
                .sidebar_box_2 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2317{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_3{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_3 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_3  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_3 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_3 a{
                    color:;
                }
                .sidebar_box_3 a:hover{
                    color:;
                }
                .sidebar_box_3 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2316{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_4{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_4 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_4  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_4 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_4 a{
                    color:;
                }
                .sidebar_box_4 a:hover{
                    color:;
                }
                .sidebar_box_4 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2315{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_5{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_5 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_5  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_5 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_5 a{
                    color:;
                }
                .sidebar_box_5 a:hover{
                    color:;
                }
                .sidebar_box_5 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2314{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_6{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_6 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_6  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_6 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_6 a{
                    color:;
                }
                .sidebar_box_6 a:hover{
                    color:;
                }
                .sidebar_box_6 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2313{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_7{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_7 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_7  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_7 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_7 a{
                    color:;
                }
                .sidebar_box_7 a:hover{
                    color:;
                }
                .sidebar_box_7 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2312{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_8{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_8 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_8  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_8 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_8 a{
                    color:;
                }
                .sidebar_box_8 a:hover{
                    color:;
                }
                .sidebar_box_8 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_569 .container_box_2311{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_569 .font_title_box_9{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_9 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_9  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_9 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_9 a{
                    color:;
                }
                .sidebar_box_9 a:hover{
                    color:;
                }
                .sidebar_box_9 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
            #description_569 .public_center{
                border-spacing:0px;
            }
        #description_569{
                  padding-top:20px;
                }#description_569{
                        font-size:16px;
                }#description_569 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_569 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_569 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_569 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_569 .color_title{/*range title asli module*/
                            color:#000000 ;
                                }#description_569 .color_text{/*range text haye module  */
                            color:#000000;
                                }#description_569 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_569 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_569 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_569 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color:#fddb3a ;
                                }#description_569 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_569 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_569 .color_box_text{/*range text dakhele box ha! */
                            color:#000000 ;
                                }#description_569 .color_box_title{/*range title dakhele box ha!*/
                            color:#fddb3a ;
                                }.module[data-id_page='73']{;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='73']:hover{;}.module[data-id_page='73']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='73'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='73'] 
            
            .module[data-id_page='73'] .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='73'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='73']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_6 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_6 .content_str{
				width:100%;
			}
            #module_new_medical_6 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_6 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_6 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_6 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_6 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_6 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_6 .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_6 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_6 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_6 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_6 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_6 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_6 .new_medical_description a,#module_new_medical_6 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_6 .new_medical_description a:hover,#module_new_medical_6 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_6 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_6 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_28 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1655544786_asghar.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_28 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_28 .background-img{
                border-radius:2px;
            }
        
            #medical_box_28 .new_medical_icon{
                
            }
        #medical_box_28 .new_medical_title{color:#000000;background-color:#fddb3a;font-weight:bold;font-size:16px;text-align:center;margin-top:20px;height:50px;line-height:50px;}#medical_box_28:hover .new_medical_title{}
                #medical_box_28 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_28 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:200px;border-style:none;border-color:#000;}#medical_box_28:hover .new_medical_icon{}#medical_box_28.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:30px;padding-left:30px;border-radius:2px;border-style:none;}#medical_box_28:hover{}#medical_box_28 .new_medical_description{color:#777;font-weight:300;font-size:15px;line-height:30px;text-align:center;margin-top:10px;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_28:hover .new_medical_description{}
                #medical_box_28 .new_medical_layer{}#medical_box_28:hover .new_medical_layer{}
            
            #medical_box_28 .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: -100%; top:0;
            }

            #medical_box_28 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_28:hover .new_medical_layer {
                border-radius: 0 !important;
                right:0;
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_28 .mode1-size_28{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_28 .new_medical_box > div{
                width:100%;
            }
             #medical_box_28 > div{
               height:100%;
            }
            #medical_box_28 .mode2-size_28{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_28 .mode3-size_28{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_28 .mode4-size_28{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_28 .mode5-size_28{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_28 .mode6-size_28{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_28 .mode7-size_28{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_28 .mode7-size_28 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_28 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_28 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_28{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_28 span:hover{
                color:!important;
            }
            .custom2_28{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_28 span:hover{
                color:;
            }
            #medical_box_28 .mode-btn1_28{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_28 .mode-btn1_28 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_28 .mode-btn2_28{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_28 .mode-btn2_28 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_28 .div-btn-title_main_28{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_28 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_28 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_27 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1655544782_masoud.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_27 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_27 .background-img{
                border-radius:;
            }
        
            #medical_box_27 .new_medical_icon{
                
            }
        #medical_box_27 .new_medical_title{color:#000;background-color:#fddb3a;font-weight:bold;font-size:16px;text-align:center;margin-top:20px;height:50px;line-height:50px;}#medical_box_27:hover .new_medical_title{}
                #medical_box_27 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_27 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:200px;border-style:none;border-color:#000;}#medical_box_27:hover .new_medical_icon{}#medical_box_27.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:30px;padding-left:30px;border-style:none;}#medical_box_27:hover{}#medical_box_27 .new_medical_description{color:#777;font-weight:300;font-size:15px;line-height:30px;text-align:center;margin-top:10px;padding-right:31px;padding-left:31px;border-style:solid;border-color:#555;}#medical_box_6:hover .new_medical_description{}
                #medical_box_27 .new_medical_layer{}#medical_box_6:hover .new_medical_layer{}
            
            #medical_box_27 .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: -100%; top:0;
            }

            #medical_box_27 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_27:hover .new_medical_layer {
                border-radius: 0 !important;
                right:0;
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_27 .mode1-size_27{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_27 .new_medical_box > div{
                width:100%;
            }
             #medical_box_27 > div{
               height:100%;
            }
            #medical_box_27 .mode2-size_27{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_27 .mode3-size_27{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_27 .mode4-size_27{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_27 .mode5-size_27{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_27 .mode6-size_27{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_27 .mode7-size_27{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_27 .mode7-size_27 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_27 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_27 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_27{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_27 span:hover{
                color:!important;
            }
            .custom2_27{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_27 span:hover{
                color:;
            }
            #medical_box_27 .mode-btn1_27{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_27 .mode-btn1_27 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_27 .mode-btn2_27{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_27 .mode-btn2_27 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_27 .div-btn-title_main_27{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_27 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_27 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_26 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1655544784_jamalinejad.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_26 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_26 .background-img{
                border-radius:;
            }
        
            #medical_box_26 .new_medical_icon{
                
            }
        #medical_box_26 .new_medical_title{color:#000;background-color:#fddb3a;font-weight:bold;font-size:16px;text-align:center;margin-top:20px;height:50px;line-height:50px;}#medical_box_26:hover .new_medical_title{}
                #medical_box_26 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_26 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:200px;border-style:none;border-color:#000;}#medical_box_26:hover .new_medical_icon{}#medical_box_26.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:30px;padding-left:30px;border-style:none;}#medical_box_26:hover{}#medical_box_26 .new_medical_description{color:#777;font-weight:300;font-size:15px;line-height:30px;text-align:center;margin-top:10px;padding-right:31px;padding-left:31px;border-style:solid;border-color:#555;}#medical_box_6:hover .new_medical_description{}
                #medical_box_26 .new_medical_layer{}#medical_box_6:hover .new_medical_layer{}
            
            #medical_box_26 .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: -100%; top:0;
            }

            #medical_box_26 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_26:hover .new_medical_layer {
                border-radius: 0 !important;
                right:0;
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_26 .mode1-size_26{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_26 .new_medical_box > div{
                width:100%;
            }
             #medical_box_26 > div{
               height:100%;
            }
            #medical_box_26 .mode2-size_26{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_26 .mode3-size_26{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_26 .mode4-size_26{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_26 .mode5-size_26{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_26 .mode6-size_26{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_26 .mode7-size_26{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_26 .mode7-size_26 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_26 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_26 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_26{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_26 span:hover{
                color:!important;
            }
            .custom2_26{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_26 span:hover{
                color:;
            }
            #medical_box_26 .mode-btn1_26{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_26 .mode-btn1_26 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_26 .mode-btn2_26{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_26 .mode-btn2_26 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_26 .div-btn-title_main_26{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_26 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_26 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_6 .new_medical_title_main{color:#42474c;font-weight:500;font-size:25px;justify-content:center;text-align:center;margin-top:50px;}.module[data-id_page='73']:hover .new_medical_title_main{}#module_new_medical_6 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='73']:hover .new_medical_box_main{}
            #module_new_medical_6 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_6 .new_medical_module{
                    width:380px;
                    position:relative;
                    overflow:hidden;
                    margin-left:30px;
                    margin-bottom:10px;
                }
                #module_new_medical_6 .medical_box_main_animation_trigger{
                    margin-left:30px;
                    margin-bottom:10px;
                }
                #module_new_medical_6 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_6 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_6 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_6 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_6 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_6 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_6 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_6 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_6{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_6 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_6 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_6 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_6 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_6 .swiper-container{
                width:1200px;
            }
            #module_new_medical_6 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_6 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_6 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_6 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='75']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;height:400px;margin-top:50px;padding-top:40px;border-style:none;}.module[data-id_page='75']:hover{;}.module[data-id_page='75']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='75'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='75']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='75'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='75'] 
            
            .module[data-id_page='75'] .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='75'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='75']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='75']{
                               background-image:url("https://asgharabdoli.com/files/cover/1724838486_4.jpg");
                           }
                       #layoutfull_box_18.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:4vw;padding-bottom:4vw;padding-right:4vw;padding-left:4vw;border-style:none;}#layoutfull_box_18:hover{}#layoutfull_box_18 .new_layoutfull_description{color:#ffffff;font-weight:500;font-size:1.5vw;line-height:2vw;text-align:center;margin-top:0.5vw;border-style:solid;border-color:#555;}#layoutfull_box_18:hover .new_layoutfull_description{}#layoutfull_box_18 .new_layoutfull_button{color:#fddb3a;font-weight:200;font-size:1.3vw;width:12vw;height:3.3vw;line-height:3.3vw;text-align:center;margin-top:3vw;margin-bottom:2vw;border-radius:0.75vw;border-style:solid;border-top-width:0.2vw;border-right-width:0.2vw;border-bottom-width:0.2vw;border-left-width:0.2vw;border-color:#fddb3a;box-shadow:px px px px ;}#layoutfull_box_18 .new_layoutfull_button:hover{color:#000000 !important;background-color:#ffffff !important;box-shadow:px px px px  !important;}#layoutfull_box_18 .new_layoutfull_title{color:#fddb3a;font-weight:bold;font-size:1.75vw;text-align:center;line-height:5vw;line-height:5vw;}#layoutfull_box_18:hover .new_layoutfull_title{}
                #layoutfull_box_18 .new_layoutfull_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_18 
            
            #layoutfull_box_18 .new_layoutfull_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;
        
            }

            #layoutfull_box_18 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_18:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_18 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_18.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_18 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_9{
                overflow:hidden;
            }
            #module_new_layoutfull_9 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_9 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_9 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_568 .ti_ma_h{
                width:1200px;
                text-align: right;
                margin: auto;
                padding: 0 10px;
                font-size:22px;
                line-height: 80px;
                color: ;
                background-color: ;
            }
            #description_568 .ti_ma_h a{color: ;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: ;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
                #description_568 .container_box_2310{
                    background-color:#fddb3a;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:13px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_568 .font_title_box_0{
                    font-size: 20px;
                    padding:0 1rem;
                    text-align:center;
                    line-height:3;
                }
            
            #description_568 .public_center{
                border-spacing:0px;
            }
        #description_568{
                  padding-top:50px;
                }#description_568{
                  padding-bottom:50px;
                }#description_568{
                        font-size:16px;
                }#description_568 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_568 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_568 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_568 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_568 .color_title{/*range title asli module*/
                            color: ;
                                }#description_568 .color_text{/*range text haye module  */
                            color:;
                                }#description_568 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_568 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_568 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_568 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_568 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_568 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_568 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_568 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='1073']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:30px;border-style:none;}.module[data-id_page='1073']:hover{;}.module[data-id_page='1073']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1073'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1073'] 
            
            .module[data-id_page='1073'] .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='1073'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1073']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_252 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_252 .content_str{
				width:100%;
			}
            #module_new_medical_252 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_252 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_252 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_252 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_252 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_252 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_252 .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_252 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_252 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_252 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_252 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_252 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_252 .new_medical_description a,#module_new_medical_252 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_252 .new_medical_description a:hover,#module_new_medical_252 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_252 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_252 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_800 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1658988222_shahrdari.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_800 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_800 .background-img{
                border-radius:;
            }
        
            #medical_box_800 .new_medical_icon{
                
            }
        #medical_box_800 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_800:hover .new_medical_title{}
                #medical_box_800 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_800 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_800:hover .new_medical_icon{}
                #medical_box_800 
            
            #medical_box_800 .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_800 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_800:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_800:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_800 .mode1-size_800{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_800 .new_medical_box > div{
                width:100%;
            }
             #medical_box_800 > div{
               height:100%;
            }
            #medical_box_800 .mode2-size_800{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_800 .mode3-size_800{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_800 .mode4-size_800{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_800 .mode5-size_800{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_800 .mode6-size_800{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_800 .mode7-size_800{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_800 .mode7-size_800 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_800 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_800 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_800{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_800 span:hover{
                color:!important;
            }
            .custom2_800{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_800 span:hover{
                color:;
            }
            #medical_box_800 .mode-btn1_800{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_800 .mode-btn1_800 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_800 .mode-btn2_800{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_800 .mode-btn2_800 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_800 .div-btn-title_main_800{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_800 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_800 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_791 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376266_city center.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_791 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_791 .background-img{
                border-radius:;
            }
        
            #medical_box_791 .new_medical_icon{
                
            }
        #medical_box_791 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_791:hover .new_medical_title{}
                #medical_box_791 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_791 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_791:hover .new_medical_icon{}
                #medical_box_791 
            
            #medical_box_791 .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_791 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_791:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_791 .mode1-size_791{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_791 .new_medical_box > div{
                width:100%;
            }
             #medical_box_791 > div{
               height:100%;
            }
            #medical_box_791 .mode2-size_791{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_791 .mode3-size_791{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_791 .mode4-size_791{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_791 .mode5-size_791{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_791 .mode6-size_791{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_791 .mode7-size_791{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_791 .mode7-size_791 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_791 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_791 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_791{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_791 span:hover{
                color:!important;
            }
            .custom2_791{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_791 span:hover{
                color:;
            }
            #medical_box_791 .mode-btn1_791{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_791 .mode-btn1_791 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_791 .mode-btn2_791{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_791 .mode-btn2_791 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_791 .div-btn-title_main_791{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_791 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_791 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_799 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636375312_abfa.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_799 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_799 .background-img{
                border-radius:;
            }
        
            #medical_box_799 .new_medical_icon{
                
            }
        #medical_box_799 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_799:hover .new_medical_icon{}#medical_box_799 .new_medical_description{color:#000;font-weight:200;text-align:center;padding-top:10px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_799:hover .new_medical_description{}
                #medical_box_799 
            
            #medical_box_799 .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_799 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_799:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_799 .mode1-size_799{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_799 .new_medical_box > div{
                width:100%;
            }
             #medical_box_799 > div{
               height:100%;
            }
            #medical_box_799 .mode2-size_799{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_799 .mode3-size_799{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_799 .mode4-size_799{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_799 .mode5-size_799{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_799 .mode6-size_799{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_799 .mode7-size_799{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_799 .mode7-size_799 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_799 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_799 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_799{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_799 span:hover{
                color:!important;
            }
            .custom2_799{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_799 span:hover{
                color:;
            }
            #medical_box_799 .mode-btn1_799{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_799 .mode-btn1_799 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_799 .mode-btn2_799{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_799 .mode-btn2_799 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_799 .div-btn-title_main_799{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_799 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_799 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_798 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636375499_arman yazd.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_798 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_798 .background-img{
                border-radius:;
            }
        
            #medical_box_798 .new_medical_icon{
                
            }
        #medical_box_798 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_798:hover .new_medical_title{}
                #medical_box_798 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_798 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_798:hover .new_medical_icon{}
                #medical_box_798 
            
            #medical_box_798 .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_798 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_798:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_798 .mode1-size_798{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_798 .new_medical_box > div{
                width:100%;
            }
             #medical_box_798 > div{
               height:100%;
            }
            #medical_box_798 .mode2-size_798{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_798 .mode3-size_798{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_798 .mode4-size_798{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_798 .mode5-size_798{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_798 .mode6-size_798{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_798 .mode7-size_798{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_798 .mode7-size_798 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_798 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_798 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_798{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_798 span:hover{
                color:!important;
            }
            .custom2_798{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_798 span:hover{
                color:;
            }
            #medical_box_798 .mode-btn1_798{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_798 .mode-btn1_798 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_798 .mode-btn2_798{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_798 .mode-btn2_798 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_798 .div-btn-title_main_798{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_798 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_798 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_797 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636375608_armn yaragh.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_797 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_797 .background-img{
                border-radius:;
            }
        
            #medical_box_797 .new_medical_icon{
                
            }
        #medical_box_797 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_797:hover .new_medical_title{}
                #medical_box_797 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_797 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_797:hover .new_medical_icon{}
                #medical_box_797 
            
            #medical_box_797 .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_797 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_797:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_797 .mode1-size_797{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_797 .new_medical_box > div{
                width:100%;
            }
             #medical_box_797 > div{
               height:100%;
            }
            #medical_box_797 .mode2-size_797{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_797 .mode3-size_797{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_797 .mode4-size_797{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_797 .mode5-size_797{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_797 .mode6-size_797{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_797 .mode7-size_797{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_797 .mode7-size_797 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_797 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_797 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_797{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_797 span:hover{
                color:!important;
            }
            .custom2_797{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_797 span:hover{
                color:;
            }
            #medical_box_797 .mode-btn1_797{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_797 .mode-btn1_797 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_797 .mode-btn2_797{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_797 .mode-btn2_797 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_797 .div-btn-title_main_797{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_797 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_797 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_796 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636375744_aseman faraz.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_796 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_796 .background-img{
                border-radius:;
            }
        
            #medical_box_796 .new_medical_icon{
                
            }
        #medical_box_796 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_796:hover .new_medical_title{}
                #medical_box_796 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_796 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_796:hover .new_medical_icon{}
                #medical_box_796 
            
            #medical_box_796 .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_796 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_796:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_796 .mode1-size_796{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_796 .new_medical_box > div{
                width:100%;
            }
             #medical_box_796 > div{
               height:100%;
            }
            #medical_box_796 .mode2-size_796{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_796 .mode3-size_796{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_796 .mode4-size_796{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_796 .mode5-size_796{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_796 .mode6-size_796{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_796 .mode7-size_796{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_796 .mode7-size_796 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_796 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_796 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_796{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_796 span:hover{
                color:!important;
            }
            .custom2_796{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_796 span:hover{
                color:;
            }
            #medical_box_796 .mode-btn1_796{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_796 .mode-btn1_796 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_796 .mode-btn2_796{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_796 .mode-btn2_796 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_796 .div-btn-title_main_796{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_796 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_796 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_795 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636375901_n ghodse razavi.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_795 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_795 .background-img{
                border-radius:;
            }
        
            #medical_box_795 .new_medical_icon{
                
            }
        #medical_box_795 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_795:hover .new_medical_title{}
                #medical_box_795 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_795 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_795:hover .new_medical_icon{}
                #medical_box_795 
            
            #medical_box_795 .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_795 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_795:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_795 .mode1-size_795{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_795 .new_medical_box > div{
                width:100%;
            }
             #medical_box_795 > div{
               height:100%;
            }
            #medical_box_795 .mode2-size_795{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_795 .mode3-size_795{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_795 .mode4-size_795{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_795 .mode5-size_795{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_795 .mode6-size_795{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_795 .mode7-size_795{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_795 .mode7-size_795 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_795 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_795 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_795{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_795 span:hover{
                color:!important;
            }
            .custom2_795{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_795 span:hover{
                color:;
            }
            #medical_box_795 .mode-btn1_795{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_795 .mode-btn1_795 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_795 .mode-btn2_795{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_795 .mode-btn2_795 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_795 .div-btn-title_main_795{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_795 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_795 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_794 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636375968_avaze.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_794 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_794 .background-img{
                border-radius:;
            }
        
            #medical_box_794 .new_medical_icon{
                
            }
        #medical_box_794 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_794:hover .new_medical_title{}
                #medical_box_794 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_794 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_794:hover .new_medical_icon{}
                #medical_box_794 
            
            #medical_box_794 .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_794 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_794:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_794 .mode1-size_794{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_794 .new_medical_box > div{
                width:100%;
            }
             #medical_box_794 > div{
               height:100%;
            }
            #medical_box_794 .mode2-size_794{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_794 .mode3-size_794{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_794 .mode4-size_794{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_794 .mode5-size_794{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_794 .mode6-size_794{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_794 .mode7-size_794{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_794 .mode7-size_794 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_794 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_794 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_794{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_794 span:hover{
                color:!important;
            }
            .custom2_794{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_794 span:hover{
                color:;
            }
            #medical_box_794 .mode-btn1_794{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_794 .mode-btn1_794 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_794 .mode-btn2_794{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_794 .mode-btn2_794 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_794 .div-btn-title_main_794{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_794 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_794 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_793 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676442357_AGT.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_793 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_793 .background-img{
                border-radius:;
            }
        
            #medical_box_793 .new_medical_icon{
                
            }
        #medical_box_793 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_793:hover .new_medical_title{}
                #medical_box_793 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_793 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_793:hover .new_medical_icon{}
                #medical_box_793 
            
            #medical_box_793 .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_793 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_793:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_793 .mode1-size_793{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_793 .new_medical_box > div{
                width:100%;
            }
             #medical_box_793 > div{
               height:100%;
            }
            #medical_box_793 .mode2-size_793{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_793 .mode3-size_793{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_793 .mode4-size_793{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_793 .mode5-size_793{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_793 .mode6-size_793{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_793 .mode7-size_793{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_793 .mode7-size_793 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_793 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_793 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_793{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_793 span:hover{
                color:!important;
            }
            .custom2_793{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_793 span:hover{
                color:;
            }
            #medical_box_793 .mode-btn1_793{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_793 .mode-btn1_793 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_793 .mode-btn2_793{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_793 .mode-btn2_793 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_793 .div-btn-title_main_793{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_793 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_793 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_792 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376183_bakhshi.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_792 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_792 .background-img{
                border-radius:;
            }
        
            #medical_box_792 .new_medical_icon{
                
            }
        #medical_box_792 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_792:hover .new_medical_title{}
                #medical_box_792 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_792 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_792:hover .new_medical_icon{}
                #medical_box_792 
            
            #medical_box_792 .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_792 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_792:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_792 .mode1-size_792{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_792 .new_medical_box > div{
                width:100%;
            }
             #medical_box_792 > div{
               height:100%;
            }
            #medical_box_792 .mode2-size_792{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_792 .mode3-size_792{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_792 .mode4-size_792{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_792 .mode5-size_792{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_792 .mode6-size_792{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_792 .mode7-size_792{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_792 .mode7-size_792 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_792 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_792 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_792{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_792 span:hover{
                color:!important;
            }
            .custom2_792{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_792 span:hover{
                color:;
            }
            #medical_box_792 .mode-btn1_792{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_792 .mode-btn1_792 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_792 .mode-btn2_792{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_792 .mode-btn2_792 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_792 .div-btn-title_main_792{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_792 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_792 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_790 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376353_am o toyor homa.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_790 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_790 .background-img{
                border-radius:;
            }
        
            #medical_box_790 .new_medical_icon{
                
            }
        #medical_box_790 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_790 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_790 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_790:hover .new_medical_icon{}
                #medical_box_790 
            
            #medical_box_790 .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_790 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_790:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_790 .mode1-size_790{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_790 .new_medical_box > div{
                width:100%;
            }
             #medical_box_790 > div{
               height:100%;
            }
            #medical_box_790 .mode2-size_790{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_790 .mode3-size_790{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_790 .mode4-size_790{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_790 .mode5-size_790{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_790 .mode6-size_790{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_790 .mode7-size_790{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_790 .mode7-size_790 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_790 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_790 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_790{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_790 span:hover{
                color:!important;
            }
            .custom2_790{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_790 span:hover{
                color:;
            }
            #medical_box_790 .mode-btn1_790{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_790 .mode-btn1_790 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_790 .mode-btn2_790{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_790 .mode-btn2_790 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_790 .div-btn-title_main_790{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_790 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_790 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_789 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376462_danesh bonyan.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_789 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_789 .background-img{
                border-radius:;
            }
        
            #medical_box_789 .new_medical_icon{
                
            }
        #medical_box_789 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_789:hover .new_medical_title{}
                #medical_box_789 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_789 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_789:hover .new_medical_icon{}
                #medical_box_789 
            
            #medical_box_789 .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_789 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_789:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_789 .mode1-size_789{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_789 .new_medical_box > div{
                width:100%;
            }
             #medical_box_789 > div{
               height:100%;
            }
            #medical_box_789 .mode2-size_789{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_789 .mode3-size_789{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_789 .mode4-size_789{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_789 .mode5-size_789{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_789 .mode6-size_789{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_789 .mode7-size_789{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_789 .mode7-size_789 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_789 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_789 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_789{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_789 span:hover{
                color:!important;
            }
            .custom2_789{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_789 span:hover{
                color:;
            }
            #medical_box_789 .mode-btn1_789{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_789 .mode-btn1_789 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_789 .mode-btn2_789{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_789 .mode-btn2_789 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_789 .div-btn-title_main_789{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_789 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_789 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_788 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376547_elmi karbordi.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_788 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_788 .background-img{
                border-radius:;
            }
        
            #medical_box_788 .new_medical_icon{
                
            }
        #medical_box_788 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_788:hover .new_medical_title{}
                #medical_box_788 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_788 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_788:hover .new_medical_icon{}
                #medical_box_788 
            
            #medical_box_788 .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_788 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_788:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_788 .mode1-size_788{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_788 .new_medical_box > div{
                width:100%;
            }
             #medical_box_788 > div{
               height:100%;
            }
            #medical_box_788 .mode2-size_788{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_788 .mode3-size_788{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_788 .mode4-size_788{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_788 .mode5-size_788{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_788 .mode6-size_788{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_788 .mode7-size_788{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_788 .mode7-size_788 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_788 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_788 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_788{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_788 span:hover{
                color:!important;
            }
            .custom2_788{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_788 span:hover{
                color:;
            }
            #medical_box_788 .mode-btn1_788{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_788 .mode-btn1_788 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_788 .mode-btn2_788{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_788 .mode-btn2_788 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_788 .div-btn-title_main_788{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_788 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_788 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_787 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376614_eritron.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_787 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_787 .background-img{
                border-radius:;
            }
        
            #medical_box_787 .new_medical_icon{
                
            }
        #medical_box_787 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_787:hover .new_medical_title{}
                #medical_box_787 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_787 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_787:hover .new_medical_icon{}
                #medical_box_787 
            
            #medical_box_787 .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_787 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_787:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_787 .mode1-size_787{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_787 .new_medical_box > div{
                width:100%;
            }
             #medical_box_787 > div{
               height:100%;
            }
            #medical_box_787 .mode2-size_787{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_787 .mode3-size_787{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_787 .mode4-size_787{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_787 .mode5-size_787{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_787 .mode6-size_787{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_787 .mode7-size_787{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_787 .mode7-size_787 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_787 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_787 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_787{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_787 span:hover{
                color:!important;
            }
            .custom2_787{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_787 span:hover{
                color:;
            }
            #medical_box_787 .mode-btn1_787{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_787 .mode-btn1_787 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_787 .mode-btn2_787{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_787 .mode-btn2_787 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_787 .div-btn-title_main_787{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_787 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_787 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_786 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376710_ershad.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_786 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_786 .background-img{
                border-radius:;
            }
        
            #medical_box_786 .new_medical_icon{
                
            }
        #medical_box_786 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_786:hover .new_medical_title{}
                #medical_box_786 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_786 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_786:hover .new_medical_icon{}
                #medical_box_786 
            
            #medical_box_786 .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_786 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_786:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_786 .mode1-size_786{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_786 .new_medical_box > div{
                width:100%;
            }
             #medical_box_786 > div{
               height:100%;
            }
            #medical_box_786 .mode2-size_786{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_786 .mode3-size_786{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_786 .mode4-size_786{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_786 .mode5-size_786{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_786 .mode6-size_786{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_786 .mode7-size_786{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_786 .mode7-size_786 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_786 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_786 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_786{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_786 span:hover{
                color:!important;
            }
            .custom2_786{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_786 span:hover{
                color:;
            }
            #medical_box_786 .mode-btn1_786{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_786 .mode-btn1_786 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_786 .mode-btn2_786{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_786 .mode-btn2_786 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_786 .div-btn-title_main_786{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_786 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_786 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_785 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376801_film fajr.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_785 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_785 .background-img{
                border-radius:;
            }
        
            #medical_box_785 .new_medical_icon{
                
            }
        #medical_box_785 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_785:hover .new_medical_title{}
                #medical_box_785 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_785 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_785:hover .new_medical_icon{}
                #medical_box_785 
            
            #medical_box_785 .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_785 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_785:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_785 .mode1-size_785{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_785 .new_medical_box > div{
                width:100%;
            }
             #medical_box_785 > div{
               height:100%;
            }
            #medical_box_785 .mode2-size_785{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_785 .mode3-size_785{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_785 .mode4-size_785{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_785 .mode5-size_785{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_785 .mode6-size_785{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_785 .mode7-size_785{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_785 .mode7-size_785 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_785 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_785 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_785{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_785 span:hover{
                color:!important;
            }
            .custom2_785{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_785 span:hover{
                color:;
            }
            #medical_box_785 .mode-btn1_785{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_785 .mode-btn1_785 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_785 .mode-btn2_785{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_785 .mode-btn2_785 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_785 .div-btn-title_main_785{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_785 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_785 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_784 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376877_IOTRAPI iranian.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_784 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_784 .background-img{
                border-radius:;
            }
        
            #medical_box_784 .new_medical_icon{
                
            }
        #medical_box_784 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_784:hover .new_medical_title{}
                #medical_box_784 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_784 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_784:hover .new_medical_icon{}
                #medical_box_784 
            
            #medical_box_784 .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_784 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_784:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_784 .mode1-size_784{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_784 .new_medical_box > div{
                width:100%;
            }
             #medical_box_784 > div{
               height:100%;
            }
            #medical_box_784 .mode2-size_784{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_784 .mode3-size_784{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_784 .mode4-size_784{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_784 .mode5-size_784{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_784 .mode6-size_784{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_784 .mode7-size_784{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_784 .mode7-size_784 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_784 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_784 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_784{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_784 span:hover{
                color:!important;
            }
            .custom2_784{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_784 span:hover{
                color:;
            }
            #medical_box_784 .mode-btn1_784{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_784 .mode-btn1_784 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_784 .mode-btn2_784{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_784 .mode-btn2_784 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_784 .div-btn-title_main_784{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_784 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_784 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_783 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636376950_freydounshar.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_783 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_783 .background-img{
                border-radius:;
            }
        
            #medical_box_783 .new_medical_icon{
                
            }
        #medical_box_783 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_783:hover .new_medical_title{}
                #medical_box_783 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_783 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_783:hover .new_medical_icon{}
                #medical_box_783 
            
            #medical_box_783 .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_783 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_783:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_783 .mode1-size_783{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_783 .new_medical_box > div{
                width:100%;
            }
             #medical_box_783 > div{
               height:100%;
            }
            #medical_box_783 .mode2-size_783{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_783 .mode3-size_783{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_783 .mode4-size_783{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_783 .mode5-size_783{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_783 .mode6-size_783{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_783 .mode7-size_783{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_783 .mode7-size_783 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_783 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_783 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_783{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_783 span:hover{
                color:!important;
            }
            .custom2_783{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_783 span:hover{
                color:;
            }
            #medical_box_783 .mode-btn1_783{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_783 .mode-btn1_783 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_783 .mode-btn2_783{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_783 .mode-btn2_783 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_783 .div-btn-title_main_783{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_783 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_783 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_782 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377045_gardeshgaran.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_782 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_782 .background-img{
                border-radius:;
            }
        
            #medical_box_782 .new_medical_icon{
                
            }
        #medical_box_782 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_782:hover .new_medical_title{}
                #medical_box_782 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_782 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_782:hover .new_medical_icon{}
                #medical_box_782 
            
            #medical_box_782 .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_782 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_782:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_782 .mode1-size_782{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_782 .new_medical_box > div{
                width:100%;
            }
             #medical_box_782 > div{
               height:100%;
            }
            #medical_box_782 .mode2-size_782{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_782 .mode3-size_782{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_782 .mode4-size_782{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_782 .mode5-size_782{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_782 .mode6-size_782{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_782 .mode7-size_782{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_782 .mode7-size_782 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_782 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_782 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_782{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_782 span:hover{
                color:!important;
            }
            .custom2_782{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_782 span:hover{
                color:;
            }
            #medical_box_782 .mode-btn1_782{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_782 .mode-btn1_782 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_782 .mode-btn2_782{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_782 .mode-btn2_782 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_782 .div-btn-title_main_782{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_782 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_782 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_781 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377275_gaz.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_781 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_781 .background-img{
                border-radius:;
            }
        
            #medical_box_781 .new_medical_icon{
                
            }
        #medical_box_781 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_781:hover .new_medical_title{}
                #medical_box_781 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_781 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_781:hover .new_medical_icon{}
                #medical_box_781 
            
            #medical_box_781 .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_781 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_781:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_781 .mode1-size_781{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_781 .new_medical_box > div{
                width:100%;
            }
             #medical_box_781 > div{
               height:100%;
            }
            #medical_box_781 .mode2-size_781{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_781 .mode3-size_781{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_781 .mode4-size_781{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_781 .mode5-size_781{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_781 .mode6-size_781{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_781 .mode7-size_781{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_781 .mode7-size_781 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_781 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_781 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_781{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_781 span:hover{
                color:!important;
            }
            .custom2_781{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_781 span:hover{
                color:;
            }
            #medical_box_781 .mode-btn1_781{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_781 .mode-btn1_781 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_781 .mode-btn2_781{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_781 .mode-btn2_781 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_781 .div-btn-title_main_781{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_781 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_781 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_780 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377347_hotel asman.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_780 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_780 .background-img{
                border-radius:;
            }
        
            #medical_box_780 .new_medical_icon{
                
            }
        #medical_box_780 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_780:hover .new_medical_title{}
                #medical_box_780 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_780 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_780:hover .new_medical_icon{}
                #medical_box_780 
            
            #medical_box_780 .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_780 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_780:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_780 .mode1-size_780{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_780 .new_medical_box > div{
                width:100%;
            }
             #medical_box_780 > div{
               height:100%;
            }
            #medical_box_780 .mode2-size_780{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_780 .mode3-size_780{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_780 .mode4-size_780{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_780 .mode5-size_780{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_780 .mode6-size_780{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_780 .mode7-size_780{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_780 .mode7-size_780 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_780 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_780 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_780{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_780 span:hover{
                color:!important;
            }
            .custom2_780{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_780 span:hover{
                color:;
            }
            #medical_box_780 .mode-btn1_780{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_780 .mode-btn1_780 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_780 .mode-btn2_780{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_780 .mode-btn2_780 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_780 .div-btn-title_main_780{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_780 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_780 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_779 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377434_htel mahan.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_779 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_779 .background-img{
                border-radius:;
            }
        
            #medical_box_779 .new_medical_icon{
                
            }
        #medical_box_779 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_779:hover .new_medical_title{}
                #medical_box_779 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_779 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_779:hover .new_medical_icon{}
                #medical_box_779 
            
            #medical_box_779 .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_779 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_779:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_779 .mode1-size_779{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_779 .new_medical_box > div{
                width:100%;
            }
             #medical_box_779 > div{
               height:100%;
            }
            #medical_box_779 .mode2-size_779{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_779 .mode3-size_779{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_779 .mode4-size_779{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_779 .mode5-size_779{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_779 .mode6-size_779{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_779 .mode7-size_779{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_779 .mode7-size_779 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_779 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_779 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_779{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_779 span:hover{
                color:!important;
            }
            .custom2_779{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_779 span:hover{
                color:;
            }
            #medical_box_779 .mode-btn1_779{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_779 .mode-btn1_779 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_779 .mode-btn2_779{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_779 .mode-btn2_779 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_779 .div-btn-title_main_779{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_779 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_779 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_778 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676442490_دیسانور.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_778 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_778 .background-img{
                border-radius:;
            }
        
            #medical_box_778 .new_medical_icon{
                
            }
        #medical_box_778 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_778:hover .new_medical_title{}
                #medical_box_778 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_778 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_778:hover .new_medical_icon{}
                #medical_box_778 
            
            #medical_box_778 .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_778 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_778:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_778 .mode1-size_778{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_778 .new_medical_box > div{
                width:100%;
            }
             #medical_box_778 > div{
               height:100%;
            }
            #medical_box_778 .mode2-size_778{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_778 .mode3-size_778{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_778 .mode4-size_778{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_778 .mode5-size_778{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_778 .mode6-size_778{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_778 .mode7-size_778{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_778 .mode7-size_778 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_778 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_778 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_778{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_778 span:hover{
                color:!important;
            }
            .custom2_778{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_778 span:hover{
                color:;
            }
            #medical_box_778 .mode-btn1_778{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_778 .mode-btn1_778 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_778 .mode-btn2_778{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_778 .mode-btn2_778 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_778 .div-btn-title_main_778{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_778 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_778 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_777 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377663_iran asal.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_777 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_777 .background-img{
                border-radius:;
            }
        
            #medical_box_777 .new_medical_icon{
                
            }
        #medical_box_777 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_777:hover .new_medical_title{}
                #medical_box_777 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_777 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_777:hover .new_medical_icon{}
                #medical_box_777 
            
            #medical_box_777 .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_777 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_777:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_777 .mode1-size_777{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_777 .new_medical_box > div{
                width:100%;
            }
             #medical_box_777 > div{
               height:100%;
            }
            #medical_box_777 .mode2-size_777{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_777 .mode3-size_777{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_777 .mode4-size_777{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_777 .mode5-size_777{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_777 .mode6-size_777{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_777 .mode7-size_777{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_777 .mode7-size_777 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_777 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_777 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_777{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_777 span:hover{
                color:!important;
            }
            .custom2_777{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_777 span:hover{
                color:;
            }
            #medical_box_777 .mode-btn1_777{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_777 .mode-btn1_777 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_777 .mode-btn2_777{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_777 .mode-btn2_777 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_777 .div-btn-title_main_777{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_777 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_777 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_776 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377741_khorasgan uni.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_776 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_776 .background-img{
                border-radius:;
            }
        
            #medical_box_776 .new_medical_icon{
                
            }
        #medical_box_776 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_776:hover .new_medical_title{}
                #medical_box_776 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_776 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_776:hover .new_medical_icon{}
                #medical_box_776 
            
            #medical_box_776 .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_776 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_776:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_776 .mode1-size_776{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_776 .new_medical_box > div{
                width:100%;
            }
             #medical_box_776 > div{
               height:100%;
            }
            #medical_box_776 .mode2-size_776{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_776 .mode3-size_776{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_776 .mode4-size_776{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_776 .mode5-size_776{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_776 .mode6-size_776{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_776 .mode7-size_776{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_776 .mode7-size_776 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_776 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_776 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_776{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_776 span:hover{
                color:!important;
            }
            .custom2_776{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_776 span:hover{
                color:;
            }
            #medical_box_776 .mode-btn1_776{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_776 .mode-btn1_776 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_776 .mode-btn2_776{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_776 .mode-btn2_776 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_776 .div-btn-title_main_776{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_776 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_776 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_775 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636377976_mbarake.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_775 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_775 .background-img{
                border-radius:;
            }
        
            #medical_box_775 .new_medical_icon{
                
            }
        #medical_box_775 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_775:hover .new_medical_title{}
                #medical_box_775 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_775 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_775:hover .new_medical_icon{}
                #medical_box_775 
            
            #medical_box_775 .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_775 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_775:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_775 .mode1-size_775{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_775 .new_medical_box > div{
                width:100%;
            }
             #medical_box_775 > div{
               height:100%;
            }
            #medical_box_775 .mode2-size_775{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_775 .mode3-size_775{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_775 .mode4-size_775{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_775 .mode5-size_775{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_775 .mode6-size_775{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_775 .mode7-size_775{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_775 .mode7-size_775 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_775 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_775 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_775{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_775 span:hover{
                color:!important;
            }
            .custom2_775{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_775 span:hover{
                color:;
            }
            #medical_box_775 .mode-btn1_775{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_775 .mode-btn1_775 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_775 .mode-btn2_775{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_775 .mode-btn2_775 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_775 .div-btn-title_main_775{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_775 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_775 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_774 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378031_melal lab.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_774 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_774 .background-img{
                border-radius:;
            }
        
            #medical_box_774 .new_medical_icon{
                
            }
        #medical_box_774 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_774:hover .new_medical_title{}
                #medical_box_774 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_774 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_774:hover .new_medical_icon{}
                #medical_box_774 
            
            #medical_box_774 .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_774 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_774:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_774 .mode1-size_774{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_774 .new_medical_box > div{
                width:100%;
            }
             #medical_box_774 > div{
               height:100%;
            }
            #medical_box_774 .mode2-size_774{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_774 .mode3-size_774{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_774 .mode4-size_774{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_774 .mode5-size_774{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_774 .mode6-size_774{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_774 .mode7-size_774{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_774 .mode7-size_774 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_774 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_774 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_774{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_774 span:hover{
                color:!important;
            }
            .custom2_774{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_774 span:hover{
                color:;
            }
            #medical_box_774 .mode-btn1_774{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_774 .mode-btn1_774 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_774 .mode-btn2_774{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_774 .mode-btn2_774 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_774 .div-btn-title_main_774{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_774 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_774 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_773 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378133_ah beynolmelali.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_773 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_773 .background-img{
                border-radius:;
            }
        
            #medical_box_773 .new_medical_icon{
                
            }
        #medical_box_773 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_773:hover .new_medical_title{}
                #medical_box_773 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_773 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_773:hover .new_medical_icon{}
                #medical_box_773 
            
            #medical_box_773 .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_773 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_773:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_773 .mode1-size_773{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_773 .new_medical_box > div{
                width:100%;
            }
             #medical_box_773 > div{
               height:100%;
            }
            #medical_box_773 .mode2-size_773{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_773 .mode3-size_773{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_773 .mode4-size_773{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_773 .mode5-size_773{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_773 .mode6-size_773{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_773 .mode7-size_773{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_773 .mode7-size_773 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_773 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_773 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_773{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_773 span:hover{
                color:!important;
            }
            .custom2_773{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_773 span:hover{
                color:;
            }
            #medical_box_773 .mode-btn1_773{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_773 .mode-btn1_773 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_773 .mode-btn2_773{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_773 .mode-btn2_773 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_773 .div-btn-title_main_773{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_773 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_773 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_772 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378231_neshan mal.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_772 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_772 .background-img{
                border-radius:;
            }
        
            #medical_box_772 .new_medical_icon{
                
            }
        #medical_box_772 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_772:hover .new_medical_title{}
                #medical_box_772 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_772 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_772:hover .new_medical_icon{}
                #medical_box_772 
            
            #medical_box_772 .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_772 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_772:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_772 .mode1-size_772{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_772 .new_medical_box > div{
                width:100%;
            }
             #medical_box_772 > div{
               height:100%;
            }
            #medical_box_772 .mode2-size_772{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_772 .mode3-size_772{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_772 .mode4-size_772{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_772 .mode5-size_772{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_772 .mode6-size_772{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_772 .mode7-size_772{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_772 .mode7-size_772 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_772 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_772 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_772{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_772 span:hover{
                color:!important;
            }
            .custom2_772{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_772 span:hover{
                color:;
            }
            #medical_box_772 .mode-btn1_772{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_772 .mode-btn1_772 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_772 .mode-btn2_772{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_772 .mode-btn2_772 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_772 .div-btn-title_main_772{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_772 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_772 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_771 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378298_um pezeshki esf.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_771 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_771 .background-img{
                border-radius:;
            }
        
            #medical_box_771 .new_medical_icon{
                
            }
        #medical_box_771 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_771:hover .new_medical_title{}
                #medical_box_771 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_771 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_771:hover .new_medical_icon{}
                #medical_box_771 
            
            #medical_box_771 .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_771 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_771:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_771 .mode1-size_771{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_771 .new_medical_box > div{
                width:100%;
            }
             #medical_box_771 > div{
               height:100%;
            }
            #medical_box_771 .mode2-size_771{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_771 .mode3-size_771{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_771 .mode4-size_771{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_771 .mode5-size_771{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_771 .mode6-size_771{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_771 .mode7-size_771{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_771 .mode7-size_771 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_771 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_771 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_771{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_771 span:hover{
                color:!important;
            }
            .custom2_771{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_771 span:hover{
                color:;
            }
            #medical_box_771 .mode-btn1_771{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_771 .mode-btn1_771 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_771 .mode-btn2_771{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_771 .mode-btn2_771 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_771 .div-btn-title_main_771{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_771 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_771 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_770 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636440152_pantam.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_770 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_770 .background-img{
                border-radius:;
            }
        
            #medical_box_770 .new_medical_icon{
                
            }
        #medical_box_770 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_770:hover .new_medical_title{}
                #medical_box_770 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_770 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_770:hover .new_medical_icon{}
                #medical_box_770 
            
            #medical_box_770 .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_770 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_770:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_770 .mode1-size_770{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_770 .new_medical_box > div{
                width:100%;
            }
             #medical_box_770 > div{
               height:100%;
            }
            #medical_box_770 .mode2-size_770{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_770 .mode3-size_770{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_770 .mode4-size_770{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_770 .mode5-size_770{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_770 .mode6-size_770{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_770 .mode7-size_770{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_770 .mode7-size_770 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_770 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_770 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_770{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_770 span:hover{
                color:!important;
            }
            .custom2_770{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_770 span:hover{
                color:;
            }
            #medical_box_770 .mode-btn1_770{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_770 .mode-btn1_770 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_770 .mode-btn2_770{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_770 .mode-btn2_770 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_770 .div-btn-title_main_770{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_770 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_770 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_768 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636380091_patine.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_768 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_768 .background-img{
                border-radius:;
            }
        
            #medical_box_768 .new_medical_icon{
                
            }
        #medical_box_768 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_768:hover .new_medical_title{}
                #medical_box_768 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_768 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_768:hover .new_medical_icon{}
                #medical_box_768 
            
            #medical_box_768 .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_768 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_768:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_768 .mode1-size_768{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_768 .new_medical_box > div{
                width:100%;
            }
             #medical_box_768 > div{
               height:100%;
            }
            #medical_box_768 .mode2-size_768{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_768 .mode3-size_768{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_768 .mode4-size_768{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_768 .mode5-size_768{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_768 .mode6-size_768{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_768 .mode7-size_768{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_768 .mode7-size_768 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_768 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_768 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_768{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_768 span:hover{
                color:!important;
            }
            .custom2_768{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_768 span:hover{
                color:;
            }
            #medical_box_768 .mode-btn1_768{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_768 .mode-btn1_768 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_768 .mode-btn2_768{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_768 .mode-btn2_768 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_768 .div-btn-title_main_768{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_768 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_768 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_767 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636380026_piano nava.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_767 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_767 .background-img{
                border-radius:;
            }
        
            #medical_box_767 .new_medical_icon{
                
            }
        #medical_box_767 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_767:hover .new_medical_title{}
                #medical_box_767 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_767 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_767:hover .new_medical_icon{}
                #medical_box_767 
            
            #medical_box_767 .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_767 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_767:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_767 .mode1-size_767{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_767 .new_medical_box > div{
                width:100%;
            }
             #medical_box_767 > div{
               height:100%;
            }
            #medical_box_767 .mode2-size_767{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_767 .mode3-size_767{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_767 .mode4-size_767{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_767 .mode5-size_767{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_767 .mode6-size_767{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_767 .mode7-size_767{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_767 .mode7-size_767 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_767 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_767 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_767{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_767 span:hover{
                color:!important;
            }
            .custom2_767{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_767 span:hover{
                color:;
            }
            #medical_box_767 .mode-btn1_767{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_767 .mode-btn1_767 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_767 .mode-btn2_767{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_767 .mode-btn2_767 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_767 .div-btn-title_main_767{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_767 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_767 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_766 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379958_pushak bougati.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_766 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_766 .background-img{
                border-radius:;
            }
        
            #medical_box_766 .new_medical_icon{
                
            }
        #medical_box_766 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_766:hover .new_medical_title{}
                #medical_box_766 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_766 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_766:hover .new_medical_icon{}#medical_box_766 .new_medical_description{color:#000;font-weight:200;text-align:justify;border-style:solid;border-color:#555;}#medical_box_766:hover .new_medical_description{}
                #medical_box_766 
            
            #medical_box_766 .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_766 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_766:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_766 .mode1-size_766{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_766 .new_medical_box > div{
                width:100%;
            }
             #medical_box_766 > div{
               height:100%;
            }
            #medical_box_766 .mode2-size_766{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_766 .mode3-size_766{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_766 .mode4-size_766{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_766 .mode5-size_766{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_766 .mode6-size_766{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_766 .mode7-size_766{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_766 .mode7-size_766 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_766 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_766 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_766{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_766 span:hover{
                color:!important;
            }
            .custom2_766{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_766 span:hover{
                color:;
            }
            #medical_box_766 .mode-btn1_766{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_766 .mode-btn1_766 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_766 .mode-btn2_766{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_766 .mode-btn2_766 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_766 .div-btn-title_main_766{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_766 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_766 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_765 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379897_ushak ghoghnous.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_765 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_765 .background-img{
                border-radius:;
            }
        
            #medical_box_765 .new_medical_icon{
                
            }
        #medical_box_765 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_765:hover .new_medical_title{}
                #medical_box_765 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_765 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_765:hover .new_medical_icon{}
                #medical_box_765 
            
            #medical_box_765 .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_765 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_765:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_765 .mode1-size_765{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_765 .new_medical_box > div{
                width:100%;
            }
             #medical_box_765 > div{
               height:100%;
            }
            #medical_box_765 .mode2-size_765{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_765 .mode3-size_765{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_765 .mode4-size_765{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_765 .mode5-size_765{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_765 .mode6-size_765{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_765 .mode7-size_765{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_765 .mode7-size_765 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_765 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_765 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_765{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_765 span:hover{
                color:!important;
            }
            .custom2_765{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_765 span:hover{
                color:;
            }
            #medical_box_765 .mode-btn1_765{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_765 .mode-btn1_765 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_765 .mode-btn2_765{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_765 .mode-btn2_765 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_765 .div-btn-title_main_765{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_765 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_765 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_764 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379818_pushak mahyaran.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_764 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_764 .background-img{
                border-radius:;
            }
        
            #medical_box_764 .new_medical_icon{
                
            }
        #medical_box_764 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_764:hover .new_medical_title{}
                #medical_box_764 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_764 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_764:hover .new_medical_icon{}
                #medical_box_764 
            
            #medical_box_764 .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_764 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_764:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_764 .mode1-size_764{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_764 .new_medical_box > div{
                width:100%;
            }
             #medical_box_764 > div{
               height:100%;
            }
            #medical_box_764 .mode2-size_764{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_764 .mode3-size_764{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_764 .mode4-size_764{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_764 .mode5-size_764{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_764 .mode6-size_764{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_764 .mode7-size_764{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_764 .mode7-size_764 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_764 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_764 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_764{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_764 span:hover{
                color:!important;
            }
            .custom2_764{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_764 span:hover{
                color:;
            }
            #medical_box_764 .mode-btn1_764{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_764 .mode-btn1_764 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_764 .mode-btn2_764{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_764 .mode-btn2_764 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_764 .div-btn-title_main_764{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_764 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_764 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_763 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379751_sazman oghaf.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_763 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_763 .background-img{
                border-radius:;
            }
        
            #medical_box_763 .new_medical_icon{
                
            }
        #medical_box_763 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_763:hover .new_medical_title{}
                #medical_box_763 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_763 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_763:hover .new_medical_icon{}
                #medical_box_763 
            
            #medical_box_763 .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_763 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_763:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_763 .mode1-size_763{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_763 .new_medical_box > div{
                width:100%;
            }
             #medical_box_763 > div{
               height:100%;
            }
            #medical_box_763 .mode2-size_763{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_763 .mode3-size_763{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_763 .mode4-size_763{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_763 .mode5-size_763{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_763 .mode6-size_763{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_763 .mode7-size_763{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_763 .mode7-size_763 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_763 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_763 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_763{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_763 span:hover{
                color:!important;
            }
            .custom2_763{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_763 span:hover{
                color:;
            }
            #medical_box_763 .mode-btn1_763{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_763 .mode-btn1_763 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_763 .mode-btn2_763{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_763 .mode-btn2_763 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_763 .div-btn-title_main_763{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_763 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_763 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_762 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1655550366_379620_sejziiii.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_762 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_762 .background-img{
                border-radius:;
            }
        
            #medical_box_762 .new_medical_icon{
                
            }
        #medical_box_762 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_762:hover .new_medical_title{}
                #medical_box_762 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_762 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_762:hover .new_medical_icon{}
                #medical_box_762 
            
            #medical_box_762 .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_762 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_762:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_762 .mode1-size_762{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_762 .new_medical_box > div{
                width:100%;
            }
             #medical_box_762 > div{
               height:100%;
            }
            #medical_box_762 .mode2-size_762{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_762 .mode3-size_762{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_762 .mode4-size_762{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_762 .mode5-size_762{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_762 .mode6-size_762{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_762 .mode7-size_762{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_762 .mode7-size_762 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_762 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_762 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_762{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_762 span:hover{
                color:!important;
            }
            .custom2_762{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_762 span:hover{
                color:;
            }
            #medical_box_762 .mode-btn1_762{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_762 .mode-btn1_762 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_762 .mode-btn2_762{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_762 .mode-btn2_762 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_762 .div-btn-title_main_762{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_762 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_762 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_761 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379620_sejziiii.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_761 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_761 .background-img{
                border-radius:;
            }
        
            #medical_box_761 .new_medical_icon{
                
            }
        #medical_box_761 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_761:hover .new_medical_title{}
                #medical_box_761 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_761 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_761:hover .new_medical_icon{}
                #medical_box_761 
            
            #medical_box_761 .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_761 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_761:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_761 .mode1-size_761{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_761 .new_medical_box > div{
                width:100%;
            }
             #medical_box_761 > div{
               height:100%;
            }
            #medical_box_761 .mode2-size_761{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_761 .mode3-size_761{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_761 .mode4-size_761{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_761 .mode5-size_761{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_761 .mode6-size_761{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_761 .mode7-size_761{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_761 .mode7-size_761 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_761 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_761 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_761{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_761 span:hover{
                color:!important;
            }
            .custom2_761{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_761 span:hover{
                color:;
            }
            #medical_box_761 .mode-btn1_761{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_761 .mode-btn1_761 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_761 .mode-btn2_761{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_761 .mode-btn2_761 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_761 .div-btn-title_main_761{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_761 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_761 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_760 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379510_shahrak salamat.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_760 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_760 .background-img{
                border-radius:;
            }
        
            #medical_box_760 .new_medical_icon{
                
            }
        #medical_box_760 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_760:hover .new_medical_title{}
                #medical_box_760 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_760 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_760:hover .new_medical_icon{}
                #medical_box_760 
            
            #medical_box_760 .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_760 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_760:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_760 .mode1-size_760{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_760 .new_medical_box > div{
                width:100%;
            }
             #medical_box_760 > div{
               height:100%;
            }
            #medical_box_760 .mode2-size_760{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_760 .mode3-size_760{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_760 .mode4-size_760{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_760 .mode5-size_760{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_760 .mode6-size_760{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_760 .mode7-size_760{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_760 .mode7-size_760 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_760 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_760 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_760{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_760 span:hover{
                color:!important;
            }
            .custom2_760{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_760 span:hover{
                color:;
            }
            #medical_box_760 .mode-btn1_760{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_760 .mode-btn1_760 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_760 .mode-btn2_760{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_760 .mode-btn2_760 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_760 .div-btn-title_main_760{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_760 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_760 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_758 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379381_share royaha.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_758 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_758 .background-img{
                border-radius:;
            }
        
            #medical_box_758 .new_medical_icon{
                
            }
        #medical_box_758 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_758:hover .new_medical_title{}
                #medical_box_758 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_758 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_758:hover .new_medical_icon{}
                #medical_box_758 
            
            #medical_box_758 .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_758 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_758:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_758 .mode1-size_758{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_758 .new_medical_box > div{
                width:100%;
            }
             #medical_box_758 > div{
               height:100%;
            }
            #medical_box_758 .mode2-size_758{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_758 .mode3-size_758{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_758 .mode4-size_758{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_758 .mode5-size_758{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_758 .mode6-size_758{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_758 .mode7-size_758{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_758 .mode7-size_758 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_758 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_758 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_758{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_758 span:hover{
                color:!important;
            }
            .custom2_758{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_758 span:hover{
                color:;
            }
            #medical_box_758 .mode-btn1_758{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_758 .mode-btn1_758 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_758 .mode-btn2_758{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_758 .mode-btn2_758 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_758 .div-btn-title_main_758{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_758 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_758 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_757 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379259_sport center.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_757 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_757 .background-img{
                border-radius:;
            }
        
            #medical_box_757 .new_medical_icon{
                
            }
        #medical_box_757 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_757:hover .new_medical_title{}
                #medical_box_757 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_757 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_757:hover .new_medical_icon{}
                #medical_box_757 
            
            #medical_box_757 .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_757 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_757:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_757 .mode1-size_757{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_757 .new_medical_box > div{
                width:100%;
            }
             #medical_box_757 > div{
               height:100%;
            }
            #medical_box_757 .mode2-size_757{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_757 .mode3-size_757{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_757 .mode4-size_757{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_757 .mode5-size_757{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_757 .mode6-size_757{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_757 .mode7-size_757{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_757 .mode7-size_757 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_757 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_757 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_757{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_757 span:hover{
                color:!important;
            }
            .custom2_757{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_757 span:hover{
                color:;
            }
            #medical_box_757 .mode-btn1_757{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_757 .mode-btn1_757 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_757 .mode-btn2_757{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_757 .mode-btn2_757 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_757 .div-btn-title_main_757{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_757 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_757 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_756 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379190_takht foulad.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_756 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_756 .background-img{
                border-radius:;
            }
        
            #medical_box_756 .new_medical_icon{
                
            }
        #medical_box_756 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_756:hover .new_medical_title{}
                #medical_box_756 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_756 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_756:hover .new_medical_icon{}
                #medical_box_756 
            
            #medical_box_756 .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_756 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_756:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_756 .mode1-size_756{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_756 .new_medical_box > div{
                width:100%;
            }
             #medical_box_756 > div{
               height:100%;
            }
            #medical_box_756 .mode2-size_756{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_756 .mode3-size_756{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_756 .mode4-size_756{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_756 .mode5-size_756{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_756 .mode6-size_756{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_756 .mode7-size_756{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_756 .mode7-size_756 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_756 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_756 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_756{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_756 span:hover{
                color:!important;
            }
            .custom2_756{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_756 span:hover{
                color:;
            }
            #medical_box_756 .mode-btn1_756{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_756 .mode-btn1_756 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_756 .mode-btn2_756{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_756 .mode-btn2_756 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_756 .div-btn-title_main_756{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_756 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_756 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_755 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636379085_talar mashahir.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_755 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_755 .background-img{
                border-radius:;
            }
        
            #medical_box_755 .new_medical_icon{
                
            }
        #medical_box_755 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_755:hover .new_medical_title{}
                #medical_box_755 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_755 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_755:hover .new_medical_icon{}
                #medical_box_755 
            
            #medical_box_755 .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_755 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_755:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_755 .mode1-size_755{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_755 .new_medical_box > div{
                width:100%;
            }
             #medical_box_755 > div{
               height:100%;
            }
            #medical_box_755 .mode2-size_755{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_755 .mode3-size_755{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_755 .mode4-size_755{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_755 .mode5-size_755{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_755 .mode6-size_755{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_755 .mode7-size_755{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_755 .mode7-size_755 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_755 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_755 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_755{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_755 span:hover{
                color:!important;
            }
            .custom2_755{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_755 span:hover{
                color:;
            }
            #medical_box_755 .mode-btn1_755{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_755 .mode-btn1_755 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_755 .mode-btn2_755{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_755 .mode-btn2_755 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_755 .div-btn-title_main_755{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_755 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_755 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_754 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378998_tv esf.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_754 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_754 .background-img{
                border-radius:;
            }
        
            #medical_box_754 .new_medical_icon{
                
            }
        #medical_box_754 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_754:hover .new_medical_title{}
                #medical_box_754 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_754 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_754:hover .new_medical_icon{}
                #medical_box_754 
            
            #medical_box_754 .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_754 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_754:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_754 .mode1-size_754{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_754 .new_medical_box > div{
                width:100%;
            }
             #medical_box_754 > div{
               height:100%;
            }
            #medical_box_754 .mode2-size_754{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_754 .mode3-size_754{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_754 .mode4-size_754{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_754 .mode5-size_754{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_754 .mode6-size_754{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_754 .mode7-size_754{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_754 .mode7-size_754 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_754 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_754 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_754{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_754 span:hover{
                color:!important;
            }
            .custom2_754{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_754 span:hover{
                color:;
            }
            #medical_box_754 .mode-btn1_754{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_754 .mode-btn1_754 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_754 .mode-btn2_754{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_754 .mode-btn2_754 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_754 .div-btn-title_main_754{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_754 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_754 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_753 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378522_vip.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_753 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_753 .background-img{
                border-radius:;
            }
        
            #medical_box_753 .new_medical_icon{
                
            }
        #medical_box_753 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_753:hover .new_medical_title{}
                #medical_box_753 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_753 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_753:hover .new_medical_icon{}
                #medical_box_753 
            
            #medical_box_753 .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_753 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_753:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_753 .mode1-size_753{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_753 .new_medical_box > div{
                width:100%;
            }
             #medical_box_753 > div{
               height:100%;
            }
            #medical_box_753 .mode2-size_753{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_753 .mode3-size_753{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_753 .mode4-size_753{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_753 .mode5-size_753{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_753 .mode6-size_753{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_753 .mode7-size_753{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_753 .mode7-size_753 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_753 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_753 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_753{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_753 span:hover{
                color:!important;
            }
            .custom2_753{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_753 span:hover{
                color:;
            }
            #medical_box_753 .mode-btn1_753{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_753 .mode-btn1_753 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_753 .mode-btn2_753{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_753 .mode-btn2_753 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_753 .div-btn-title_main_753{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_753 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_753 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_752 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378448_rih rouzegarian.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_752 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_752 .background-img{
                border-radius:;
            }
        
            #medical_box_752 .new_medical_icon{
                
            }
        #medical_box_752 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_752:hover .new_medical_title{}
                #medical_box_752 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_752 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_752:hover .new_medical_icon{}
                #medical_box_752 
            
            #medical_box_752 .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_752 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_752:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_752 .mode1-size_752{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_752 .new_medical_box > div{
                width:100%;
            }
             #medical_box_752 > div{
               height:100%;
            }
            #medical_box_752 .mode2-size_752{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_752 .mode3-size_752{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_752 .mode4-size_752{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_752 .mode5-size_752{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_752 .mode6-size_752{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_752 .mode7-size_752{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_752 .mode7-size_752 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_752 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_752 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_752{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_752 span:hover{
                color:!important;
            }
            .custom2_752{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_752 span:hover{
                color:;
            }
            #medical_box_752 .mode-btn1_752{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_752 .mode-btn1_752 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_752 .mode-btn2_752{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_752 .mode-btn2_752 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_752 .div-btn-title_main_752{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_752 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_752 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_751 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/about-us/1636378383_zarin shahr.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_751 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_751 .background-img{
                border-radius:;
            }
        
            #medical_box_751 .new_medical_icon{
                
            }
        #medical_box_751 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_751:hover .new_medical_title{}
                #medical_box_751 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_751 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_751:hover .new_medical_icon{}
                #medical_box_751 
            
            #medical_box_751 .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_751 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_751:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_751 .mode1-size_751{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_751 .new_medical_box > div{
                width:100%;
            }
             #medical_box_751 > div{
               height:100%;
            }
            #medical_box_751 .mode2-size_751{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_751 .mode3-size_751{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_751 .mode4-size_751{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_751 .mode5-size_751{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_751 .mode6-size_751{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_751 .mode7-size_751{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_751 .mode7-size_751 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_751 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_751 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_751{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_751 span:hover{
                color:!important;
            }
            .custom2_751{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_751 span:hover{
                color:;
            }
            #medical_box_751 .mode-btn1_751{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_751 .mode-btn1_751 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_751 .mode-btn2_751{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_751 .mode-btn2_751 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_751 .div-btn-title_main_751{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_751 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_751 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_839 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717585701_logo-1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_839 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_839 .background-img{
                border-radius:;
            }
        
            #medical_box_839 .new_medical_icon{
                
            }
        #medical_box_839 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_839 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_839 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_839:hover .new_medical_icon{}
                #medical_box_839 
            
            #medical_box_839 .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_839 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_839:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_839 .mode1-size_839{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_839 .new_medical_box > div{
                width:100%;
            }
             #medical_box_839 > div{
               height:100%;
            }
            #medical_box_839 .mode2-size_839{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_839 .mode3-size_839{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_839 .mode4-size_839{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_839 .mode5-size_839{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_839 .mode6-size_839{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_839 .mode7-size_839{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_839 .mode7-size_839 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_839 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_839 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_839{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_839 span:hover{
                color:!important;
            }
            .custom2_839{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_839 span:hover{
                color:;
            }
            #medical_box_839 .mode-btn1_839{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_839 .mode-btn1_839 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_839 .mode-btn2_839{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_839 .mode-btn2_839 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_839 .div-btn-title_main_839{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_839 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_839 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_838 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717575574_logo-1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_838 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_838 .background-img{
                border-radius:;
            }
        
            #medical_box_838 .new_medical_icon{
                
            }
        #medical_box_838 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_838 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_838 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_838:hover .new_medical_icon{}
                #medical_box_838 
            
            #medical_box_838 .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_838 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_838:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_838 .mode1-size_838{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_838 .new_medical_box > div{
                width:100%;
            }
             #medical_box_838 > div{
               height:100%;
            }
            #medical_box_838 .mode2-size_838{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_838 .mode3-size_838{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_838 .mode4-size_838{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_838 .mode5-size_838{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_838 .mode6-size_838{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_838 .mode7-size_838{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_838 .mode7-size_838 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_838 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_838 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_838{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_838 span:hover{
                color:!important;
            }
            .custom2_838{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_838 span:hover{
                color:;
            }
            #medical_box_838 .mode-btn1_838{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_838 .mode-btn1_838 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_838 .mode-btn2_838{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_838 .mode-btn2_838 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_838 .div-btn-title_main_838{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_838 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_838 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_837 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717574786_logo-1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_837 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_837 .background-img{
                border-radius:;
            }
        
            #medical_box_837 .new_medical_icon{
                
            }
        #medical_box_837 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_837 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_837 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_837:hover .new_medical_icon{}
                #medical_box_837 
            
            #medical_box_837 .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_837 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_837:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_837 .mode1-size_837{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_837 .new_medical_box > div{
                width:100%;
            }
             #medical_box_837 > div{
               height:100%;
            }
            #medical_box_837 .mode2-size_837{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_837 .mode3-size_837{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_837 .mode4-size_837{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_837 .mode5-size_837{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_837 .mode6-size_837{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_837 .mode7-size_837{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_837 .mode7-size_837 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_837 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_837 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_837{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_837 span:hover{
                color:!important;
            }
            .custom2_837{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_837 span:hover{
                color:;
            }
            #medical_box_837 .mode-btn1_837{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_837 .mode-btn1_837 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_837 .mode-btn2_837{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_837 .mode-btn2_837 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_837 .div-btn-title_main_837{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_837 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_837 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_836 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717574475_logo-1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_836 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_836 .background-img{
                border-radius:;
            }
        
            #medical_box_836 .new_medical_icon{
                
            }
        #medical_box_836 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_836 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_836 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_836:hover .new_medical_icon{}
                #medical_box_836 
            
            #medical_box_836 .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_836 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_836:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_836 .mode1-size_836{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_836 .new_medical_box > div{
                width:100%;
            }
             #medical_box_836 > div{
               height:100%;
            }
            #medical_box_836 .mode2-size_836{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_836 .mode3-size_836{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_836 .mode4-size_836{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_836 .mode5-size_836{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_836 .mode6-size_836{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_836 .mode7-size_836{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_836 .mode7-size_836 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_836 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_836 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_836{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_836 span:hover{
                color:!important;
            }
            .custom2_836{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_836 span:hover{
                color:;
            }
            #medical_box_836 .mode-btn1_836{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_836 .mode-btn1_836 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_836 .mode-btn2_836{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_836 .mode-btn2_836 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_836 .div-btn-title_main_836{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_836 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_836 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_835 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717574048_00.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_835 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_835 .background-img{
                border-radius:;
            }
        
            #medical_box_835 .new_medical_icon{
                
            }
        #medical_box_835 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_835 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_835 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_835:hover .new_medical_icon{}
                #medical_box_835 
            
            #medical_box_835 .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_835 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_835:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_835 .mode1-size_835{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_835 .new_medical_box > div{
                width:100%;
            }
             #medical_box_835 > div{
               height:100%;
            }
            #medical_box_835 .mode2-size_835{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_835 .mode3-size_835{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_835 .mode4-size_835{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_835 .mode5-size_835{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_835 .mode6-size_835{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_835 .mode7-size_835{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_835 .mode7-size_835 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_835 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_835 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_835{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_835 span:hover{
                color:!important;
            }
            .custom2_835{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_835 span:hover{
                color:;
            }
            #medical_box_835 .mode-btn1_835{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_835 .mode-btn1_835 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_835 .mode-btn2_835{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_835 .mode-btn2_835 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_835 .div-btn-title_main_835{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_835 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_835 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_834 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717573196_00.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_834 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_834 .background-img{
                border-radius:;
            }
        
            #medical_box_834 .new_medical_icon{
                
            }
        #medical_box_834 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_834 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_834 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_834:hover .new_medical_icon{}
                #medical_box_834 
            
            #medical_box_834 .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_834 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_834:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_834 .mode1-size_834{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_834 .new_medical_box > div{
                width:100%;
            }
             #medical_box_834 > div{
               height:100%;
            }
            #medical_box_834 .mode2-size_834{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_834 .mode3-size_834{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_834 .mode4-size_834{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_834 .mode5-size_834{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_834 .mode6-size_834{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_834 .mode7-size_834{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_834 .mode7-size_834 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_834 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_834 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_834{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_834 span:hover{
                color:!important;
            }
            .custom2_834{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_834 span:hover{
                color:;
            }
            #medical_box_834 .mode-btn1_834{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_834 .mode-btn1_834 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_834 .mode-btn2_834{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_834 .mode-btn2_834 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_834 .div-btn-title_main_834{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_834 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_834 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_833 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717573049_00.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_833 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_833 .background-img{
                border-radius:;
            }
        
            #medical_box_833 .new_medical_icon{
                
            }
        #medical_box_833 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_833 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_833 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_833:hover .new_medical_icon{}
                #medical_box_833 
            
            #medical_box_833 .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_833 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_833:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_833 .mode1-size_833{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_833 .new_medical_box > div{
                width:100%;
            }
             #medical_box_833 > div{
               height:100%;
            }
            #medical_box_833 .mode2-size_833{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_833 .mode3-size_833{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_833 .mode4-size_833{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_833 .mode5-size_833{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_833 .mode6-size_833{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_833 .mode7-size_833{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_833 .mode7-size_833 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_833 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_833 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_833{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_833 span:hover{
                color:!important;
            }
            .custom2_833{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_833 span:hover{
                color:;
            }
            #medical_box_833 .mode-btn1_833{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_833 .mode-btn1_833 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_833 .mode-btn2_833{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_833 .mode-btn2_833 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_833 .div-btn-title_main_833{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_833 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_833 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_832 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717571901_00.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_832 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_832 .background-img{
                border-radius:;
            }
        
            #medical_box_832 .new_medical_icon{
                
            }
        #medical_box_832 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_832 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_832 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_832:hover .new_medical_icon{}
                #medical_box_832 
            
            #medical_box_832 .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_832 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_832:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_832 .mode1-size_832{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_832 .new_medical_box > div{
                width:100%;
            }
             #medical_box_832 > div{
               height:100%;
            }
            #medical_box_832 .mode2-size_832{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_832 .mode3-size_832{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_832 .mode4-size_832{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_832 .mode5-size_832{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_832 .mode6-size_832{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_832 .mode7-size_832{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_832 .mode7-size_832 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_832 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_832 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_832{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_832 span:hover{
                color:!important;
            }
            .custom2_832{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_832 span:hover{
                color:;
            }
            #medical_box_832 .mode-btn1_832{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_832 .mode-btn1_832 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_832 .mode-btn2_832{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_832 .mode-btn2_832 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_832 .div-btn-title_main_832{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_832 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_832 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_831 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717571652_00.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_831 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_831 .background-img{
                border-radius:;
            }
        
            #medical_box_831 .new_medical_icon{
                
            }
        #medical_box_831 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_831 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_831 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_831:hover .new_medical_icon{}
                #medical_box_831 
            
            #medical_box_831 .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_831 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_831:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_831 .mode1-size_831{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_831 .new_medical_box > div{
                width:100%;
            }
             #medical_box_831 > div{
               height:100%;
            }
            #medical_box_831 .mode2-size_831{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_831 .mode3-size_831{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_831 .mode4-size_831{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_831 .mode5-size_831{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_831 .mode6-size_831{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_831 .mode7-size_831{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_831 .mode7-size_831 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_831 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_831 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_831{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_831 span:hover{
                color:!important;
            }
            .custom2_831{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_831 span:hover{
                color:;
            }
            #medical_box_831 .mode-btn1_831{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_831 .mode-btn1_831 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_831 .mode-btn2_831{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_831 .mode-btn2_831 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_831 .div-btn-title_main_831{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_831 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_831 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_830 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1717571337_00.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_830 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_830 .background-img{
                border-radius:;
            }
        
            #medical_box_830 .new_medical_icon{
                
            }
        #medical_box_830 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_830 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_830 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_830:hover .new_medical_icon{}
                #medical_box_830 
            
            #medical_box_830 .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_830 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_830:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_830 .mode1-size_830{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_830 .new_medical_box > div{
                width:100%;
            }
             #medical_box_830 > div{
               height:100%;
            }
            #medical_box_830 .mode2-size_830{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_830 .mode3-size_830{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_830 .mode4-size_830{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_830 .mode5-size_830{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_830 .mode6-size_830{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_830 .mode7-size_830{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_830 .mode7-size_830 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_830 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_830 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_830{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_830 span:hover{
                color:!important;
            }
            .custom2_830{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_830 span:hover{
                color:;
            }
            #medical_box_830 .mode-btn1_830{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_830 .mode-btn1_830 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_830 .mode-btn2_830{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_830 .mode-btn2_830 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_830 .div-btn-title_main_830{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_830 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_830 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_829 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1709642335_alborz.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_829 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_829 .background-img{
                border-radius:;
            }
        
            #medical_box_829 .new_medical_icon{
                
            }
        #medical_box_829 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_829:hover .new_medical_title{}
                #medical_box_829 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_829 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_829:hover .new_medical_icon{}
                #medical_box_829 
            
            #medical_box_829 .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_829 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_829:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_829 .mode1-size_829{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_829 .new_medical_box > div{
                width:100%;
            }
             #medical_box_829 > div{
               height:100%;
            }
            #medical_box_829 .mode2-size_829{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_829 .mode3-size_829{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_829 .mode4-size_829{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_829 .mode5-size_829{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_829 .mode6-size_829{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_829 .mode7-size_829{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_829 .mode7-size_829 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_829 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_829 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_829{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_829 span:hover{
                color:!important;
            }
            .custom2_829{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_829 span:hover{
                color:;
            }
            #medical_box_829 .mode-btn1_829{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_829 .mode-btn1_829 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_829 .mode-btn2_829{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_829 .mode-btn2_829 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_829 .div-btn-title_main_829{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_829 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_829 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_828 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1709642039_ایرست.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_828 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_828 .background-img{
                border-radius:;
            }
        
            #medical_box_828 .new_medical_icon{
                
            }
        #medical_box_828 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_828:hover .new_medical_title{}
                #medical_box_828 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_828 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_828:hover .new_medical_icon{}
                #medical_box_828 
            
            #medical_box_828 .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_828 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_828:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_828 .mode1-size_828{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_828 .new_medical_box > div{
                width:100%;
            }
             #medical_box_828 > div{
               height:100%;
            }
            #medical_box_828 .mode2-size_828{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_828 .mode3-size_828{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_828 .mode4-size_828{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_828 .mode5-size_828{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_828 .mode6-size_828{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_828 .mode7-size_828{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_828 .mode7-size_828 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_828 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_828 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_828{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_828 span:hover{
                color:!important;
            }
            .custom2_828{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_828 span:hover{
                color:;
            }
            #medical_box_828 .mode-btn1_828{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_828 .mode-btn1_828 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_828 .mode-btn2_828{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_828 .mode-btn2_828 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_828 .div-btn-title_main_828{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_828 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_828 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_827 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1709641534_newsha.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_827 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_827 .background-img{
                border-radius:;
            }
        
            #medical_box_827 .new_medical_icon{
                
            }
        #medical_box_827 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_827:hover .new_medical_title{}
                #medical_box_827 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_827 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_827:hover .new_medical_icon{}
                #medical_box_827 
            
            #medical_box_827 .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_827 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_827:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_827 .mode1-size_827{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_827 .new_medical_box > div{
                width:100%;
            }
             #medical_box_827 > div{
               height:100%;
            }
            #medical_box_827 .mode2-size_827{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_827 .mode3-size_827{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_827 .mode4-size_827{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_827 .mode5-size_827{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_827 .mode6-size_827{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_827 .mode7-size_827{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_827 .mode7-size_827 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_827 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_827 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_827{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_827 span:hover{
                color:!important;
            }
            .custom2_827{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_827 span:hover{
                color:;
            }
            #medical_box_827 .mode-btn1_827{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_827 .mode-btn1_827 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_827 .mode-btn2_827{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_827 .mode-btn2_827 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_827 .div-btn-title_main_827{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_827 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_827 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_826 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1709640128_armanfar.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_826 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_826 .background-img{
                border-radius:;
            }
        
            #medical_box_826 .new_medical_icon{
                
            }
        #medical_box_826 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_826:hover .new_medical_title{}
                #medical_box_826 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_826 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_826:hover .new_medical_icon{}
                #medical_box_826 
            
            #medical_box_826 .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_826 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_826:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_826 .mode1-size_826{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_826 .new_medical_box > div{
                width:100%;
            }
             #medical_box_826 > div{
               height:100%;
            }
            #medical_box_826 .mode2-size_826{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_826 .mode3-size_826{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_826 .mode4-size_826{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_826 .mode5-size_826{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_826 .mode6-size_826{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_826 .mode7-size_826{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_826 .mode7-size_826 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_826 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_826 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_826{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_826 span:hover{
                color:!important;
            }
            .custom2_826{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_826 span:hover{
                color:;
            }
            #medical_box_826 .mode-btn1_826{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_826 .mode-btn1_826 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_826 .mode-btn2_826{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_826 .mode-btn2_826 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_826 .div-btn-title_main_826{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_826 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_826 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_825 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/cover/1709640701_danesh.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_825 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_825 .background-img{
                border-radius:;
            }
        
            #medical_box_825 .new_medical_icon{
                
            }
        #medical_box_825 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_825:hover .new_medical_title{}
                #medical_box_825 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_825 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_825:hover .new_medical_icon{}
                #medical_box_825 
            
            #medical_box_825 .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_825 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_825:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_825 .mode1-size_825{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_825 .new_medical_box > div{
                width:100%;
            }
             #medical_box_825 > div{
               height:100%;
            }
            #medical_box_825 .mode2-size_825{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_825 .mode3-size_825{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_825 .mode4-size_825{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_825 .mode5-size_825{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_825 .mode6-size_825{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_825 .mode7-size_825{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_825 .mode7-size_825 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_825 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_825 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_825{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_825 span:hover{
                color:!important;
            }
            .custom2_825{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_825 span:hover{
                color:;
            }
            #medical_box_825 .mode-btn1_825{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_825 .mode-btn1_825 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_825 .mode-btn2_825{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_825 .mode-btn2_825 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_825 .div-btn-title_main_825{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_825 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_825 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_824 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676447963_نیک آباد.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_824 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_824 .background-img{
                border-radius:;
            }
        
            #medical_box_824 .new_medical_icon{
                
            }
        #medical_box_824 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_824:hover .new_medical_title{}
                #medical_box_824 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_824 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_824:hover .new_medical_icon{}
                #medical_box_824 
            
            #medical_box_824 .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_824 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_824:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_824 .mode1-size_824{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_824 .new_medical_box > div{
                width:100%;
            }
             #medical_box_824 > div{
               height:100%;
            }
            #medical_box_824 .mode2-size_824{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_824 .mode3-size_824{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_824 .mode4-size_824{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_824 .mode5-size_824{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_824 .mode6-size_824{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_824 .mode7-size_824{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_824 .mode7-size_824 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_824 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_824 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_824{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_824 span:hover{
                color:!important;
            }
            .custom2_824{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_824 span:hover{
                color:;
            }
            #medical_box_824 .mode-btn1_824{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_824 .mode-btn1_824 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_824 .mode-btn2_824{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_824 .mode-btn2_824 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_824 .div-btn-title_main_824{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_824 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_824 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_823 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676447718_هواسیال.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_823 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_823 .background-img{
                border-radius:;
            }
        
            #medical_box_823 .new_medical_icon{
                
            }
        #medical_box_823 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_823:hover .new_medical_title{}
                #medical_box_823 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_823 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_823:hover .new_medical_icon{}
                #medical_box_823 
            
            #medical_box_823 .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_823 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_823:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_823 .mode1-size_823{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_823 .new_medical_box > div{
                width:100%;
            }
             #medical_box_823 > div{
               height:100%;
            }
            #medical_box_823 .mode2-size_823{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_823 .mode3-size_823{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_823 .mode4-size_823{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_823 .mode5-size_823{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_823 .mode6-size_823{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_823 .mode7-size_823{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_823 .mode7-size_823 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_823 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_823 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_823{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_823 span:hover{
                color:!important;
            }
            .custom2_823{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_823 span:hover{
                color:;
            }
            #medical_box_823 .mode-btn1_823{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_823 .mode-btn1_823 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_823 .mode-btn2_823{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_823 .mode-btn2_823 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_823 .div-btn-title_main_823{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_823 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_823 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_822 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676447832_نجف آباد.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_822 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_822 .background-img{
                border-radius:;
            }
        
            #medical_box_822 .new_medical_icon{
                
            }
        #medical_box_822 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_822:hover .new_medical_title{}
                #medical_box_822 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_822 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_822:hover .new_medical_icon{}
                #medical_box_822 
            
            #medical_box_822 .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_822 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_822:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_822 .mode1-size_822{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_822 .new_medical_box > div{
                width:100%;
            }
             #medical_box_822 > div{
               height:100%;
            }
            #medical_box_822 .mode2-size_822{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_822 .mode3-size_822{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_822 .mode4-size_822{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_822 .mode5-size_822{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_822 .mode6-size_822{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_822 .mode7-size_822{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_822 .mode7-size_822 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_822 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_822 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_822{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_822 span:hover{
                color:!important;
            }
            .custom2_822{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_822 span:hover{
                color:;
            }
            #medical_box_822 .mode-btn1_822{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_822 .mode-btn1_822 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_822 .mode-btn2_822{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_822 .mode-btn2_822 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_822 .div-btn-title_main_822{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_822 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_822 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_821 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676443606_GITI.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_821 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_821 .background-img{
                border-radius:;
            }
        
            #medical_box_821 .new_medical_icon{
                
            }
        #medical_box_821 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_821:hover .new_medical_title{}
                #medical_box_821 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_821 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_821:hover .new_medical_icon{}
                #medical_box_821 
            
            #medical_box_821 .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_821 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_821:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_821:hover{
                    
                    
                    
                    
                    
                    
                }
            
            #medical_box_821 .mode1-size_821{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_821 .new_medical_box > div{
                width:100%;
            }
             #medical_box_821 > div{
               height:100%;
            }
            #medical_box_821 .mode2-size_821{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_821 .mode3-size_821{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_821 .mode4-size_821{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_821 .mode5-size_821{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_821 .mode6-size_821{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_821 .mode7-size_821{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_821 .mode7-size_821 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_821 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_821 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_821{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_821 span:hover{
                color:!important;
            }
            .custom2_821{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_821 span:hover{
                color:;
            }
            #medical_box_821 .mode-btn1_821{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_821 .mode-btn1_821 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_821 .mode-btn2_821{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_821 .mode-btn2_821 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_821 .div-btn-title_main_821{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_821 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_821 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_820 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676442823_ostandary.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_820 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_820 .background-img{
                border-radius:;
            }
        
            #medical_box_820 .new_medical_icon{
                
            }
        #medical_box_820 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_820:hover .new_medical_title{}
                #medical_box_820 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_820 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_820:hover .new_medical_icon{}
                #medical_box_820 
            
            #medical_box_820 .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_820 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_820:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_820 .mode1-size_820{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_820 .new_medical_box > div{
                width:100%;
            }
             #medical_box_820 > div{
               height:100%;
            }
            #medical_box_820 .mode2-size_820{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_820 .mode3-size_820{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_820 .mode4-size_820{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_820 .mode5-size_820{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_820 .mode6-size_820{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_820 .mode7-size_820{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_820 .mode7-size_820 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_820 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_820 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_820{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_820 span:hover{
                color:!important;
            }
            .custom2_820{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_820 span:hover{
                color:;
            }
            #medical_box_820 .mode-btn1_820{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_820 .mode-btn1_820 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_820 .mode-btn2_820{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_820 .mode-btn2_820 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_820 .div-btn-title_main_820{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_820 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_820 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_819 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676444414_آبسان.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_819 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_819 .background-img{
                border-radius:;
            }
        
            #medical_box_819 .new_medical_icon{
                
            }
        #medical_box_819 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_819:hover .new_medical_title{}
                #medical_box_819 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_819 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_819:hover .new_medical_icon{}
                #medical_box_819 
            
            #medical_box_819 .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_819 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_819:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_819 .mode1-size_819{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_819 .new_medical_box > div{
                width:100%;
            }
             #medical_box_819 > div{
               height:100%;
            }
            #medical_box_819 .mode2-size_819{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_819 .mode3-size_819{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_819 .mode4-size_819{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_819 .mode5-size_819{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_819 .mode6-size_819{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_819 .mode7-size_819{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_819 .mode7-size_819 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_819 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_819 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_819{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_819 span:hover{
                color:!important;
            }
            .custom2_819{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_819 span:hover{
                color:;
            }
            #medical_box_819 .mode-btn1_819{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_819 .mode-btn1_819 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_819 .mode-btn2_819{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_819 .mode-btn2_819 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_819 .div-btn-title_main_819{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_819 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_819 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_818 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676444617_اریترون.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_818 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_818 .background-img{
                border-radius:;
            }
        
            #medical_box_818 .new_medical_icon{
                
            }
        #medical_box_818 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_818:hover .new_medical_title{}
                #medical_box_818 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_818 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_818:hover .new_medical_icon{}
                #medical_box_818 
            
            #medical_box_818 .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_818 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_818:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_818 .mode1-size_818{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_818 .new_medical_box > div{
                width:100%;
            }
             #medical_box_818 > div{
               height:100%;
            }
            #medical_box_818 .mode2-size_818{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_818 .mode3-size_818{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_818 .mode4-size_818{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_818 .mode5-size_818{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_818 .mode6-size_818{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_818 .mode7-size_818{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_818 .mode7-size_818 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_818 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_818 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_818{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_818 span:hover{
                color:!important;
            }
            .custom2_818{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_818 span:hover{
                color:;
            }
            #medical_box_818 .mode-btn1_818{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_818 .mode-btn1_818 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_818 .mode-btn2_818{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_818 .mode-btn2_818 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_818 .div-btn-title_main_818{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_818 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_818 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_817 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676444771_اکما.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_817 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_817 .background-img{
                border-radius:;
            }
        
            #medical_box_817 .new_medical_icon{
                
            }
        #medical_box_817 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_817:hover .new_medical_title{}
                #medical_box_817 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_817 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_817:hover .new_medical_icon{}
                #medical_box_817 
            
            #medical_box_817 .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_817 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_817:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_817 .mode1-size_817{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_817 .new_medical_box > div{
                width:100%;
            }
             #medical_box_817 > div{
               height:100%;
            }
            #medical_box_817 .mode2-size_817{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_817 .mode3-size_817{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_817 .mode4-size_817{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_817 .mode5-size_817{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_817 .mode6-size_817{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_817 .mode7-size_817{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_817 .mode7-size_817 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_817 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_817 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_817{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_817 span:hover{
                color:!important;
            }
            .custom2_817{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_817 span:hover{
                color:;
            }
            #medical_box_817 .mode-btn1_817{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_817 .mode-btn1_817 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_817 .mode-btn2_817{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_817 .mode-btn2_817 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_817 .div-btn-title_main_817{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_817 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_817 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_816 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676445008_تک ستاره .png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_816 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_816 .background-img{
                border-radius:;
            }
        
            #medical_box_816 .new_medical_icon{
                
            }
        #medical_box_816 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_816:hover .new_medical_title{}
                #medical_box_816 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_816 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_816:hover .new_medical_icon{}
                #medical_box_816 
            
            #medical_box_816 .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_816 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_816:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_816 .mode1-size_816{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_816 .new_medical_box > div{
                width:100%;
            }
             #medical_box_816 > div{
               height:100%;
            }
            #medical_box_816 .mode2-size_816{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_816 .mode3-size_816{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_816 .mode4-size_816{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_816 .mode5-size_816{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_816 .mode6-size_816{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_816 .mode7-size_816{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_816 .mode7-size_816 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_816 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_816 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_816{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_816 span:hover{
                color:!important;
            }
            .custom2_816{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_816 span:hover{
                color:;
            }
            #medical_box_816 .mode-btn1_816{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_816 .mode-btn1_816 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_816 .mode-btn2_816{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_816 .mode-btn2_816 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_816 .div-btn-title_main_816{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_816 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_816 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_814 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676445594_رایحه.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_814 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_814 .background-img{
                border-radius:;
            }
        
            #medical_box_814 .new_medical_icon{
                
            }
        #medical_box_814 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_814:hover .new_medical_title{}
                #medical_box_814 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_814 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_814:hover .new_medical_icon{}
                #medical_box_814 
            
            #medical_box_814 .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_814 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_814:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_814 .mode1-size_814{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_814 .new_medical_box > div{
                width:100%;
            }
             #medical_box_814 > div{
               height:100%;
            }
            #medical_box_814 .mode2-size_814{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_814 .mode3-size_814{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_814 .mode4-size_814{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_814 .mode5-size_814{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_814 .mode6-size_814{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_814 .mode7-size_814{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_814 .mode7-size_814 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_814 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_814 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_814{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_814 span:hover{
                color:!important;
            }
            .custom2_814{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_814 span:hover{
                color:;
            }
            #medical_box_814 .mode-btn1_814{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_814 .mode-btn1_814 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_814 .mode-btn2_814{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_814 .mode-btn2_814 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_814 .div-btn-title_main_814{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_814 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_814 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_813 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676445937_زیار.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_813 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_813 .background-img{
                border-radius:;
            }
        
            #medical_box_813 .new_medical_icon{
                
            }
        #medical_box_813 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_813:hover .new_medical_title{}
                #medical_box_813 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_813 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_813:hover .new_medical_icon{}
                #medical_box_813 
            
            #medical_box_813 .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_813 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_813:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_813 .mode1-size_813{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_813 .new_medical_box > div{
                width:100%;
            }
             #medical_box_813 > div{
               height:100%;
            }
            #medical_box_813 .mode2-size_813{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_813 .mode3-size_813{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_813 .mode4-size_813{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_813 .mode5-size_813{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_813 .mode6-size_813{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_813 .mode7-size_813{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_813 .mode7-size_813 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_813 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_813 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_813{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_813 span:hover{
                color:!important;
            }
            .custom2_813{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_813 span:hover{
                color:;
            }
            #medical_box_813 .mode-btn1_813{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_813 .mode-btn1_813 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_813 .mode-btn2_813{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_813 .mode-btn2_813 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_813 .div-btn-title_main_813{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_813 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_813 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_812 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676446040_ساینا.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_812 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_812 .background-img{
                border-radius:;
            }
        
            #medical_box_812 .new_medical_icon{
                
            }
        #medical_box_812 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_812:hover .new_medical_title{}
                #medical_box_812 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_812 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_812:hover .new_medical_icon{}
                #medical_box_812 
            
            #medical_box_812 .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_812 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_812:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_812 .mode1-size_812{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_812 .new_medical_box > div{
                width:100%;
            }
             #medical_box_812 > div{
               height:100%;
            }
            #medical_box_812 .mode2-size_812{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_812 .mode3-size_812{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_812 .mode4-size_812{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_812 .mode5-size_812{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_812 .mode6-size_812{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_812 .mode7-size_812{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_812 .mode7-size_812 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_812 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_812 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_812{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_812 span:hover{
                color:!important;
            }
            .custom2_812{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_812 span:hover{
                color:;
            }
            #medical_box_812 .mode-btn1_812{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_812 .mode-btn1_812 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_812 .mode-btn2_812{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_812 .mode-btn2_812 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_812 .div-btn-title_main_812{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_812 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_812 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_811 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676446210_فولاد.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_811 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_811 .background-img{
                border-radius:;
            }
        
            #medical_box_811 .new_medical_icon{
                
            }
        #medical_box_811 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_811:hover .new_medical_title{}
                #medical_box_811 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_811 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_811:hover .new_medical_icon{}
                #medical_box_811 
            
            #medical_box_811 .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_811 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_811:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_811 .mode1-size_811{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_811 .new_medical_box > div{
                width:100%;
            }
             #medical_box_811 > div{
               height:100%;
            }
            #medical_box_811 .mode2-size_811{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_811 .mode3-size_811{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_811 .mode4-size_811{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_811 .mode5-size_811{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_811 .mode6-size_811{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_811 .mode7-size_811{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_811 .mode7-size_811 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_811 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_811 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_811{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_811 span:hover{
                color:!important;
            }
            .custom2_811{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_811 span:hover{
                color:;
            }
            #medical_box_811 .mode-btn1_811{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_811 .mode-btn1_811 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_811 .mode-btn2_811{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_811 .mode-btn2_811 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_811 .div-btn-title_main_811{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_811 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_811 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_810 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676446408_کاردارپور.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_810 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_810 .background-img{
                border-radius:;
            }
        
            #medical_box_810 .new_medical_icon{
                
            }
        #medical_box_810 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_810:hover .new_medical_title{}
                #medical_box_810 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_810 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_810:hover .new_medical_icon{}
                #medical_box_810 
            
            #medical_box_810 .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_810 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_810:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_810 .mode1-size_810{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_810 .new_medical_box > div{
                width:100%;
            }
             #medical_box_810 > div{
               height:100%;
            }
            #medical_box_810 .mode2-size_810{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_810 .mode3-size_810{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_810 .mode4-size_810{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_810 .mode5-size_810{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_810 .mode6-size_810{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_810 .mode7-size_810{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_810 .mode7-size_810 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_810 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_810 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_810{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_810 span:hover{
                color:!important;
            }
            .custom2_810{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_810 span:hover{
                color:;
            }
            #medical_box_810 .mode-btn1_810{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_810 .mode-btn1_810 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_810 .mode-btn2_810{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_810 .mode-btn2_810 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_810 .div-btn-title_main_810{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_810 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_810 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_809 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676446607_کاکتوس.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_809 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_809 .background-img{
                border-radius:;
            }
        
            #medical_box_809 .new_medical_icon{
                
            }
        #medical_box_809 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_809:hover .new_medical_title{}
                #medical_box_809 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_809 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_809:hover .new_medical_icon{}
                #medical_box_809 
            
            #medical_box_809 .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_809 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_809:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_809 .mode1-size_809{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_809 .new_medical_box > div{
                width:100%;
            }
             #medical_box_809 > div{
               height:100%;
            }
            #medical_box_809 .mode2-size_809{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_809 .mode3-size_809{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_809 .mode4-size_809{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_809 .mode5-size_809{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_809 .mode6-size_809{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_809 .mode7-size_809{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_809 .mode7-size_809 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_809 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_809 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_809{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_809 span:hover{
                color:!important;
            }
            .custom2_809{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_809 span:hover{
                color:;
            }
            #medical_box_809 .mode-btn1_809{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_809 .mode-btn1_809 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_809 .mode-btn2_809{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_809 .mode-btn2_809 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_809 .div-btn-title_main_809{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_809 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_809 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_808 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676446708_کاواک.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_808 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_808 .background-img{
                border-radius:;
            }
        
            #medical_box_808 .new_medical_icon{
                
            }
        #medical_box_808 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_808:hover .new_medical_title{}
                #medical_box_808 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_808 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_808:hover .new_medical_icon{}
                #medical_box_808 
            
            #medical_box_808 .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_808 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_808:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_808 .mode1-size_808{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_808 .new_medical_box > div{
                width:100%;
            }
             #medical_box_808 > div{
               height:100%;
            }
            #medical_box_808 .mode2-size_808{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_808 .mode3-size_808{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_808 .mode4-size_808{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_808 .mode5-size_808{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_808 .mode6-size_808{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_808 .mode7-size_808{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_808 .mode7-size_808 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_808 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_808 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_808{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_808 span:hover{
                color:!important;
            }
            .custom2_808{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_808 span:hover{
                color:;
            }
            #medical_box_808 .mode-btn1_808{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_808 .mode-btn1_808 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_808 .mode-btn2_808{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_808 .mode-btn2_808 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_808 .div-btn-title_main_808{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_808 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_808 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_807 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676447228_کیتا.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_807 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_807 .background-img{
                border-radius:;
            }
        
            #medical_box_807 .new_medical_icon{
                
            }
        #medical_box_807 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_807:hover .new_medical_title{}
                #medical_box_807 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_807 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_807:hover .new_medical_icon{}
                #medical_box_807 
            
            #medical_box_807 .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_807 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_807:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_807 .mode1-size_807{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_807 .new_medical_box > div{
                width:100%;
            }
             #medical_box_807 > div{
               height:100%;
            }
            #medical_box_807 .mode2-size_807{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_807 .mode3-size_807{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_807 .mode4-size_807{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_807 .mode5-size_807{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_807 .mode6-size_807{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_807 .mode7-size_807{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_807 .mode7-size_807 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_807 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_807 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_807{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_807 span:hover{
                color:!important;
            }
            .custom2_807{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_807 span:hover{
                color:;
            }
            #medical_box_807 .mode-btn1_807{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_807 .mode-btn1_807 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_807 .mode-btn2_807{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_807 .mode-btn2_807 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_807 .div-btn-title_main_807{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_807 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_807 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_806 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676447345_گل پارادایس.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_806 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_806 .background-img{
                border-radius:;
            }
        
            #medical_box_806 .new_medical_icon{
                
            }
        #medical_box_806 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_806:hover .new_medical_title{}
                #medical_box_806 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_806 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_806:hover .new_medical_icon{}
                #medical_box_806 
            
            #medical_box_806 .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_806 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_806:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_806 .mode1-size_806{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_806 .new_medical_box > div{
                width:100%;
            }
             #medical_box_806 > div{
               height:100%;
            }
            #medical_box_806 .mode2-size_806{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_806 .mode3-size_806{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_806 .mode4-size_806{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_806 .mode5-size_806{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_806 .mode6-size_806{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_806 .mode7-size_806{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_806 .mode7-size_806 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_806 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_806 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_806{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_806 span:hover{
                color:!important;
            }
            .custom2_806{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_806 span:hover{
                color:;
            }
            #medical_box_806 .mode-btn1_806{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_806 .mode-btn1_806 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_806 .mode-btn2_806{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_806 .mode-btn2_806 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_806 .div-btn-title_main_806{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_806 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_806 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_805 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/gallery/video/1676447560_میلاد.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_805 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_805 .background-img{
                border-radius:;
            }
        
            #medical_box_805 .new_medical_icon{
                
            }
        #medical_box_805 .new_medical_title{color:#000;font-weight:200;text-align:center;margin-top:10px;padding-right:20px;padding-left:20px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_805 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_805 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;margin-top:10px;margin-right:20px;margin-left:20px;border-style:none;border-color:#000;}#medical_box_805:hover .new_medical_icon{}
                #medical_box_805 
            
            #medical_box_805 .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_805 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_805:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_805 .mode1-size_805{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_805 .new_medical_box > div{
                width:100%;
            }
             #medical_box_805 > div{
               height:100%;
            }
            #medical_box_805 .mode2-size_805{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_805 .mode3-size_805{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_805 .mode4-size_805{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_805 .mode5-size_805{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_805 .mode6-size_805{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_805 .mode7-size_805{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_805 .mode7-size_805 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_805 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_805 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_805{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_805 span:hover{
                color:!important;
            }
            .custom2_805{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_805 span:hover{
                color:;
            }
            #medical_box_805 .mode-btn1_805{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_805 .mode-btn1_805 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_805 .mode-btn2_805{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_805 .mode-btn2_805 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_805 .div-btn-title_main_805{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_805 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_805 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_252 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='1073']:hover .new_medical_box_main{}
            #module_new_medical_252 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_252 .new_medical_module{
                    width:191px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_252 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_252 .new_medical_module:nth-child(6n){
                    margin-left:0;
                }
                #module_new_medical_252 .medical_box_main_animation_trigger:nth-child(6n){
                    margin-left:0;
                }
                #module_new_medical_252 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_252 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_252 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_252 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_252 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_252 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_252{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_252 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_252 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_252 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_252 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_252 .swiper-container{
                width:1200px;
            }
            #module_new_medical_252 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_252 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_252 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_252 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            
            body{
                position: relative;
            }
            .public-header{
                position: relative;
                transition:5s;
            }
            .absolute-container{
                background-color: transparet;
                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: 64px;
                height: 64px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
            }
            .social-absolute img{
                width: 64px;
                height: 64px;
            }
            .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: #fddb3a;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #262626;
                width: 0;
                padding: 0;
                font-size: 0.9rem;
                top: 50%;
                left: calc(64px + 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 #262626 transparent transparent;
                top: 50%;
                left: calc(64px + 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: #262626;
                    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: 18px;
                height: 18px;
                background: #ffdb3a;
                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: 24px;
                height: 24px;
            }
            .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: 64px;
                height: 64px;
            }
            .top-social li a span{
                font-size: 50px;
                font-weight: 600;
                color: #42474c;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  50px;
            }
            .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: #42474c;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 2px;
                height: 2px;
                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: 15px;
                font-weight: normal;search
            }
            .top-nav-list:hover{
                background-color: transparent;
            }
            .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: #000;
                fill: #000;
            }
            .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: #000;
            }
            
            .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: transparent;
            }
            .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: 60px;
                padding-bottom: 10px;
                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: 270px;
                height: 60px;
                max-width: 270px;
                max-height: 60px;
                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: #262626;
                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: ;
            }
            
            .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: #ffffff ;
            }
            .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: 18px;
                color: #ffdb3a;
            }
            .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%  +  8px);
                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%  +  8px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width:200px;
                        border-left: 8px solid #ffdb3a;
                    }
                
        
            .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: #ffdb3a;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: #ffffff;
            }
            .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: 15px;
            }
            .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: ;
            }     
            .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: #e84118;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                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: #e84118;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #2c3e50;
                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: #e84118;
                    border-radius: 3px;
                    background: #2c3e50;
                    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: #3e5772;
                    }
                    .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: #3e5772;
                    }
                    .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: #3e5772;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: #3e5772;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #e84118;
            
            
            }
            .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: #e84118;
                    /*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;
            }
            
                
                .icon-container .icon-item{
                    width: unset;
                    height: unset;
                }
                .search-icon{
                    position: relative;
                }
                .search-container {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-end;
                    align-items: center;
                    height: 100%;
                    position: relative;
                    border-radius: 3px;
                    min-width: 45px;
                }
                .search-container > .search-btn svg,
                .search-container > .close-search-btn svg{
                    fill: #e84118;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
                .search-btn {
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .8s;
                    cursor: pointer;
                    text-decoration: none;
                    border: 0px  solid  transparent;
                }
                
                .icon-container .icon-item img{
                    width: 25px;
                    height: 25px;
                    object-fit:contain;
                }
                
                    .search-container.open-search-box .search-btn{
                        border-radius: 3px 0 0 3px !important;
                    }
                    .search-container.open-search-box .close-search-btn{
                        border-radius: 0 3px 3px 0 !important;
                    }
                 
                
                .search-btn,
                .search-command,
                .close-search-btn{
                    box-sizing: content-box;
                }
                .search-btn > svg {
                    fill: #fff;
                }
                .cls-pls::placeholder{
                    color: ;
                }
                .search-input {
                    padding: 0;
                    height: 100%;
                    background: #2c3e50;
                    color: #fff;
                    font-size: 14px;
                    font-weight: normal;
                    transition: all 1s ease-in-out;
                    width: 0;
                    position: absolute;
                    top: 0;
                    overflow: hidden;
                    white-space: nowrap;
                    border: 0px  solid  transparent;
                }
                
                .open-search-box > .search-input{
                    padding : 10px 48px;
                }
                
                    
                    .search-input {
                        left: calc(0px + 45px);
                        border-right: none;
                        border-left: none;
                    }
                
                        .search-container.open-search-box .search-btn{
                            border-radius: 3px 0 0 3px !important;
                        }
                        .search-container.open-search-box .close-search-btn{
                            border-radius: 0 3px 3px 0 !important;
                        }
                        .search-container.open-search-box .search-input{
                            border-radius: 0 3px 3px 0 !important;
                        }
                    
                
                .close-search-btn{
                    position: absolute;
                    color: #fff;
                    width: 45px;
                    height: 45px;
                    margin: 0;
                    outline: none;
                    border-radius: 3px;
                    background: #2c3e50;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    box-sizing: border-box;
                    box-sizing: border-box;
                }
                .close-search-btn svg{
                    fill: #e84118;
                }
            
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color: #ddd !important;
            }
            .public_sticky{
                width: 100%;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 1001;
            }
            .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: #ffdb3a;
            }
            .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: px  solid  ;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #262626;
            }
            #back_to_top svg{
                width: 30px;
                height: 30px;
                fill: #fddb3a;
            }
            #back_to_top img{
                width: 30px;
                height: 30px;
                fill: #fddb3a;
                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: 2fr 270px 2fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"
                            "bottom-2 bottom-2 bottom-2"; 
                    }
                    .public-header .top-section-1{
                        justify-content: center;
                    }
                    .public-header .top-section-2{
                        justify-content: center;
                    }
                    .logo-container{
                        justify-content: center;
                    }
                    .nav-container{
                        padding: 15px;
                        justify-content: center;
                    }
                    .nav-container .navbar{
                        justify-content: center;
                    }
                    .public-header .bottom-section-2{
                        justify-content: center;
                    }
                    
                #module_footer_section_2{
;
justify-content:center;
padding-top:2%;
padding-right:2%;
padding-bottom:2%;
padding-left:2%;
border-style:none;
}#module_footer_column_2{
;
justify-content:center;
padding-top:3.5vw;
padding-bottom:3vw;
border-style:none;
}#module_footer_row_2{
;
justify-content:center;
border-style:none;
}#module_footer_items_2{
;
cursor:default;
width:20vw;
height:5vw;
background-color:transparent;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-bottom:6px;
}#module_footer_items_2:hover{
;
background-color:transparent;
}#module_footer_row_3{
;
justify-content:center;
padding-top:2vw;
border-style:none;
}#module_footer_items_3{
;
cursor:default;
text-align:center;
color:#fddb3a;
font-weight:300;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:solid;
border-left-width:.08px;
border-color:#76869a;
margin-top:5px;
padding-left:2vw;
}#module_footer_items_3:hover{
;
}#module_footer_items_4{
;
cursor:default;
text-align:center;
color:#fddb3a;
font-weight:300;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:solid;
border-left-width:.08vw;
border-color:#76869a;
margin-top:5px;
padding-right:1.5vw;
padding-left:1.5vw;
}#module_footer_items_4:hover{
;
}#module_footer_items_5{
;
cursor:default;
color:#fddb3a;
font-weight:300;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:solid;
border-left-width:.08vw;
border-color:#76869a;
margin-top:5px;
padding-right:1.5vw;
padding-left:1.5vw;
}#module_footer_items_5:hover{
;
}#module_footer_items_6{
;
cursor:default;
text-align:center;
color:#fddb3a;
font-weight:300;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:solid;
border-left-width:.08vw;
border-color:#76869a;
margin-top:5px;
padding-right:1.5vw;
padding-left:1.5vw;
}#module_footer_items_6:hover{
;
}#module_footer_items_7{
;
cursor:default;
text-align:center;
color:#fddb3a;
font-weight:300;
font-size:1.2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
border-color:#76869a;
margin-top:5px;
padding-right:1.5vw;
padding-left:1.5vw;
}#module_footer_items_7:hover{
;
}#module_footer_row_4{
;
justify-content:center;
padding-top:3vw;
padding-bottom:3vw;
border-style:none;
}#module_footer_items_9{
;
cursor:pointer;
text-align:center;
width:3vw;
height:3vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-left:2vw;
}#module_footer_items_9:hover{
;
}#module_footer_items_10{
;
cursor:pointer;
text-align:center;
width:3vw;
height:3vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0vw;
margin-right:2vw;
margin-left:2vw;
}#module_footer_items_10:hover{
;
}#module_footer_items_11{
;
cursor:pointer;
text-align:center;
width:3vw;
height:3vw;
color:#ffffff;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0vw;
margin-right:2vw;
margin-left:2vw;
}#module_footer_items_11:hover{
;
}#module_footer_items_12{
;
cursor:pointer;
text-align:center;
width:3vw;
height:3vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0vw;
margin-right:2vw;
margin-left:2vw;
}#module_footer_items_12:hover{
;
}#module_footer_row_5{
;
justify-content:center;
border-style:none;
}#module_footer_items_14{
;
cursor:default;
text-align:center;
color:#8e8e8e;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_14:hover{
;
}#module_footer_section_4{
;
justify-content:center;
padding-bottom:.5vw;
border-style:none;
}#module_footer_column_4{
;
justify-content:center;
border-style:none;
}#module_footer_row_11{
;
justify-content:center;
border-style:none;
}#module_footer_items_32{
;
cursor:default;
text-align:left;
color:#bfbfbf;
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_32:hover{
;
}
                    #public_footer_main_2{
                        #262626
                    }
                #public_footer_main_2{;background-color:#262626;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_2:hover{;}#public_footer_main_2{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_2 > div{
                    position:relative;
                    z-index:12;
                }
                #public_footer_main_2 
            
            #public_footer_main_2 .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_2 .layer_first_child {
                width: 100%;
            }
        
            #public_footer_main_2: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;
            }
        
                                #module_footer_items_2{
                                    transparent
                                }
                            
            #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;}