/**
 * 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;
}#layoutfull_box_131.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:28vw;border-style:none;}#layoutfull_box_131:hover{}#layoutfull_box_131 .new_layoutfull_button{color:#ffdb3a;font-weight:300;font-size:1.2vw;width:15vw;height:2.5vw;line-height:1.8vw;text-align:center;margin-top:2vw;margin-bottom:3vw;border-radius:2.5vw;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:#ffdb3a;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_131 .new_layoutfull_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#layoutfull_box_131 .new_layoutfull_title{color:transparent;font-weight:bold;font-size:2.5vw;text-align:center;margin-top:8vw;margin-bottom:12vw;}#layoutfull_box_131:hover .new_layoutfull_title{color:transparent !important;}
                #layoutfull_box_131 .new_layoutfull_title h1{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_131:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_131 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://asgharabdoli.com/files/banner/1701869068_hederabdoli.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_131 
            
            #layoutfull_box_131 .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_131 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_131:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_131 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_131.cursor_box{
                cursor:pointer; 
            }
        
                #layoutfull_box_131 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_79{
                overflow:hidden;
            }
            #module_new_layoutfull_79 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_79 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_79 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
                        .module[data-id_page='990']{
                            background: linear-gradient(to right, #e2e2e0, #fbfbfb);
                        }
                    .module[data-id_page='990']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:900px;padding-bottom:150px;padding-right:30px;padding-left:30px;border-style:none;}.module[data-id_page='990']:hover{;}.module[data-id_page='990']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='990'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='990']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='990'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='990'] 
            
            .module[data-id_page='990'] .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='990'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='990']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='990']{
                               background-image:url("https://asgharabdoli.com/files/cover/1715157203_1632376336_div1.jpg");
                           }
                       #layoutfull_box_138 .new_layoutfull_description{color:#000;font-weight:200;line-height:1.5vw;text-align:justify;padding-bottom:6vw;padding-right:23vw;padding-left:30vw;border-style:solid;border-color:#555;}#layoutfull_box_138:hover .new_layoutfull_description{}#layoutfull_box_138 .new_layoutfull_title{color:#000;font-weight:bold;font-size:2vw;text-align:center;margin-top:9vw;margin-bottom:1vw;padding-right:0vw;padding-left:21vw;}#layoutfull_box_138:hover .new_layoutfull_title{}
                #layoutfull_box_138 .new_layoutfull_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_138 
            
            #layoutfull_box_138 .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_138 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_138:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_138 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_138.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_138 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_85{
                overflow:hidden;
            }
            #module_new_layoutfull_85 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_85 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_85 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
                        .module[data-id_page='991']{
                            background: linear-gradient(to right, #e2e2e0, #fbfbfb);
                        }
                    .module[data-id_page='991']{;background-size:cover;background-repeat:repeat;background-position:bottom;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='991']:hover{;}.module[data-id_page='991']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='991'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='991'] 
            
            .module[data-id_page='991'] .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='991'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='991']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_250 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_250 .content_str{
				width:100%;
			}
            #module_new_medical_250 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_250 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_250 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_250 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_250 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_250 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_250 .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_250 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_250 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_250 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_250 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_250 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_250 .new_medical_description a,#module_new_medical_250 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_250 .new_medical_description a:hover,#module_new_medical_250 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_250 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_250 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_741 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1631710576_picbox.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_741 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_741 .background-img{
                border-radius:;
            }
        
            #medical_box_741 .new_medical_icon{
                
            }
        #medical_box_741 .new_medical_title{color:#000;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_741:hover .new_medical_title{}
                #medical_box_741 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_741 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:300px;margin-top:10px;margin-bottom:10px;border-style:none;border-color:#000;}#medical_box_741:hover .new_medical_icon{}#medical_box_741.new_medical_module{background-size:cover;background-repeat:repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_741:hover{}#medical_box_741 .new_medical_description{color:#000;font-weight:200;font-size:12px;line-height:25px;text-align:justify;padding-right:25px;padding-left:25px;border-style:solid;border-color:#555;}#medical_box_741:hover .new_medical_description{}
                #medical_box_741 
            
            #medical_box_741 .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_741 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_741:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_741 .mode1-size_741{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_741 .new_medical_box > div{
                width:100%;
            }
             #medical_box_741 > div{
               height:100%;
            }
            #medical_box_741 .mode2-size_741{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_741 .mode3-size_741{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_741 .mode4-size_741{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_741 .mode5-size_741{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_741 .mode6-size_741{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_741 .mode7-size_741{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_741 .mode7-size_741 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_741 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_741 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_741{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_741 span:hover{
                color:!important;
            }
            .custom2_741{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_741 span:hover{
                color:;
            }
            #medical_box_741 .mode-btn1_741{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_741 .mode-btn1_741 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_741 .mode-btn2_741{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_741 .mode-btn2_741 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_741 .div-btn-title_main_741{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_741 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_741 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_740 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1631710874_picbox2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_740 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_740 .background-img{
                border-radius:;
            }
        
            #medical_box_740 .new_medical_icon{
                
            }
        #medical_box_740 .new_medical_title{color:#000;font-weight:bold;font-size:25px;text-align:right;margin-top:10px;margin-bottom:10px;}#medical_box_740:hover .new_medical_title{}
                #medical_box_740 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_740 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:300px;margin-top:10px;margin-bottom:10px;border-style:none;border-color:#000;}#medical_box_740:hover .new_medical_icon{}#medical_box_740.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:bottom;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_740:hover{}#medical_box_740 .new_medical_description{color:#000000;font-weight:300;font-size:13px;line-height:25px;text-align:justify;border-style:solid;border-color:#bfbfbf;}#medical_box_740:hover .new_medical_description{}
                #medical_box_740 
            
            #medical_box_740 .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_740 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_740:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_740 .mode1-size_740{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_740 .new_medical_box > div{
                width:100%;
            }
             #medical_box_740 > div{
               height:100%;
            }
            #medical_box_740 .mode2-size_740{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_740 .mode3-size_740{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_740 .mode4-size_740{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_740 .mode5-size_740{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_740 .mode6-size_740{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_740 .mode7-size_740{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_740 .mode7-size_740 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_740 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_740 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_740{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_740 span:hover{
                color:!important;
            }
            .custom2_740{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_740 span:hover{
                color:;
            }
            #medical_box_740 .mode-btn1_740{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_740 .mode-btn1_740 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_740 .mode-btn2_740{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_740 .mode-btn2_740 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_740 .div-btn-title_main_740{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_740 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_740 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
                #medical_box_742 .new_medical_icon:hover{
                    transform: perspective(270px) translateZ(60px) !important;
                }
            
            #medical_box_742 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1631940263_7.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_742 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_742 .background-img{
                border-radius:;
            }
        
            #medical_box_742 .new_medical_icon{
                
            }
        
                #medical_box_742 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_742 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:300px;margin-top:10px;margin-bottom:10px;border-style:none;border-color:#000;}#medical_box_742:hover .new_medical_icon{}#medical_box_742.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:bottom;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_742:hover{}#medical_box_742 .new_medical_description{color:#000;font-weight:200;font-size:13px;line-height:25px;text-align:justify;padding-right:25px;padding-left:25px;border-style:solid;border-color:#555;}#medical_box_742:hover .new_medical_description{}
                #medical_box_742 
            
            #medical_box_742 .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_742 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_742:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_742 .mode1-size_742{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_742 .new_medical_box > div{
                width:100%;
            }
             #medical_box_742 > div{
               height:100%;
            }
            #medical_box_742 .mode2-size_742{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_742 .mode3-size_742{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_742 .mode4-size_742{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_742 .mode5-size_742{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_742 .mode6-size_742{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_742 .mode7-size_742{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_742 .mode7-size_742 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_742 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_742 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_742{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_742 span:hover{
                color:!important;
            }
            .custom2_742{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_742 span:hover{
                color:;
            }
            #medical_box_742 .mode-btn1_742{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_742 .mode-btn1_742 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_742 .mode-btn2_742{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_742 .mode-btn2_742 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_742 .div-btn-title_main_742{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_742 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_742 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_250 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:solid;}.module[data-id_page='991']:hover .new_medical_box_main{}
            #module_new_medical_250 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_250 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_250 .new_medical_description p{
                    height:600px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_250 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_250 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_250 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_250 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_250 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_250 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_250 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_250 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_250 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_250 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_250 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_250 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_250 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_250 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_250 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_250 .new_medical_description{ 
                    height:600px;
                    overflow: auto;
                }
                #module_new_medical_250 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_250 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_250 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_250 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_250 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_250 .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_250{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_250 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_250 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_250 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_250 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_250 .swiper-container{
                width:1200px;
            }
            #module_new_medical_250 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_250 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_250 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_250 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='969']{;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='969']:hover{;}.module[data-id_page='969']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='969'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='969']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='969'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='969'] 
            
            .module[data-id_page='969'] .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='969'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='969']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='969']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630231154_1627119712_2.jpg");
                           }
                       
            #module_new_medical_240 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_240 .content_str{
				width:100%;
			}
            #module_new_medical_240 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_240 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_240 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_240 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_240 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_240 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_240 .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_240 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_240 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_240 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_240 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_240 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_240 .new_medical_description a,#module_new_medical_240 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_240 .new_medical_description a:hover,#module_new_medical_240 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_240 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_240 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_648 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_648 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_648 .background-img{
                border-radius:;
            }
        #medical_box_648 .new_medical_title{color:#343434;font-weight:bold;font-size:25px;text-align:center;margin-top:25px;margin-bottom:25px;}#medical_box_648:hover .new_medical_title{}
                #medical_box_648 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_648.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_648:hover{}#medical_box_648 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_648:hover .new_medical_description{}
                #medical_box_648 
            
            #medical_box_648 .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_648 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_648:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_648 .mode1-size_648{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_648 .new_medical_box > div{
                width:fit-content;
            }
             #medical_box_648 > div{
               height:100%;
            }
            #medical_box_648 .mode2-size_648{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_648 .mode3-size_648{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_648 .mode4-size_648{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_648 .mode5-size_648{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_648 .mode6-size_648{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_648 .mode7-size_648{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_648 .mode7-size_648 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_648 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_648 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_648{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_648 span:hover{
                color:!important;
            }
            .custom2_648{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_648 span:hover{
                color:;
            }
            #medical_box_648 .mode-btn1_648{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_648 .mode-btn1_648 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_648 .mode-btn2_648{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_648 .mode-btn2_648 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_648 .div-btn-title_main_648{
                display: flex;
                justify-content: left;
                align-items: center;
            }
        
                #medical_box_648 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_648 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_649 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_649 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_649 .background-img{
                border-radius:;
            }
        #medical_box_649.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-style:none;}#medical_box_649:hover{}
                #medical_box_649:hover .background-img {
                    filter:none;
                }
            
                #medical_box_649 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_649 
            
            #medical_box_649 .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_649 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_649:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_649.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1631169159_11.png");
                }
            
            #medical_box_649 .mode1-size_649{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_649 .new_medical_box > div{
                width:100%;
            }
             #medical_box_649 > div{
               height:100%;
            }
            #medical_box_649 .mode2-size_649{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_649 .mode3-size_649{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_649 .mode4-size_649{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_649 .mode5-size_649{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_649 .mode6-size_649{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_649 .mode7-size_649{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_649 .mode7-size_649 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_649 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_649 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_649{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_649 span:hover{
                color:!important;
            }
            .custom2_649{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_649 span:hover{
                color:;
            }
            #medical_box_649 .mode-btn1_649{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_649 .mode-btn1_649 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_649 .mode-btn2_649{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_649 .mode-btn2_649 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_649 .div-btn-title_main_649{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_649 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_649 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_650 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_650 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_650 .background-img{
                border-radius:;
            }
        #medical_box_650 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_650:hover .new_medical_description{}
                #medical_box_650 
            
            #medical_box_650 .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_650 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_650:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_650 .mode1-size_650{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_650 .new_medical_box > div{
                width:100%;
            }
             #medical_box_650 > div{
               height:100%;
            }
            #medical_box_650 .mode2-size_650{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_650 .mode3-size_650{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_650 .mode4-size_650{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_650 .mode5-size_650{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_650 .mode6-size_650{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_650 .mode7-size_650{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_650 .mode7-size_650 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_650 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_650 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_650{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_650 span:hover{
                color:!important;
            }
            .custom2_650{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_650 span:hover{
                color:;
            }
            #medical_box_650 .mode-btn1_650{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_650 .mode-btn1_650 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_650 .mode-btn2_650{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_650 .mode-btn2_650 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_650 .div-btn-title_main_650{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_650 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_650 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_240 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='969']:hover .new_medical_box_main{}
            #module_new_medical_240 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_240 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_240 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_240 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_240 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_240 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_240 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_240 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_240 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_240 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_240 .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_240{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_240 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_240 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_240 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_240 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_240 .swiper-container{
                width:1200px;
            }
            #module_new_medical_240 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_240 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_240 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_240 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='970']{;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='970']:hover{;}.module[data-id_page='970']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='970'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='970']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='970'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='970'] 
            
            .module[data-id_page='970'] .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='970'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='970']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='970']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630235701_buttom.jpg");
                           }
                       #layoutfull_box_132.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#layoutfull_box_132:hover{}#layoutfull_box_132 .new_layoutfull_button{color:#ffdb3a;font-weight:300;font-size:1.5vw;width:20vw;height:5vw;line-height:5vw;text-align:center;margin-top:5vw;margin-bottom:13vw;margin-left:7vw;border-radius:5vw;border-style:solid;border-top-width:0.1vw;border-right-width:0.1vw;border-bottom-width:0.1vw;border-left-width:0.1vw;border-color:#ffdb3a;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_132 .new_layoutfull_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}
                #layoutfull_box_132 
            
            #layoutfull_box_132 .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_132 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_132:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_132 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_132.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_132 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_80{
                overflow:hidden;
            }
            #module_new_layoutfull_80 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_80 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_80 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='971']{;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='971']:hover{;}.module[data-id_page='971']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='971'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='971']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='971'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='971'] 
            
            .module[data-id_page='971'] .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='971'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='971']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='971']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630231154_1627119712_2.jpg");
                           }
                       
            #module_new_medical_241 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_241 .content_str{
				width:100%;
			}
            #module_new_medical_241 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_241 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_241 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_241 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_241 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_241 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_241 .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_241 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_241 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_241 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_241 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_241 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_241 .new_medical_description a,#module_new_medical_241 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_241 .new_medical_description a:hover,#module_new_medical_241 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_241 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_241 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_656 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_656 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_656 .background-img{
                border-radius:;
            }
        
                #medical_box_656 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_656 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_656:hover .new_medical_description{}
                #medical_box_656 
            
            #medical_box_656 .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_656 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_656:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_656 .mode1-size_656{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_656 .new_medical_box > div{
                width:100%;
            }
             #medical_box_656 > div{
               height:100%;
            }
            #medical_box_656 .mode2-size_656{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_656 .mode3-size_656{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_656 .mode4-size_656{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_656 .mode5-size_656{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_656 .mode6-size_656{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_656 .mode7-size_656{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_656 .mode7-size_656 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_656 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_656 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_656{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_656 span:hover{
                color:!important;
            }
            .custom2_656{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_656 span:hover{
                color:;
            }
            #medical_box_656 .mode-btn1_656{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_656 .mode-btn1_656 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_656 .mode-btn2_656{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_656 .mode-btn2_656 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_656 .div-btn-title_main_656{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_656 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_656 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_655 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_655 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_655 .background-img{
                border-radius:;
            }
        #medical_box_655.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-style:none;}#medical_box_655:hover{}
                #medical_box_655:hover .background-img {
                    filter:none;
                }
            
                #medical_box_655 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_655 
            
            #medical_box_655 .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_655 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_655:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_655.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1631170283_2.png");
                }
            
            #medical_box_655 .mode1-size_655{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_655 .new_medical_box > div{
                width:100%;
            }
             #medical_box_655 > div{
               height:100%;
            }
            #medical_box_655 .mode2-size_655{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_655 .mode3-size_655{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_655 .mode4-size_655{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_655 .mode5-size_655{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_655 .mode6-size_655{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_655 .mode7-size_655{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_655 .mode7-size_655 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_655 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_655 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_655{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_655 span:hover{
                color:!important;
            }
            .custom2_655{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_655 span:hover{
                color:;
            }
            #medical_box_655 .mode-btn1_655{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_655 .mode-btn1_655 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_655 .mode-btn2_655{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_655 .mode-btn2_655 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_655 .div-btn-title_main_655{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_655 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_655 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_654 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_654 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_654 .background-img{
                border-radius:;
            }
        #medical_box_654.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:420px;border-style:none;}#medical_box_654:hover{}
                #medical_box_654:hover .background-img {
                    filter:none;
                }
            
                #medical_box_654 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_654 
            
            #medical_box_654 .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_654 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_654:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_654.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1631170480_3.png");
                }
            
            #medical_box_654 .mode1-size_654{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_654 .new_medical_box > div{
                width:100%;
            }
             #medical_box_654 > div{
               height:100%;
            }
            #medical_box_654 .mode2-size_654{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_654 .mode3-size_654{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_654 .mode4-size_654{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_654 .mode5-size_654{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_654 .mode6-size_654{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_654 .mode7-size_654{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_654 .mode7-size_654 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_654 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_654 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_654{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_654 span:hover{
                color:!important;
            }
            .custom2_654{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_654 span:hover{
                color:;
            }
            #medical_box_654 .mode-btn1_654{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_654 .mode-btn1_654 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_654 .mode-btn2_654{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_654 .mode-btn2_654 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_654 .div-btn-title_main_654{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_654 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_654 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_653 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_653 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_653 .background-img{
                border-radius:;
            }
        #medical_box_653 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_653:hover .new_medical_description{}
                #medical_box_653 
            
            #medical_box_653 .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_653 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_653:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_653 .mode1-size_653{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_653 .new_medical_box > div{
                width:100%;
            }
             #medical_box_653 > div{
               height:100%;
            }
            #medical_box_653 .mode2-size_653{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_653 .mode3-size_653{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_653 .mode4-size_653{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_653 .mode5-size_653{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_653 .mode6-size_653{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_653 .mode7-size_653{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_653 .mode7-size_653 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_653 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_653 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_653{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_653 span:hover{
                color:!important;
            }
            .custom2_653{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_653 span:hover{
                color:;
            }
            #medical_box_653 .mode-btn1_653{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_653 .mode-btn1_653 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_653 .mode-btn2_653{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_653 .mode-btn2_653 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_653 .div-btn-title_main_653{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_653 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_653 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_652 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_652 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_652 .background-img{
                border-radius:;
            }
        #medical_box_652 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_652:hover .new_medical_description{}
                #medical_box_652 
            
            #medical_box_652 .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_652 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_652:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_652 .mode1-size_652{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_652 .new_medical_box > div{
                width:100%;
            }
             #medical_box_652 > div{
               height:100%;
            }
            #medical_box_652 .mode2-size_652{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_652 .mode3-size_652{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_652 .mode4-size_652{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_652 .mode5-size_652{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_652 .mode6-size_652{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_652 .mode7-size_652{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_652 .mode7-size_652 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_652 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_652 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_652{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_652 span:hover{
                color:!important;
            }
            .custom2_652{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_652 span:hover{
                color:;
            }
            #medical_box_652 .mode-btn1_652{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_652 .mode-btn1_652 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_652 .mode-btn2_652{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_652 .mode-btn2_652 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_652 .div-btn-title_main_652{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_652 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_652 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_651 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_651 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_651 .background-img{
                border-radius:;
            }
        #medical_box_651.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-style:none;}#medical_box_651:hover{}
                #medical_box_651:hover .background-img {
                    filter:none;
                }
            
                #medical_box_651 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_651 
            
            #medical_box_651 .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_651 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_651:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_651.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1631170664_4.png");
                }
            
            #medical_box_651 .mode1-size_651{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_651 .new_medical_box > div{
                width:100%;
            }
             #medical_box_651 > div{
               height:100%;
            }
            #medical_box_651 .mode2-size_651{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_651 .mode3-size_651{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_651 .mode4-size_651{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_651 .mode5-size_651{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_651 .mode6-size_651{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_651 .mode7-size_651{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_651 .mode7-size_651 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_651 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_651 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_651{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_651 span:hover{
                color:!important;
            }
            .custom2_651{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_651 span:hover{
                color:;
            }
            #medical_box_651 .mode-btn1_651{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_651 .mode-btn1_651 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_651 .mode-btn2_651{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_651 .mode-btn2_651 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_651 .div-btn-title_main_651{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_651 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_651 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_241 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='971']:hover .new_medical_box_main{}
            #module_new_medical_241 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_241 .new_medical_module{
                    width:595px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_241 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_241 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_241 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_241 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_241 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_241 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_241 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_241 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_241 .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_241{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_241 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_241 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_241 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_241 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_241 .swiper-container{
                width:1200px;
            }
            #module_new_medical_241 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_241 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_241 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_241 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='972']{;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='972']:hover{;}.module[data-id_page='972']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='972'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='972']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='972'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='972'] 
            
            .module[data-id_page='972'] .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='972'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='972']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='972']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630239825_12.jpg");
                           }
                       #layoutfull_box_133.new_layoutfull_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#layoutfull_box_133:hover{}#layoutfull_box_133 .new_layoutfull_button{color:#000;font-weight:300;text-align:left;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_133 .new_layoutfull_button:hover{box-shadow:0px 0px 0px 0px  !important;}#layoutfull_box_133 .new_layoutfull_title{color:#ffdb3a;font-weight:bold;font-size:3vw;text-align:left;margin-top:5vw;margin-bottom:5vw;padding-right:10vw;}#layoutfull_box_133:hover .new_layoutfull_title{}
                #layoutfull_box_133 .new_layoutfull_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_133 .new_layoutfull_layer{}#layoutfull_box_133:hover .new_layoutfull_layer{}
            
            #layoutfull_box_133 .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_133 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_133:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,1);
            }
        
            #layoutfull_box_133 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_133.cursor_box{
                cursor:pointer; 
            }
        
                #layoutfull_box_133 .new_layoutfull_box{
                    visibility:visible;
                }
            #layoutfull_box_134.new_layoutfull_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:20vw;border-style:none;}#layoutfull_box_134:hover{}#layoutfull_box_134 .new_layoutfull_button{color:#343434;font-weight:300;font-size:1.5vw;line-height:2vw;text-align:left;margin-top:11vw;margin-left:8vw;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_134 .new_layoutfull_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #layoutfull_box_134:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_134 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://asgharabdoli.com/files/photo/work/1630240646_123.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_134 
            
            #layoutfull_box_134 .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_134 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_134:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_134 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_134.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_134 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_81{
                overflow:hidden;
            }
            #module_new_layoutfull_81 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_81 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_81 .new_layoutfull_module{
                width:50% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='973']{;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='973']:hover{;}.module[data-id_page='973']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='973'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='973']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='973'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='973'] 
            
            .module[data-id_page='973'] .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='973'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='973']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='973']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630231154_1627119712_2.jpg");
                           }
                       
            #module_new_medical_242 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_242 .content_str{
				width:100%;
			}
            #module_new_medical_242 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_242 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_242 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_242 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_242 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_242 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_242 .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_242 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_242 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_242 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_242 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_242 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_242 .new_medical_description a,#module_new_medical_242 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_242 .new_medical_description a:hover,#module_new_medical_242 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_242 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_242 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_659 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_659 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_659 .background-img{
                border-radius:;
            }
        #medical_box_659 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_659:hover .new_medical_description{}
                #medical_box_659 
            
            #medical_box_659 .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_659 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_659:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_659 .mode1-size_659{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_659 .new_medical_box > div{
                width:100%;
            }
             #medical_box_659 > div{
               height:100%;
            }
            #medical_box_659 .mode2-size_659{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_659 .mode3-size_659{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_659 .mode4-size_659{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_659 .mode5-size_659{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_659 .mode6-size_659{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_659 .mode7-size_659{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_659 .mode7-size_659 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_659 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_659 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_659{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_659 span:hover{
                color:!important;
            }
            .custom2_659{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_659 span:hover{
                color:;
            }
            #medical_box_659 .mode-btn1_659{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_659 .mode-btn1_659 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_659 .mode-btn2_659{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_659 .mode-btn2_659 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_659 .div-btn-title_main_659{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_659 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_659 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_658 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_658 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_658 .background-img{
                border-radius:;
            }
        #medical_box_658.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:700px;border-style:none;}#medical_box_658:hover{}
                #medical_box_658:hover .background-img {
                    filter:none;
                }
            
                #medical_box_658 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_658 
            
            #medical_box_658 .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_658 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_658:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_658.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630996728_-07 at 10.01.58.jpg");
                }
            
            #medical_box_658 .mode1-size_658{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_658 .new_medical_box > div{
                width:100%;
            }
             #medical_box_658 > div{
               height:100%;
            }
            #medical_box_658 .mode2-size_658{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_658 .mode3-size_658{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_658 .mode4-size_658{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_658 .mode5-size_658{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_658 .mode6-size_658{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_658 .mode7-size_658{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_658 .mode7-size_658 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_658 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_658 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_658{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_658 span:hover{
                color:!important;
            }
            .custom2_658{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_658 span:hover{
                color:;
            }
            #medical_box_658 .mode-btn1_658{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_658 .mode-btn1_658 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_658 .mode-btn2_658{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_658 .mode-btn2_658 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_658 .div-btn-title_main_658{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_658 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_658 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_657 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_657 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_657 .background-img{
                border-radius:;
            }
        #medical_box_657 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_657:hover .new_medical_description{}
                #medical_box_657 
            
            #medical_box_657 .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_657 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_657:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_657 .mode1-size_657{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_657 .new_medical_box > div{
                width:100%;
            }
             #medical_box_657 > div{
               height:100%;
            }
            #medical_box_657 .mode2-size_657{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_657 .mode3-size_657{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_657 .mode4-size_657{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_657 .mode5-size_657{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_657 .mode6-size_657{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_657 .mode7-size_657{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_657 .mode7-size_657 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_657 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_657 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_657{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_657 span:hover{
                color:!important;
            }
            .custom2_657{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_657 span:hover{
                color:;
            }
            #medical_box_657 .mode-btn1_657{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_657 .mode-btn1_657 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_657 .mode-btn2_657{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_657 .mode-btn2_657 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_657 .div-btn-title_main_657{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_657 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_657 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_242 .new_medical_title_main{color:#343434;font-weight:bold;font-size:25px;justify-content:center;text-align:center;margin-top:10px;margin-bottom:50px;}.module[data-id_page='973']:hover .new_medical_title_main{}
            #module_new_medical_242 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_242 .new_medical_module{
                    width:393px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_242 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_242 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_242 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_242 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_242 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_242 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_242 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_242 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_242 .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_242{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_242 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_242 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_242 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_242 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_242 .swiper-container{
                width:1200px;
            }
            #module_new_medical_242 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='974']{;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='974']:hover{;}.module[data-id_page='974']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='974'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='974']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='974'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='974'] 
            
            .module[data-id_page='974'] .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='974'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='974']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='974']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630231154_1627119712_2.jpg");
                           }
                       #layout_box_63.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:null;grid-row-start:1;grid-row-end:null;border-style:none;}#layout_box_63:hover{}#layout_box_63 .new_layout_description{color:#000;font-weight:300;line-height:30px;text-align:justify;margin-top:20px;margin-bottom:20px;border-style:solid;border-color:#555;}#layout_box_63:hover .new_layout_description{}
                #layout_box_63 
            
            #layout_box_63 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_63 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_63:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_63 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_63 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_63.cursor_box-layout{
                cursor:auto; 
            }
        
                #module_new_layout_13 .new_layout_box_main {
                    display:grid;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_13{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_13 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_13 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_13 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_13 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_13 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='975']{;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='975']:hover{;}.module[data-id_page='975']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='975'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='975']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='975'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='975'] 
            
            .module[data-id_page='975'] .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='975'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='975']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='975']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630312329_larg back.jpg");
                           }
                       
            #module_new_medical_243 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_243 .content_str{
				width:100%;
			}
            #module_new_medical_243 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_243 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_243 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_243 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_243 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_243 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_243 .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_243 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_243 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_243 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_243 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_243 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_243 .new_medical_description a,#module_new_medical_243 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_243 .new_medical_description a:hover,#module_new_medical_243 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_243 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_243 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_660 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630996919_-07 at 10.09.09.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_660 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_660 .background-img{
                border-radius:;
            }
        
            #medical_box_660 .new_medical_icon{
                
            }
        #medical_box_660 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:25%;height:500px;margin-top:25px;margin-left:10px;border-style:none;border-color:#000;}#medical_box_660:hover .new_medical_icon{}#medical_box_660 .new_medical_description{color:#000;font-weight:200;font-size:15px;line-height:30px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_660:hover .new_medical_description{}
                #medical_box_660 
            
            #medical_box_660 .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_660 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_660:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_660 .mode1-size_660{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_660 .new_medical_box > div{
                width:100%;
            }
             #medical_box_660 > div{
               height:100%;
            }
            #medical_box_660 .mode2-size_660{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_660 .mode3-size_660{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_660 .mode4-size_660{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_660 .mode5-size_660{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_660 .mode6-size_660{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_660 .mode7-size_660{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_660 .mode7-size_660 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_660 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_660 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_660{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_660 span:hover{
                color:!important;
            }
            .custom2_660{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_660 span:hover{
                color:;
            }
            #medical_box_660 .mode-btn1_660{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_660 .mode-btn1_660 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_660 .mode-btn2_660{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_660 .mode-btn2_660 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_660 .div-btn-title_main_660{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_660 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_660 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_662 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_662 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_662 .background-img{
                border-radius:;
            }
        #medical_box_662 .new_medical_description{color:#000;font-weight:300;line-height:30px;text-align:justify;margin-top:20px;border-style:solid;border-color:#555;}#medical_box_662:hover .new_medical_description{}
                #medical_box_662 
            
            #medical_box_662 .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_662 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_662:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_662 .mode1-size_662{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_662 .new_medical_box > div{
                width:100%;
            }
             #medical_box_662 > div{
               height:100%;
            }
            #medical_box_662 .mode2-size_662{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_662 .mode3-size_662{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_662 .mode4-size_662{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_662 .mode5-size_662{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_662 .mode6-size_662{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_662 .mode7-size_662{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_662 .mode7-size_662 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_662 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_662 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_662{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_662 span:hover{
                color:!important;
            }
            .custom2_662{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_662 span:hover{
                color:;
            }
            #medical_box_662 .mode-btn1_662{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_662 .mode-btn1_662 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_662 .mode-btn2_662{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_662 .mode-btn2_662 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_662 .div-btn-title_main_662{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_662 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_662 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_663 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630308833_1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_663 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_663 .background-img{
                border-radius:;
            }
        
            #medical_box_663 .new_medical_icon{
                
            }
        
                #medical_box_663 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_663 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_663:hover .new_medical_icon{}#medical_box_663.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_663:hover{}#medical_box_663 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_663:hover .new_medical_description{}
                #medical_box_663 
            
            #medical_box_663 .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_663 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_663:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_663 .mode1-size_663{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_663 .new_medical_box > div{
                width:100%;
            }
             #medical_box_663 > div{
               height:100%;
            }
            #medical_box_663 .mode2-size_663{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_663 .mode3-size_663{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_663 .mode4-size_663{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_663 .mode5-size_663{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_663 .mode6-size_663{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_663 .mode7-size_663{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_663 .mode7-size_663 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_663 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_663 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_663{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_663 span:hover{
                color:!important;
            }
            .custom2_663{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_663 span:hover{
                color:;
            }
            #medical_box_663 .mode-btn1_663{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_663 .mode-btn1_663 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_663 .mode-btn2_663{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_663 .mode-btn2_663 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_663 .div-btn-title_main_663{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_663 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_663 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_664 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630309453_2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_664 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_664 .background-img{
                border-radius:;
            }
        
            #medical_box_664 .new_medical_icon{
                
            }
        
                #medical_box_664 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_664 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_664:hover .new_medical_icon{}#medical_box_664.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_664:hover{}#medical_box_664 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_664:hover .new_medical_description{}
                #medical_box_664 
            
            #medical_box_664 .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_664 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_664:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_664 .mode1-size_664{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_664 .new_medical_box > div{
                width:100%;
            }
             #medical_box_664 > div{
               height:100%;
            }
            #medical_box_664 .mode2-size_664{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_664 .mode3-size_664{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_664 .mode4-size_664{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_664 .mode5-size_664{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_664 .mode6-size_664{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_664 .mode7-size_664{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_664 .mode7-size_664 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_664 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_664 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_664{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_664 span:hover{
                color:!important;
            }
            .custom2_664{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_664 span:hover{
                color:;
            }
            #medical_box_664 .mode-btn1_664{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_664 .mode-btn1_664 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_664 .mode-btn2_664{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_664 .mode-btn2_664 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_664 .div-btn-title_main_664{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_664 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_664 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_665 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630309553_3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_665 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_665 .background-img{
                border-radius:;
            }
        
            #medical_box_665 .new_medical_icon{
                
            }
        
                #medical_box_665 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_665 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_665:hover .new_medical_icon{}#medical_box_665.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_665:hover{}#medical_box_665 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_665:hover .new_medical_description{}
                #medical_box_665 
            
            #medical_box_665 .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_665 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_665:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_665 .mode1-size_665{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_665 .new_medical_box > div{
                width:100%;
            }
             #medical_box_665 > div{
               height:100%;
            }
            #medical_box_665 .mode2-size_665{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_665 .mode3-size_665{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_665 .mode4-size_665{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_665 .mode5-size_665{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_665 .mode6-size_665{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_665 .mode7-size_665{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_665 .mode7-size_665 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_665 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_665 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_665{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_665 span:hover{
                color:!important;
            }
            .custom2_665{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_665 span:hover{
                color:;
            }
            #medical_box_665 .mode-btn1_665{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_665 .mode-btn1_665 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_665 .mode-btn2_665{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_665 .mode-btn2_665 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_665 .div-btn-title_main_665{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_665 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_665 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_666 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630309637_4.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_666 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_666 .background-img{
                border-radius:;
            }
        
            #medical_box_666 .new_medical_icon{
                
            }
        
                #medical_box_666 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_666 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_666:hover .new_medical_icon{}#medical_box_666.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_666:hover{}#medical_box_666 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_666:hover .new_medical_description{}
                #medical_box_666 
            
            #medical_box_666 .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_666 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_666:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_666 .mode1-size_666{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_666 .new_medical_box > div{
                width:100%;
            }
             #medical_box_666 > div{
               height:100%;
            }
            #medical_box_666 .mode2-size_666{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_666 .mode3-size_666{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_666 .mode4-size_666{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_666 .mode5-size_666{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_666 .mode6-size_666{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_666 .mode7-size_666{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_666 .mode7-size_666 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_666 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_666 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_666{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_666 span:hover{
                color:!important;
            }
            .custom2_666{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_666 span:hover{
                color:;
            }
            #medical_box_666 .mode-btn1_666{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_666 .mode-btn1_666 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_666 .mode-btn2_666{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_666 .mode-btn2_666 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_666 .div-btn-title_main_666{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_666 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_666 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_667 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630309706_5.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_667 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_667 .background-img{
                border-radius:;
            }
        
            #medical_box_667 .new_medical_icon{
                
            }
        
                #medical_box_667 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_667 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_667:hover .new_medical_icon{}#medical_box_667.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_667:hover{}#medical_box_667 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_667:hover .new_medical_description{}
                #medical_box_667 
            
            #medical_box_667 .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_667 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_667:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_667 .mode1-size_667{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_667 .new_medical_box > div{
                width:100%;
            }
             #medical_box_667 > div{
               height:100%;
            }
            #medical_box_667 .mode2-size_667{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_667 .mode3-size_667{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_667 .mode4-size_667{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_667 .mode5-size_667{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_667 .mode6-size_667{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_667 .mode7-size_667{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_667 .mode7-size_667 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_667 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_667 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_667{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_667 span:hover{
                color:!important;
            }
            .custom2_667{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_667 span:hover{
                color:;
            }
            #medical_box_667 .mode-btn1_667{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_667 .mode-btn1_667 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_667 .mode-btn2_667{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_667 .mode-btn2_667 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_667 .div-btn-title_main_667{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_667 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_667 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_668 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630310170_6.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_668 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_668 .background-img{
                border-radius:;
            }
        
            #medical_box_668 .new_medical_icon{
                
            }
        
                #medical_box_668 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_668 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_668:hover .new_medical_icon{}#medical_box_668.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_668:hover{}#medical_box_668 .new_medical_description{color:#000;font-weight:500;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_668:hover .new_medical_description{}
                #medical_box_668 
            
            #medical_box_668 .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_668 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_668:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_668 .mode1-size_668{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_668 .new_medical_box > div{
                width:100%;
            }
             #medical_box_668 > div{
               height:100%;
            }
            #medical_box_668 .mode2-size_668{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_668 .mode3-size_668{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_668 .mode4-size_668{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_668 .mode5-size_668{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_668 .mode6-size_668{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_668 .mode7-size_668{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_668 .mode7-size_668 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_668 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_668 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_668{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_668 span:hover{
                color:!important;
            }
            .custom2_668{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_668 span:hover{
                color:;
            }
            #medical_box_668 .mode-btn1_668{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_668 .mode-btn1_668 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_668 .mode-btn2_668{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_668 .mode-btn2_668 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_668 .div-btn-title_main_668{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_668 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_668 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_669 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630310732_7.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_669 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_669 .background-img{
                border-radius:;
            }
        
            #medical_box_669 .new_medical_icon{
                
            }
        
                #medical_box_669 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_669 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_669:hover .new_medical_icon{}#medical_box_669.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_669:hover{}#medical_box_669 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_669:hover .new_medical_description{}
                #medical_box_669 
            
            #medical_box_669 .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_669 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_669:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_669 .mode1-size_669{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_669 .new_medical_box > div{
                width:100%;
            }
             #medical_box_669 > div{
               height:100%;
            }
            #medical_box_669 .mode2-size_669{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_669 .mode3-size_669{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_669 .mode4-size_669{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_669 .mode5-size_669{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_669 .mode6-size_669{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_669 .mode7-size_669{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_669 .mode7-size_669 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_669 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_669 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_669{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_669 span:hover{
                color:!important;
            }
            .custom2_669{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_669 span:hover{
                color:;
            }
            #medical_box_669 .mode-btn1_669{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_669 .mode-btn1_669 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_669 .mode-btn2_669{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_669 .mode-btn2_669 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_669 .div-btn-title_main_669{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_669 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_669 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_670 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630310872_8.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_670 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_670 .background-img{
                border-radius:;
            }
        
            #medical_box_670 .new_medical_icon{
                
            }
        
                #medical_box_670 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_670 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_670:hover .new_medical_icon{}#medical_box_670.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_670:hover{}#medical_box_670 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_670:hover .new_medical_description{}
                #medical_box_670 
            
            #medical_box_670 .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_670 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_670:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_670 .mode1-size_670{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_670 .new_medical_box > div{
                width:100%;
            }
             #medical_box_670 > div{
               height:100%;
            }
            #medical_box_670 .mode2-size_670{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_670 .mode3-size_670{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_670 .mode4-size_670{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_670 .mode5-size_670{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_670 .mode6-size_670{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_670 .mode7-size_670{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_670 .mode7-size_670 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_670 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_670 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_670{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_670 span:hover{
                color:!important;
            }
            .custom2_670{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_670 span:hover{
                color:;
            }
            #medical_box_670 .mode-btn1_670{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_670 .mode-btn1_670 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_670 .mode-btn2_670{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_670 .mode-btn2_670 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_670 .div-btn-title_main_670{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_670 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_670 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_671 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630310979_9.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_671 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_671 .background-img{
                border-radius:;
            }
        
            #medical_box_671 .new_medical_icon{
                
            }
        
                #medical_box_671 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_671 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_671:hover .new_medical_icon{}#medical_box_671.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_671:hover{}#medical_box_671 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_671:hover .new_medical_description{}
                #medical_box_671 
            
            #medical_box_671 .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_671 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_671:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_671 .mode1-size_671{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_671 .new_medical_box > div{
                width:100%;
            }
             #medical_box_671 > div{
               height:100%;
            }
            #medical_box_671 .mode2-size_671{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_671 .mode3-size_671{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_671 .mode4-size_671{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_671 .mode5-size_671{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_671 .mode6-size_671{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_671 .mode7-size_671{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_671 .mode7-size_671 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_671 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_671 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_671{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_671 span:hover{
                color:!important;
            }
            .custom2_671{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_671 span:hover{
                color:;
            }
            #medical_box_671 .mode-btn1_671{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_671 .mode-btn1_671 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_671 .mode-btn2_671{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_671 .mode-btn2_671 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_671 .div-btn-title_main_671{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_671 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_671 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_672 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630311091_10.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_672 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_672 .background-img{
                border-radius:;
            }
        
            #medical_box_672 .new_medical_icon{
                
            }
        
                #medical_box_672 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_672 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:20%;height:200px;border-style:none;border-color:#000;}#medical_box_672:hover .new_medical_icon{}#medical_box_672.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:10px;padding-bottom:10px;border-style:none;}#medical_box_672:hover{}#medical_box_672 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_672:hover .new_medical_description{}
                #medical_box_672 
            
            #medical_box_672 .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_672 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_672:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_672 .mode1-size_672{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_672 .new_medical_box > div{
                width:100%;
            }
             #medical_box_672 > div{
               height:100%;
            }
            #medical_box_672 .mode2-size_672{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_672 .mode3-size_672{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_672 .mode4-size_672{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_672 .mode5-size_672{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_672 .mode6-size_672{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_672 .mode7-size_672{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_672 .mode7-size_672 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_672 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_672 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_672{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_672 span:hover{
                color:!important;
            }
            .custom2_672{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_672 span:hover{
                color:;
            }
            #medical_box_672 .mode-btn1_672{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_672 .mode-btn1_672 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_672 .mode-btn2_672{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_672 .mode-btn2_672 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_672 .div-btn-title_main_672{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_672 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_672 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_243 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='975']:hover .new_medical_box_main{}
            #module_new_medical_243 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_243 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_243 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_243 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_243 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_243 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_243 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_243 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_243 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_243 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_243 .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_243{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_243 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_243 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_243 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_243 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_243 .swiper-container{
                width:1200px;
            }
            #module_new_medical_243 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='976']{;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='976']:hover{;}.module[data-id_page='976']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='976'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='976']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='976'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='976'] 
            
            .module[data-id_page='976'] .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='976'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='976']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='976']{
                               background-image:url("https://asgharabdoli.com/files/photo/work/1630317422_13.jpg");
                           }
                       #layoutfull_box_135 .new_layoutfull_button{color:#ffdb3a;font-weight:bold;font-size:1vw;text-align:center;margin-top:4vw;margin-bottom:8vw;margin-right:9vw;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_135 .new_layoutfull_button:hover{box-shadow:0px 0px 0px 0px  !important;}#layoutfull_box_135 .new_layoutfull_title{color:#343434;font-weight:bold;font-size:3vw;text-align:center;margin-top:9vw;padding-right:15vw;}#layoutfull_box_135:hover .new_layoutfull_title{}
                #layoutfull_box_135 .new_layoutfull_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_135 
            
            #layoutfull_box_135 .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_135 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_135:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_135 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_135.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_135 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_82{
                overflow:hidden;
            }
            #module_new_layoutfull_82 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_82 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_82 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='977']{;background-color:#850b0b;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='977']:hover{;}.module[data-id_page='977']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='977'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='977'] 
            
            .module[data-id_page='977'] .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='977'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='977']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layoutfull_box_136 .new_layoutfull_description{color:#fff;font-weight:300;line-height:1.7vw;text-align:justify;padding-right:15vw;padding-left:15vw;border-style:solid;border-color:#555;}#layoutfull_box_136:hover .new_layoutfull_description{}#layoutfull_box_136 .new_layoutfull_title{color:#fafafa;font-weight:bold;font-size:2vw;text-align:center;margin-top:2vw;margin-bottom:2vw;}#layoutfull_box_136:hover .new_layoutfull_title{}
                #layoutfull_box_136 .new_layoutfull_title h2{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_136 
            
            #layoutfull_box_136 .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_136 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_136:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_136 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_136.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_136 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_83{
                overflow:hidden;
            }
            #module_new_layoutfull_83 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_83 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_83 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='978']{;background-color:#850b0b;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='978']:hover{;}.module[data-id_page='978']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='978'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='978'] 
            
            .module[data-id_page='978'] .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='978'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='978']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            .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_427 .ti_ma_h{
                width:1200px;
                text-align: right;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 0px;
                color: #fff;
                background-color: #850b0b;
            }
            #description_427 .ti_ma_h a{color: #fff;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: #fff;
                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_427 .container_box_1538{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_427 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    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_427 .container_box_1539{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_427 .font_title_box_1{
                    font-size: 18px;
                    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_427 .container_box_1540{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_427 .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_427 .container_box_1541{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_427 .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_427 .public_center{
                border-spacing:0px;
            }
        #description_427{
                    background-color:#850b0b;
                }#description_427{
                        font-size:15px;
                }#description_427 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_427 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_427 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_427 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_427 .color_title{/*range title asli module*/
                            color:#fff ;
                                }#description_427 .color_text{/*range text haye module  */
                            color:#fff;
                                }#description_427 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_427 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_427 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_427 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color:#fff ;
                                }#description_427 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_427 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_427 .color_box_text{/*range text dakhele box ha! */
                            color:#fff ;
                                }#description_427 .color_box_title{/*range title dakhele box ha!*/
                            color:#850b0b ;
                                }.module[data-id_page='979']{;background-color:#850b0b;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='979']:hover{;}.module[data-id_page='979']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='979'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='979'] 
            
            .module[data-id_page='979'] .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='979'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='979']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_244 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_244 .content_str{
				width:100%;
			}
            #module_new_medical_244 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_244 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_244 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_244 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_244 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_244 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_244 .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_244 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_244 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_244 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_244 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_244 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_244 .new_medical_description a,#module_new_medical_244 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_244 .new_medical_description a:hover,#module_new_medical_244 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_244 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_244 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_673 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_673 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_673 .background-img{
                border-radius:;
            }
        #medical_box_673 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;border-style:none;border-top-width:2px;border-color:#;}#medical_box_673:hover .new_medical_icon{}#medical_box_673.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:solid;border-top-width:2px;border-color:#fff;}#medical_box_673:hover{}#medical_box_673 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_673:hover .new_medical_description{}
                #medical_box_673 
            
            #medical_box_673 .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_673 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_673:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_673 .mode1-size_673{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_673 .new_medical_box > div{
                width:100%;
            }
             #medical_box_673 > div{
               height:100%;
            }
            #medical_box_673 .mode2-size_673{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_673 .mode3-size_673{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_673 .mode4-size_673{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_673 .mode5-size_673{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_673 .mode6-size_673{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_673 .mode7-size_673{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_673 .mode7-size_673 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_673 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_673 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_673{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_673 span:hover{
                color:!important;
            }
            .custom2_673{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_673 span:hover{
                color:;
            }
            #medical_box_673 .mode-btn1_673{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_673 .mode-btn1_673 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_673 .mode-btn2_673{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_673 .mode-btn2_673 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_673 .div-btn-title_main_673{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_673 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_673 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_674 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_674 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_674 .background-img{
                border-radius:;
            }
        
            #medical_box_674 .new_medical_icon{
                
            }
        #medical_box_674 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_674:hover .new_medical_icon{}#medical_box_674 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_674:hover .new_medical_description{}
                #medical_box_674 
            
            #medical_box_674 .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_674 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_674:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_674 .mode1-size_674{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_674 .new_medical_box > div{
                width:100%;
            }
             #medical_box_674 > div{
               height:100%;
            }
            #medical_box_674 .mode2-size_674{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_674 .mode3-size_674{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_674 .mode4-size_674{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_674 .mode5-size_674{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_674 .mode6-size_674{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_674 .mode7-size_674{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_674 .mode7-size_674 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_674 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_674 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_674{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_674 span:hover{
                color:!important;
            }
            .custom2_674{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_674 span:hover{
                color:;
            }
            #medical_box_674 .mode-btn1_674{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_674 .mode-btn1_674 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_674 .mode-btn2_674{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_674 .mode-btn2_674 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_674 .div-btn-title_main_674{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_674 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_674 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_675 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_675 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_675 .background-img{
                border-radius:;
            }
        
            #medical_box_675 .new_medical_icon{
                
            }
        #medical_box_675 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_675:hover .new_medical_icon{}#medical_box_675 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_675:hover .new_medical_description{}
                #medical_box_675 
            
            #medical_box_675 .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_675 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_675:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_675 .mode1-size_675{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_675 .new_medical_box > div{
                width:100%;
            }
             #medical_box_675 > div{
               height:100%;
            }
            #medical_box_675 .mode2-size_675{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_675 .mode3-size_675{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_675 .mode4-size_675{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_675 .mode5-size_675{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_675 .mode6-size_675{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_675 .mode7-size_675{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_675 .mode7-size_675 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_675 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_675 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_675{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_675 span:hover{
                color:!important;
            }
            .custom2_675{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_675 span:hover{
                color:;
            }
            #medical_box_675 .mode-btn1_675{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_675 .mode-btn1_675 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_675 .mode-btn2_675{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_675 .mode-btn2_675 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_675 .div-btn-title_main_675{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_675 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_675 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_676 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_676 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_676 .background-img{
                border-radius:;
            }
        
            #medical_box_676 .new_medical_icon{
                
            }
        #medical_box_676 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_676:hover .new_medical_icon{}#medical_box_676 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_676:hover .new_medical_description{}
                #medical_box_676 
            
            #medical_box_676 .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_676 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_676:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_676 .mode1-size_676{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_676 .new_medical_box > div{
                width:100%;
            }
             #medical_box_676 > div{
               height:100%;
            }
            #medical_box_676 .mode2-size_676{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_676 .mode3-size_676{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_676 .mode4-size_676{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_676 .mode5-size_676{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_676 .mode6-size_676{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_676 .mode7-size_676{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_676 .mode7-size_676 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_676 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_676 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_676{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_676 span:hover{
                color:!important;
            }
            .custom2_676{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_676 span:hover{
                color:;
            }
            #medical_box_676 .mode-btn1_676{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_676 .mode-btn1_676 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_676 .mode-btn2_676{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_676 .mode-btn2_676 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_676 .div-btn-title_main_676{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_676 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_676 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_677 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_677 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_677 .background-img{
                border-radius:;
            }
        
            #medical_box_677 .new_medical_icon{
                
            }
        #medical_box_677 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_677:hover .new_medical_icon{}#medical_box_677 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_677:hover .new_medical_description{}
                #medical_box_677 
            
            #medical_box_677 .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_677 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_677:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_677 .mode1-size_677{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_677 .new_medical_box > div{
                width:100%;
            }
             #medical_box_677 > div{
               height:100%;
            }
            #medical_box_677 .mode2-size_677{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_677 .mode3-size_677{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_677 .mode4-size_677{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_677 .mode5-size_677{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_677 .mode6-size_677{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_677 .mode7-size_677{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_677 .mode7-size_677 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_677 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_677 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_677{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_677 span:hover{
                color:!important;
            }
            .custom2_677{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_677 span:hover{
                color:;
            }
            #medical_box_677 .mode-btn1_677{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_677 .mode-btn1_677 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_677 .mode-btn2_677{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_677 .mode-btn2_677 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_677 .div-btn-title_main_677{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_677 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_677 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_678 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_678 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_678 .background-img{
                border-radius:;
            }
        
            #medical_box_678 .new_medical_icon{
                
            }
        #medical_box_678 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_678:hover .new_medical_icon{}#medical_box_678 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_678:hover .new_medical_description{}
                #medical_box_678 
            
            #medical_box_678 .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_678 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_678:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_678 .mode1-size_678{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_678 .new_medical_box > div{
                width:100%;
            }
             #medical_box_678 > div{
               height:100%;
            }
            #medical_box_678 .mode2-size_678{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_678 .mode3-size_678{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_678 .mode4-size_678{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_678 .mode5-size_678{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_678 .mode6-size_678{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_678 .mode7-size_678{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_678 .mode7-size_678 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_678 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_678 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_678{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_678 span:hover{
                color:!important;
            }
            .custom2_678{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_678 span:hover{
                color:;
            }
            #medical_box_678 .mode-btn1_678{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_678 .mode-btn1_678 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_678 .mode-btn2_678{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_678 .mode-btn2_678 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_678 .div-btn-title_main_678{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_678 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_678 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_679 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_679 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_679 .background-img{
                border-radius:;
            }
        
            #medical_box_679 .new_medical_icon{
                
            }
        #medical_box_679 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_679:hover .new_medical_icon{}#medical_box_679 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_679:hover .new_medical_description{}
                #medical_box_679 
            
            #medical_box_679 .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_679 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_679:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_679 .mode1-size_679{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_679 .new_medical_box > div{
                width:100%;
            }
             #medical_box_679 > div{
               height:100%;
            }
            #medical_box_679 .mode2-size_679{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_679 .mode3-size_679{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_679 .mode4-size_679{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_679 .mode5-size_679{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_679 .mode6-size_679{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_679 .mode7-size_679{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_679 .mode7-size_679 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_679 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_679 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_679{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_679 span:hover{
                color:!important;
            }
            .custom2_679{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_679 span:hover{
                color:;
            }
            #medical_box_679 .mode-btn1_679{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_679 .mode-btn1_679 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_679 .mode-btn2_679{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_679 .mode-btn2_679 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_679 .div-btn-title_main_679{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_679 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_679 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_680 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_680 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_680 .background-img{
                border-radius:;
            }
        
            #medical_box_680 .new_medical_icon{
                
            }
        #medical_box_680 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_680:hover .new_medical_icon{}#medical_box_680 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_680:hover .new_medical_description{}
                #medical_box_680 
            
            #medical_box_680 .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_680 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_680:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_680 .mode1-size_680{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_680 .new_medical_box > div{
                width:100%;
            }
             #medical_box_680 > div{
               height:100%;
            }
            #medical_box_680 .mode2-size_680{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_680 .mode3-size_680{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_680 .mode4-size_680{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_680 .mode5-size_680{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_680 .mode6-size_680{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_680 .mode7-size_680{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_680 .mode7-size_680 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_680 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_680 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_680{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_680 span:hover{
                color:!important;
            }
            .custom2_680{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_680 span:hover{
                color:;
            }
            #medical_box_680 .mode-btn1_680{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_680 .mode-btn1_680 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_680 .mode-btn2_680{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_680 .mode-btn2_680 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_680 .div-btn-title_main_680{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_680 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_680 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_681 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_681 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_681 .background-img{
                border-radius:;
            }
        
            #medical_box_681 .new_medical_icon{
                
            }
        #medical_box_681 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_681:hover .new_medical_icon{}#medical_box_681 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_681:hover .new_medical_description{}
                #medical_box_681 
            
            #medical_box_681 .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_681 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_681:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_681 .mode1-size_681{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_681 .new_medical_box > div{
                width:100%;
            }
             #medical_box_681 > div{
               height:100%;
            }
            #medical_box_681 .mode2-size_681{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_681 .mode3-size_681{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_681 .mode4-size_681{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_681 .mode5-size_681{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_681 .mode6-size_681{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_681 .mode7-size_681{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_681 .mode7-size_681 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_681 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_681 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_681{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_681 span:hover{
                color:!important;
            }
            .custom2_681{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_681 span:hover{
                color:;
            }
            #medical_box_681 .mode-btn1_681{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_681 .mode-btn1_681 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_681 .mode-btn2_681{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_681 .mode-btn2_681 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_681 .div-btn-title_main_681{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_681 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_681 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_682 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_682 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_682 .background-img{
                border-radius:;
            }
        
            #medical_box_682 .new_medical_icon{
                
            }
        #medical_box_682 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_682:hover .new_medical_icon{}#medical_box_682 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:right;margin-top:10px;padding-left:150px;border-style:solid;border-color:#555;}#medical_box_682:hover .new_medical_description{}
                #medical_box_682 
            
            #medical_box_682 .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_682 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_682:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_682 .mode1-size_682{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_682 .new_medical_box > div{
                width:100%;
            }
             #medical_box_682 > div{
               height:100%;
            }
            #medical_box_682 .mode2-size_682{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_682 .mode3-size_682{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_682 .mode4-size_682{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_682 .mode5-size_682{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_682 .mode6-size_682{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_682 .mode7-size_682{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_682 .mode7-size_682 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_682 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_682 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_682{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_682 span:hover{
                color:!important;
            }
            .custom2_682{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_682 span:hover{
                color:;
            }
            #medical_box_682 .mode-btn1_682{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_682 .mode-btn1_682 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_682 .mode-btn2_682{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_682 .mode-btn2_682 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_682 .div-btn-title_main_682{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_682 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_682 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_683 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_683 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_683 .background-img{
                border-radius:;
            }
        
            #medical_box_683 .new_medical_icon{
                
            }
        #medical_box_683 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_683:hover .new_medical_icon{}#medical_box_683 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_683:hover .new_medical_description{}
                #medical_box_683 
            
            #medical_box_683 .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_683 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_683:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_683 .mode1-size_683{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_683 .new_medical_box > div{
                width:100%;
            }
             #medical_box_683 > div{
               height:100%;
            }
            #medical_box_683 .mode2-size_683{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_683 .mode3-size_683{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_683 .mode4-size_683{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_683 .mode5-size_683{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_683 .mode6-size_683{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_683 .mode7-size_683{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_683 .mode7-size_683 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_683 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_683 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_683{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_683 span:hover{
                color:!important;
            }
            .custom2_683{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_683 span:hover{
                color:;
            }
            #medical_box_683 .mode-btn1_683{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_683 .mode-btn1_683 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_683 .mode-btn2_683{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_683 .mode-btn2_683 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_683 .div-btn-title_main_683{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_683 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_683 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_684 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_684 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_684 .background-img{
                border-radius:;
            }
        
            #medical_box_684 .new_medical_icon{
                
            }
        #medical_box_684 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_684:hover .new_medical_icon{}#medical_box_684 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;border-style:solid;border-color:#555;}#medical_box_684:hover .new_medical_description{}
                #medical_box_684 
            
            #medical_box_684 .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_684 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_684:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_684 .mode1-size_684{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_684 .new_medical_box > div{
                width:100%;
            }
             #medical_box_684 > div{
               height:100%;
            }
            #medical_box_684 .mode2-size_684{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_684 .mode3-size_684{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_684 .mode4-size_684{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_684 .mode5-size_684{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_684 .mode6-size_684{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_684 .mode7-size_684{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_684 .mode7-size_684 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_684 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_684 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_684{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_684 span:hover{
                color:!important;
            }
            .custom2_684{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_684 span:hover{
                color:;
            }
            #medical_box_684 .mode-btn1_684{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_684 .mode-btn1_684 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_684 .mode-btn2_684{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_684 .mode-btn2_684 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_684 .div-btn-title_main_684{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_684 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_684 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_685 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/photo/work/1630326971_right.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_685 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_685 .background-img{
                border-radius:;
            }
        
            #medical_box_685 .new_medical_icon{
                
            }
        #medical_box_685 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:10%;height:70px;border-style:none;border-color:#000;}#medical_box_685:hover .new_medical_icon{}#medical_box_685 .new_medical_description{color:#fff;font-weight:300;font-size:15px;text-align:justify;margin-top:10px;margin-bottom:10px;border-style:solid;border-color:#555;}#medical_box_685:hover .new_medical_description{}
                #medical_box_685 
            
            #medical_box_685 .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_685 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_685:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_685 .mode1-size_685{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_685 .new_medical_box > div{
                width:100%;
            }
             #medical_box_685 > div{
               height:100%;
            }
            #medical_box_685 .mode2-size_685{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_685 .mode3-size_685{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_685 .mode4-size_685{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_685 .mode5-size_685{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_685 .mode6-size_685{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_685 .mode7-size_685{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_685 .mode7-size_685 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_685 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_685 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_685{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_685 span:hover{
                color:!important;
            }
            .custom2_685{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_685 span:hover{
                color:;
            }
            #medical_box_685 .mode-btn1_685{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_685 .mode-btn1_685 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_685 .mode-btn2_685{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_685 .mode-btn2_685 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_685 .div-btn-title_main_685{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_685 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_685 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_686 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_686 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_686 .background-img{
                border-radius:;
            }
        #medical_box_686 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:20px;border-style:solid;border-color:#555;}#medical_box_686:hover .new_medical_description{}
                #medical_box_686 
            
            #medical_box_686 .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_686 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_686:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_686 .mode1-size_686{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_686 .new_medical_box > div{
                width:100%;
            }
             #medical_box_686 > div{
               height:100%;
            }
            #medical_box_686 .mode2-size_686{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_686 .mode3-size_686{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_686 .mode4-size_686{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_686 .mode5-size_686{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_686 .mode6-size_686{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_686 .mode7-size_686{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_686 .mode7-size_686 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_686 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_686 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_686{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_686 span:hover{
                color:!important;
            }
            .custom2_686{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_686 span:hover{
                color:;
            }
            #medical_box_686 .mode-btn1_686{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_686 .mode-btn1_686 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_686 .mode-btn2_686{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_686 .mode-btn2_686 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_686 .div-btn-title_main_686{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_686 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_686 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_244 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='979']:hover .new_medical_box_main{}
            #module_new_medical_244 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_244 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_244 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_244 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_244 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_244 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_244 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_244 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_244 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_244 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_244 .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_244{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_244 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_244 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_244 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_244 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_244 .swiper-container{
                width:1200px;
            }
            #module_new_medical_244 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_244 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_244 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_244 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='980']{;background-color:#850b0b;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:20px;border-style:none;}.module[data-id_page='980']:hover{;}.module[data-id_page='980']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='980'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='980'] 
            
            .module[data-id_page='980'] .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='980'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='980']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_245 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_245 .content_str{
				width:100%;
			}
            #module_new_medical_245 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_245 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_245 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_245 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_245 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_245 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_245 .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_245 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_245 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_245 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_245 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_245 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_245 .new_medical_description a,#module_new_medical_245 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_245 .new_medical_description a:hover,#module_new_medical_245 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_245 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_245 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_687 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_687 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_687 .background-img{
                border-radius:;
            }
        #medical_box_687 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_687:hover .new_medical_icon{}#medical_box_687.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;}#medical_box_687:hover{}
                #medical_box_687:hover .background-img {
                    filter:none;
                }
            
                #medical_box_687 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_687 
            
            #medical_box_687 .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_687 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_687:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_687.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630390434_1.png");
                }
            
            #medical_box_687 .mode1-size_687{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_687 .new_medical_box > div{
                width:100%;
            }
             #medical_box_687 > div{
               height:100%;
            }
            #medical_box_687 .mode2-size_687{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_687 .mode3-size_687{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_687 .mode4-size_687{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_687 .mode5-size_687{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_687 .mode6-size_687{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_687 .mode7-size_687{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_687 .mode7-size_687 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_687 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_687 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_687{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_687 span:hover{
                color:!important;
            }
            .custom2_687{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_687 span:hover{
                color:;
            }
            #medical_box_687 .mode-btn1_687{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_687 .mode-btn1_687 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_687 .mode-btn2_687{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_687 .mode-btn2_687 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_687 .div-btn-title_main_687{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_687 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_687 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_688 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_688 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_688 .background-img{
                border-radius:;
            }
        #medical_box_688 .new_medical_title{color:#fff;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_688:hover .new_medical_title{}
                #medical_box_688 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_688 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_688:hover .new_medical_description{}
                #medical_box_688 
            
            #medical_box_688 .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_688 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_688:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_688 .mode1-size_688{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_688 .new_medical_box > div{
                width:100%;
            }
             #medical_box_688 > div{
               height:100%;
            }
            #medical_box_688 .mode2-size_688{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_688 .mode3-size_688{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_688 .mode4-size_688{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_688 .mode5-size_688{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_688 .mode6-size_688{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_688 .mode7-size_688{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_688 .mode7-size_688 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_688 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_688 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_688{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_688 span:hover{
                color:!important;
            }
            .custom2_688{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_688 span:hover{
                color:;
            }
            #medical_box_688 .mode-btn1_688{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_688 .mode-btn1_688 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_688 .mode-btn2_688{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_688 .mode-btn2_688 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_688 .div-btn-title_main_688{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_688 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_688 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_689 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_689 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_689 .background-img{
                border-radius:;
            }
        #medical_box_689 .new_medical_title{color:#fff;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_689:hover .new_medical_title{}
                #medical_box_689 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_689.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_689:hover{}#medical_box_689 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_689:hover .new_medical_description{}
                #medical_box_689 
            
            #medical_box_689 .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_689 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_689:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_689 .mode1-size_689{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_689 .new_medical_box > div{
                width:100%;
            }
             #medical_box_689 > div{
               height:100%;
            }
            #medical_box_689 .mode2-size_689{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_689 .mode3-size_689{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_689 .mode4-size_689{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_689 .mode5-size_689{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_689 .mode6-size_689{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_689 .mode7-size_689{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_689 .mode7-size_689 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_689 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_689 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_689{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_689 span:hover{
                color:!important;
            }
            .custom2_689{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_689 span:hover{
                color:;
            }
            #medical_box_689 .mode-btn1_689{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_689 .mode-btn1_689 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_689 .mode-btn2_689{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_689 .mode-btn2_689 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_689 .div-btn-title_main_689{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_689 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_689 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_690 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_690 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_690 .background-img{
                border-radius:;
            }
        #medical_box_690.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;}#medical_box_690:hover{}
                #medical_box_690:hover .background-img {
                    filter:none;
                }
            
                #medical_box_690 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_690 
            
            #medical_box_690 .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_690 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_690:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_690.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630390725_4.png");
                }
            
            #medical_box_690 .mode1-size_690{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_690 .new_medical_box > div{
                width:100%;
            }
             #medical_box_690 > div{
               height:100%;
            }
            #medical_box_690 .mode2-size_690{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_690 .mode3-size_690{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_690 .mode4-size_690{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_690 .mode5-size_690{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_690 .mode6-size_690{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_690 .mode7-size_690{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_690 .mode7-size_690 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_690 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_690 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_690{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_690 span:hover{
                color:!important;
            }
            .custom2_690{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_690 span:hover{
                color:;
            }
            #medical_box_690 .mode-btn1_690{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_690 .mode-btn1_690 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_690 .mode-btn2_690{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_690 .mode-btn2_690 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_690 .div-btn-title_main_690{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_690 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_690 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_691 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_691 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_691 .background-img{
                border-radius:;
            }
        #medical_box_691.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:450px;border-style:none;}#medical_box_691:hover{}
                #medical_box_691:hover .background-img {
                    filter:none;
                }
            
                #medical_box_691 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_691 
            
            #medical_box_691 .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_691 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_691:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_691.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630391784_5.png");
                }
            
            #medical_box_691 .mode1-size_691{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_691 .new_medical_box > div{
                width:100%;
            }
             #medical_box_691 > div{
               height:100%;
            }
            #medical_box_691 .mode2-size_691{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_691 .mode3-size_691{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_691 .mode4-size_691{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_691 .mode5-size_691{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_691 .mode6-size_691{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_691 .mode7-size_691{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_691 .mode7-size_691 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_691 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_691 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_691{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_691 span:hover{
                color:!important;
            }
            .custom2_691{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_691 span:hover{
                color:;
            }
            #medical_box_691 .mode-btn1_691{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_691 .mode-btn1_691 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_691 .mode-btn2_691{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_691 .mode-btn2_691 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_691 .div-btn-title_main_691{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_691 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_691 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_692 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_692 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_692 .background-img{
                border-radius:;
            }
        #medical_box_692 .new_medical_title{color:#fff;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_692:hover .new_medical_title{}
                #medical_box_692 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_692 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_692:hover .new_medical_description{}
                #medical_box_692 
            
            #medical_box_692 .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_692 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_692:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_692 .mode1-size_692{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_692 .new_medical_box > div{
                width:100%;
            }
             #medical_box_692 > div{
               height:100%;
            }
            #medical_box_692 .mode2-size_692{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_692 .mode3-size_692{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_692 .mode4-size_692{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_692 .mode5-size_692{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_692 .mode6-size_692{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_692 .mode7-size_692{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_692 .mode7-size_692 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_692 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_692 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_692{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_692 span:hover{
                color:!important;
            }
            .custom2_692{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_692 span:hover{
                color:;
            }
            #medical_box_692 .mode-btn1_692{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_692 .mode-btn1_692 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_692 .mode-btn2_692{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_692 .mode-btn2_692 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_692 .div-btn-title_main_692{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_692 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_692 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_693 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_693 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_693 .background-img{
                border-radius:;
            }
        #medical_box_693 .new_medical_title{color:#fff;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_693:hover .new_medical_title{}
                #medical_box_693 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_693 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_693:hover .new_medical_description{}
                #medical_box_693 
            
            #medical_box_693 .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_693 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_693:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_693 .mode1-size_693{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_693 .new_medical_box > div{
                width:100%;
            }
             #medical_box_693 > div{
               height:100%;
            }
            #medical_box_693 .mode2-size_693{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_693 .mode3-size_693{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_693 .mode4-size_693{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_693 .mode5-size_693{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_693 .mode6-size_693{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_693 .mode7-size_693{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_693 .mode7-size_693 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_693 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_693 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_693{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_693 span:hover{
                color:!important;
            }
            .custom2_693{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_693 span:hover{
                color:;
            }
            #medical_box_693 .mode-btn1_693{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_693 .mode-btn1_693 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_693 .mode-btn2_693{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_693 .mode-btn2_693 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_693 .div-btn-title_main_693{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_693 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_693 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_694 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_694 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_694 .background-img{
                border-radius:;
            }
        #medical_box_694.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:280px;border-style:none;}#medical_box_694:hover{}
                #medical_box_694:hover .background-img {
                    filter:none;
                }
            
                #medical_box_694 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_694 
            
            #medical_box_694 .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_694 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_694:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_694.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630392420_2.png");
                }
            
            #medical_box_694 .mode1-size_694{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_694 .new_medical_box > div{
                width:100%;
            }
             #medical_box_694 > div{
               height:100%;
            }
            #medical_box_694 .mode2-size_694{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_694 .mode3-size_694{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_694 .mode4-size_694{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_694 .mode5-size_694{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_694 .mode6-size_694{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_694 .mode7-size_694{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_694 .mode7-size_694 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_694 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_694 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_694{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_694 span:hover{
                color:!important;
            }
            .custom2_694{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_694 span:hover{
                color:;
            }
            #medical_box_694 .mode-btn1_694{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_694 .mode-btn1_694 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_694 .mode-btn2_694{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_694 .mode-btn2_694 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_694 .div-btn-title_main_694{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_694 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_694 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_695 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_695 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_695 .background-img{
                border-radius:;
            }
        #medical_box_695.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-style:none;}#medical_box_695:hover{}
                #medical_box_695:hover .background-img {
                    filter:none;
                }
            
                #medical_box_695 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_695 
            
            #medical_box_695 .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_695 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_695:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_695.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630392487_3.png");
                }
            
            #medical_box_695 .mode1-size_695{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_695 .new_medical_box > div{
                width:100%;
            }
             #medical_box_695 > div{
               height:100%;
            }
            #medical_box_695 .mode2-size_695{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_695 .mode3-size_695{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_695 .mode4-size_695{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_695 .mode5-size_695{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_695 .mode6-size_695{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_695 .mode7-size_695{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_695 .mode7-size_695 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_695 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_695 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_695{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_695 span:hover{
                color:!important;
            }
            .custom2_695{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_695 span:hover{
                color:;
            }
            #medical_box_695 .mode-btn1_695{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_695 .mode-btn1_695 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_695 .mode-btn2_695{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_695 .mode-btn2_695 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_695 .div-btn-title_main_695{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_695 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_695 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_696 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_696 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_696 .background-img{
                border-radius:;
            }
        #medical_box_696 .new_medical_title{color:#fff;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_696:hover .new_medical_title{}
                #medical_box_696 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_696 .new_medical_description{color:#fff;font-weight:300;font-size:15px;line-height:25px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_696:hover .new_medical_description{}
                #medical_box_696 
            
            #medical_box_696 .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_696 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_696:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_696 .mode1-size_696{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_696 .new_medical_box > div{
                width:100%;
            }
             #medical_box_696 > div{
               height:100%;
            }
            #medical_box_696 .mode2-size_696{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_696 .mode3-size_696{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_696 .mode4-size_696{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_696 .mode5-size_696{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_696 .mode6-size_696{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_696 .mode7-size_696{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_696 .mode7-size_696 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_696 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_696 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_696{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_696 span:hover{
                color:!important;
            }
            .custom2_696{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_696 span:hover{
                color:;
            }
            #medical_box_696 .mode-btn1_696{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_696 .mode-btn1_696 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_696 .mode-btn2_696{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_696 .mode-btn2_696 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_696 .div-btn-title_main_696{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_696 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_696 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_245 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='980']:hover .new_medical_box_main{}
            #module_new_medical_245 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_245 .new_medical_module{
                    width:595px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_245 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_245 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_245 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_245 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_245 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_245 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_245 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_245 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_245 .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_245{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_245 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_245 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_245 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_245 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_245 .swiper-container{
                width:1200px;
            }
            #module_new_medical_245 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_245 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_245 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_245 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='982']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;border-style:none;}.module[data-id_page='982']:hover{;}.module[data-id_page='982']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='982'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='982']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='982'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='982'] 
            
            .module[data-id_page='982'] .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='982'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='982']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='982']{
                               background-image:url("https://asgharabdoli.com/files/ok/1629880089_843249_backdiv1.jpg");
                           }
                       #layout_box_64 .new_layout_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;margin-bottom:10px;border-style:solid;border-color:#555;}#layout_box_64:hover .new_layout_description{}#layout_box_64 .new_layout_title{color:#000;font-weight:bold;font-size:25px;text-align:center;margin-top:10px;margin-bottom:10px;}#layout_box_64:hover .new_layout_title{}
                #layout_box_64 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_64 
            
            #layout_box_64 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_64 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_64:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_64 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_64 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_64.cursor_box-layout{
                cursor:auto; 
            }
        
                #module_new_layout_14 .new_layout_box_main {
                    display:grid;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_14{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_14 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_14 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_14 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_14 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_14 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='981']{;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='981']:hover{;}.module[data-id_page='981']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='981'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='981']:hover .background-img {
                    filter:none;
                }
            
                .module[data-id_page='981'] .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                .module[data-id_page='981'] 
            
            .module[data-id_page='981'] .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='981'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='981']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                           .module[data-id_page='981']{
                               background-image:url("https://asgharabdoli.com/files/ok/1629880089_843249_backdiv1.jpg");
                           }
                       
            #module_new_medical_246 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_246 .content_str{
				width:100%;
			}
            #module_new_medical_246 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_246 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_246 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_246 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_246 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_246 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_246 .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_246 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_246 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_246 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_246 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_246 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_246 .new_medical_description a,#module_new_medical_246 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_246 .new_medical_description a:hover,#module_new_medical_246 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_246 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_246 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_698 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630488774_2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_698 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_698 .background-img{
                border-radius:;
            }
        
            #medical_box_698 .new_medical_icon{
                
            }
        #medical_box_698 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_698:hover .new_medical_title{}
                #medical_box_698 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_698 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:200px;border-style:none;border-color:#000;}#medical_box_698:hover .new_medical_icon{}#medical_box_698 .new_medical_description{color:#000;font-weight:300;font-size:12px;line-height:20px;text-align:justify;margin-top:10px;margin-bottom:10px;border-style:solid;border-color:#555;}#medical_box_698:hover .new_medical_description{}
                #medical_box_698 
            
            #medical_box_698 .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_698 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_698:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_698 .mode1-size_698{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_698 .new_medical_box > div{
                width:100%;
            }
             #medical_box_698 > div{
               height:100%;
            }
            #medical_box_698 .mode2-size_698{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_698 .mode3-size_698{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_698 .mode4-size_698{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_698 .mode5-size_698{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_698 .mode6-size_698{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_698 .mode7-size_698{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_698 .mode7-size_698 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_698 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_698 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_698{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_698 span:hover{
                color:!important;
            }
            .custom2_698{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_698 span:hover{
                color:;
            }
            #medical_box_698 .mode-btn1_698{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_698 .mode-btn1_698 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_698 .mode-btn2_698{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_698 .mode-btn2_698 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_698 .div-btn-title_main_698{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_698 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_698 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_697 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630488648_3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_697 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_697 .background-img{
                border-radius:;
            }
        
            #medical_box_697 .new_medical_icon{
                
            }
        #medical_box_697 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_697:hover .new_medical_title{}
                #medical_box_697 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_697 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:200px;border-style:none;border-color:#000;}#medical_box_697:hover .new_medical_icon{}#medical_box_697 .new_medical_description{color:#000;font-weight:300;font-size:12px;line-height:20px;text-align:justify;margin-top:10px;margin-bottom:10px;border-style:solid;border-color:#555;}#medical_box_697:hover .new_medical_description{}
                #medical_box_697 
            
            #medical_box_697 .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_697 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_697:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_697 .mode1-size_697{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_697 .new_medical_box > div{
                width:100%;
            }
             #medical_box_697 > div{
               height:100%;
            }
            #medical_box_697 .mode2-size_697{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_697 .mode3-size_697{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_697 .mode4-size_697{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_697 .mode5-size_697{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_697 .mode6-size_697{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_697 .mode7-size_697{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_697 .mode7-size_697 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_697 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_697 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_697{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_697 span:hover{
                color:!important;
            }
            .custom2_697{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_697 span:hover{
                color:;
            }
            #medical_box_697 .mode-btn1_697{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_697 .mode-btn1_697 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_697 .mode-btn2_697{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_697 .mode-btn2_697 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_697 .div-btn-title_main_697{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_697 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_697 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_699 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630489243_1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_699 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_699 .background-img{
                border-radius:;
            }
        
            #medical_box_699 .new_medical_icon{
                
            }
        #medical_box_699 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_699:hover .new_medical_title{}
                #medical_box_699 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_699 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:200px;border-style:none;border-color:#000;}#medical_box_699:hover .new_medical_icon{}#medical_box_699 .new_medical_description{color:#000;font-weight:300;font-size:12px;line-height:20px;text-align:justify;margin-top:10px;margin-bottom:10px;border-style:solid;border-color:#555;}#medical_box_699:hover .new_medical_description{}
                #medical_box_699 
            
            #medical_box_699 .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_699 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_699:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_699 .mode1-size_699{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_699 .new_medical_box > div{
                width:100%;
            }
             #medical_box_699 > div{
               height:100%;
            }
            #medical_box_699 .mode2-size_699{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_699 .mode3-size_699{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_699 .mode4-size_699{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_699 .mode5-size_699{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_699 .mode6-size_699{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_699 .mode7-size_699{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_699 .mode7-size_699 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_699 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_699 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_699{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_699 span:hover{
                color:!important;
            }
            .custom2_699{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_699 span:hover{
                color:;
            }
            #medical_box_699 .mode-btn1_699{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_699 .mode-btn1_699 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_699 .mode-btn2_699{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_699 .mode-btn2_699 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_699 .div-btn-title_main_699{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_699 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_699 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_700 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630489435_4.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_700 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_700 .background-img{
                border-radius:;
            }
        
            #medical_box_700 .new_medical_icon{
                
            }
        #medical_box_700 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_700:hover .new_medical_title{}
                #medical_box_700 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_700 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:50%;height:200px;border-style:none;border-color:#000;}#medical_box_700:hover .new_medical_icon{}#medical_box_700 .new_medical_description{color:#000;font-weight:300;font-size:12px;line-height:20px;text-align:justify;margin-top:10px;margin-bottom:10px;border-style:solid;border-color:#555;}#medical_box_700:hover .new_medical_description{}
                #medical_box_700 
            
            #medical_box_700 .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_700 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_700:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_700 .mode1-size_700{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_700 .new_medical_box > div{
                width:100%;
            }
             #medical_box_700 > div{
               height:100%;
            }
            #medical_box_700 .mode2-size_700{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_700 .mode3-size_700{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_700 .mode4-size_700{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_700 .mode5-size_700{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_700 .mode6-size_700{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_700 .mode7-size_700{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_700 .mode7-size_700 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_700 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_700 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_700{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_700 span:hover{
                color:!important;
            }
            .custom2_700{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_700 span:hover{
                color:;
            }
            #medical_box_700 .mode-btn1_700{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_700 .mode-btn1_700 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_700 .mode-btn2_700{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_700 .mode-btn2_700 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_700 .div-btn-title_main_700{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_700 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_700 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_246 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='981']:hover .new_medical_box_main{}
            #module_new_medical_246 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_246 .new_medical_module{
                    width:285px;
                    position:relative;
                    overflow:hidden;
                    margin-left:20px;
                    margin-bottom:10px;
                }
                #module_new_medical_246 .medical_box_main_animation_trigger{
                    margin-left:20px;
                    margin-bottom:10px;
                }
                #module_new_medical_246 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_246 .medical_box_main_animation_trigger:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_246 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_246 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_246 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_246 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_246 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_246 .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_246{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_246 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_246 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_246 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_246 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_246 .swiper-container{
                width:1200px;
            }
            #module_new_medical_246 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_246 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_246 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_246 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
                        .module[data-id_page='984']{
                            background: linear-gradient(to right, #e2e2e2, #fdfdfd);
                        }
                    .module[data-id_page='984']{;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='984']:hover{;}.module[data-id_page='984']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='984'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='984'] 
            
            .module[data-id_page='984'] .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='984'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='984']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            .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_429 .ti_ma_h{
                width:1200px;
                text-align: right;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 0px;
                color: ;
                background-color: ;
            }
            #description_429 .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_429 .container_box_1546{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                #description_429 .container_box_1547{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_1{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                #description_429 .container_box_1548{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_2{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                #description_429 .container_box_1549{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_3{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                #description_429 .container_box_1550{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .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_429 .container_box_1551{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .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_429 .container_box_1552{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .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_429 .container_box_1553{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .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_429 .container_box_1554{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .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_429 .container_box_1555{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .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_429 .container_box_1556{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_10{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_10 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_10  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_10 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_10 a{
                    color:;
                }
                .sidebar_box_10 a:hover{
                    color:;
                }
                .sidebar_box_10 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1557{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_11{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_11 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_11  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_11 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_11 a{
                    color:;
                }
                .sidebar_box_11 a:hover{
                    color:;
                }
                .sidebar_box_11 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1558{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_12{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_12 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_12  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_12 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_12 a{
                    color:;
                }
                .sidebar_box_12 a:hover{
                    color:;
                }
                .sidebar_box_12 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1559{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_13{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_13 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_13  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_13 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_13 a{
                    color:;
                }
                .sidebar_box_13 a:hover{
                    color:;
                }
                .sidebar_box_13 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1560{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_14{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_14 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_14  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_14 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_14 a{
                    color:;
                }
                .sidebar_box_14 a:hover{
                    color:;
                }
                .sidebar_box_14 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1561{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_15{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_15 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_15  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_15 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_15 a{
                    color:;
                }
                .sidebar_box_15 a:hover{
                    color:;
                }
                .sidebar_box_15 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1562{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_16{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_16 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_16  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_16 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_16 a{
                    color:;
                }
                .sidebar_box_16 a:hover{
                    color:;
                }
                .sidebar_box_16 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
                #description_429 .container_box_1563{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_429 .font_title_box_17{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_17 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_17  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_17 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_17 a{
                    color:;
                }
                .sidebar_box_17 a:hover{
                    color:;
                }
                .sidebar_box_17 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
            #description_429 .public_center{
                border-spacing:0px;
            }
        #description_429{
                  padding-top:10px;
                }#description_429{
                  padding-bottom:10px;
                }#description_429{
                    background-color:#e2e2e2;
                }#description_429{
                        font-size:15px;
                }#description_429 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_429 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_429 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_429 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_429 .color_title{/*range title asli module*/
                            color: ;
                                }#description_429 .color_text{/*range text haye module  */
                            color:;
                                }#description_429 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_429 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_429 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_429 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_429 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_429 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_429 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_429 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }
                        .module[data-id_page='985']{
                            background: linear-gradient(to right, #e2e2e2, #fdfdfd);
                        }
                    .module[data-id_page='985']{;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='985']:hover{;}.module[data-id_page='985']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='985'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='985'] 
            
            .module[data-id_page='985'] .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='985'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='985']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layoutfull_box_137.new_layoutfull_module{background-size:contain;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;height:20vw;border-style:none;}#layoutfull_box_137:hover{}#layoutfull_box_137 .new_layoutfull_button{color:#ffdb3a;background-color:#ffdb3a;font-weight:300;font-size:1vw;width:7vw;height:2vw;line-height:2vw;text-align:center;margin-top:3vw;margin-left:20vw;border-radius:5vw;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_137 .new_layoutfull_button:hover{color:#ffdb3a !important;background-color:#343434 !important;box-shadow:0px 0px 0px 0px  !important;}#layoutfull_box_137 .new_layoutfull_title{color:#343434;font-weight:bold;font-size:2vw;text-align:center;margin-top:5vw;padding-left:20vw;}#layoutfull_box_137:hover .new_layoutfull_title{}
                #layoutfull_box_137 .new_layoutfull_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layoutfull_box_137:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_137 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://asgharabdoli.com/files/photo/work/1630565087_hand.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_137 
            
            #layoutfull_box_137 .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_137 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_137:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_137 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_137.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_137 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_84{
                overflow:hidden;
            }
            #module_new_layoutfull_84 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_84 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_84 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
                        .module[data-id_page='986']{
                            background: linear-gradient(to right, #e2e2e2, #fdfdfd);
                        }
                    .module[data-id_page='986']{;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='986']:hover{;}.module[data-id_page='986']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='986'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='986'] 
            
            .module[data-id_page='986'] .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='986'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='986']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            .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_430 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 20px;
                color: ;
                background-color: ;
            }
            #description_430 .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_430 .container_box_1564{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_430 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
            #description_430 .public_center{
                border-spacing:0px;
            }
        #description_430{
                  padding-top:10px;
                }#description_430{
                  padding-bottom:10px;
                }#description_430{
                    background-color:#e2e2e2;
                }#description_430{
                        font-size:15px;
                }#description_430 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_430 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_430 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_430 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_430 .color_title{/*range title asli module*/
                            color: ;
                                }#description_430 .color_text{/*range text haye module  */
                            color:;
                                }#description_430 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_430 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_430 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_430 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_430 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_430 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_430 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_430 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }
                        .module[data-id_page='987']{
                            background: linear-gradient(to right, #e2e2e2, #fdfdfd);
                        }
                    .module[data-id_page='987']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-top-width:1px;border-color:#343434;}.module[data-id_page='987']:hover{;}.module[data-id_page='987']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='987'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='987'] 
            
            .module[data-id_page='987'] .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='987'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='987']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_247 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_247 .content_str{
				width:100%;
			}
            #module_new_medical_247 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_247 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_247 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_247 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_247 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_247 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_247 .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_247 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_247 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_247 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_247 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_247 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_247 .new_medical_description a,#module_new_medical_247 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_247 .new_medical_description a:hover,#module_new_medical_247 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_247 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_247 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_703 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_703 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_703 .background-img{
                border-radius:;
            }
        #medical_box_703.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:solid;border-top-width:1px;border-color:#343434;}#medical_box_703:hover{}#medical_box_703 .new_medical_description{color:#000;font-weight:300;line-height:25px;text-align:justify;margin-top:10px;margin-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_703:hover .new_medical_description{}
                #medical_box_703 
            
            #medical_box_703 .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_703 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_703:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_703 .mode1-size_703{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_703 .new_medical_box > div{
                width:100%;
            }
             #medical_box_703 > div{
               height:100%;
            }
            #medical_box_703 .mode2-size_703{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_703 .mode3-size_703{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_703 .mode4-size_703{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_703 .mode5-size_703{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_703 .mode6-size_703{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_703 .mode7-size_703{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_703 .mode7-size_703 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_703 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_703 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_703{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_703 span:hover{
                color:!important;
            }
            .custom2_703{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_703 span:hover{
                color:;
            }
            #medical_box_703 .mode-btn1_703{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_703 .mode-btn1_703 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_703 .mode-btn2_703{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_703 .mode-btn2_703 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_703 .div-btn-title_main_703{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_703 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_703 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_702 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_702 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_702 .background-img{
                border-radius:;
            }
        #medical_box_702.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:solid;border-top-width:1px;border-color:#343434;}#medical_box_702:hover{}#medical_box_702 .new_medical_description{color:#000;font-weight:300;line-height:25px;text-align:justify;margin-top:10px;margin-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_702:hover .new_medical_description{}
                #medical_box_702 
            
            #medical_box_702 .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_702 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_702:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_702 .mode1-size_702{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_702 .new_medical_box > div{
                width:100%;
            }
             #medical_box_702 > div{
               height:100%;
            }
            #medical_box_702 .mode2-size_702{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_702 .mode3-size_702{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_702 .mode4-size_702{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_702 .mode5-size_702{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_702 .mode6-size_702{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_702 .mode7-size_702{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_702 .mode7-size_702 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_702 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_702 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_702{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_702 span:hover{
                color:!important;
            }
            .custom2_702{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_702 span:hover{
                color:;
            }
            #medical_box_702 .mode-btn1_702{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_702 .mode-btn1_702 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_702 .mode-btn2_702{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_702 .mode-btn2_702 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_702 .div-btn-title_main_702{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_702 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_702 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_701 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_701 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_701 .background-img{
                border-radius:;
            }
        #medical_box_701.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:solid;border-top-width:1px;border-color:#343434;}#medical_box_701:hover{}#medical_box_701 .new_medical_description{color:#000;font-weight:300;line-height:25px;text-align:justify;margin-top:10px;margin-bottom:10px;padding-right:10px;padding-left:10px;border-style:solid;border-color:#555;}#medical_box_701:hover .new_medical_description{}
                #medical_box_701 
            
            #medical_box_701 .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_701 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_701:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_701 .mode1-size_701{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_701 .new_medical_box > div{
                width:100%;
            }
             #medical_box_701 > div{
               height:100%;
            }
            #medical_box_701 .mode2-size_701{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_701 .mode3-size_701{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_701 .mode4-size_701{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_701 .mode5-size_701{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_701 .mode6-size_701{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_701 .mode7-size_701{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_701 .mode7-size_701 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_701 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_701 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_701{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_701 span:hover{
                color:!important;
            }
            .custom2_701{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_701 span:hover{
                color:;
            }
            #medical_box_701 .mode-btn1_701{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_701 .mode-btn1_701 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_701 .mode-btn2_701{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_701 .mode-btn2_701 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_701 .div-btn-title_main_701{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_701 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_701 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #module_new_medical_247 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_247 .new_medical_module{
                    width:393px;
                    position:relative;
                    overflow:hidden;
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_247 .medical_box_main_animation_trigger{
                    margin-left:10px;
                    margin-bottom:10px;
                }
                #module_new_medical_247 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_247 .medical_box_main_animation_trigger:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_247 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_247 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_247 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_247 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_247 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_247 .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_247{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_247 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_247 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_247 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_247 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_247 .swiper-container{
                width:1200px;
            }
            #module_new_medical_247 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_247 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_247 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_247 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
                        .module[data-id_page='988']{
                            background: linear-gradient(to right, #e2e2e2, #fdfdfd);
                        }
                    .module[data-id_page='988']{;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='988']:hover{;}.module[data-id_page='988']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='988'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='988'] 
            
            .module[data-id_page='988'] .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='988'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='988']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_248 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_248 .content_str{
				width:100%;
			}
            #module_new_medical_248 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_248 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_248 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_248 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_248 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_248 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_248 .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_248 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_248 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_248 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_248 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_248 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_248 .new_medical_description a,#module_new_medical_248 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_248 .new_medical_description a:hover,#module_new_medical_248 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_248 .swiper-pagination{
                    white-space: nowrap;
                    height: fit-content;
                    position: absolute;
                    top: 98.8%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 130px;
                }
                #module_new_medical_248 .swiper-pagination-bullet{
                    margin: 0 3px;
                    width: 20px;
                    height: 20px;
                    text-align: center;
                    line-height: 20px;
                    color:#fff;
                    font-size:15px!important;
                }
            
            #medical_box_739 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630833111_1627129859_11.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_739 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_739 .background-img{
                border-radius:;
            }
        
            #medical_box_739 .new_medical_icon{
                
            }
        #medical_box_739 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_739 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_739 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_739:hover .new_medical_title{}
                #medical_box_739 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_739 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_739:hover .new_medical_icon{}#medical_box_739.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_739:hover{}#medical_box_739 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_739:hover .new_medical_description{}
                #medical_box_739:hover .background-img {
                    filter:none;
                }
            
                #medical_box_739 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_739 
            
            #medical_box_739 .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_739 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_739:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_739.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_739 .mode1-size_739{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_739 .new_medical_box > div{
                width:100%;
            }
             #medical_box_739 > div{
               height:100%;
            }
            #medical_box_739 .mode2-size_739{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_739 .mode3-size_739{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_739 .mode4-size_739{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_739 .mode5-size_739{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_739 .mode6-size_739{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_739 .mode7-size_739{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_739 .mode7-size_739 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_739 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_739 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_739{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_739 span:hover{
                color:!important;
            }
            .custom2_739{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_739 span:hover{
                color:;
            }
            #medical_box_739 .mode-btn1_739{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_739 .mode-btn1_739 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_739 .mode-btn2_739{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_739 .mode-btn2_739 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_739 .div-btn-title_main_739{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_739 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_739 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_738 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630832698_1627129425_6.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_738 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_738 .background-img{
                border-radius:;
            }
        
            #medical_box_738 .new_medical_icon{
                
            }
        #medical_box_738 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_738 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_738 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_738:hover .new_medical_title{}
                #medical_box_738 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_738 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_738:hover .new_medical_icon{}#medical_box_738.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_738:hover{}#medical_box_738 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_738:hover .new_medical_description{}
                #medical_box_738:hover .background-img {
                    filter:none;
                }
            
                #medical_box_738 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_738 
            
            #medical_box_738 .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_738 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_738:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_738.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_738 .mode1-size_738{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_738 .new_medical_box > div{
                width:100%;
            }
             #medical_box_738 > div{
               height:100%;
            }
            #medical_box_738 .mode2-size_738{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_738 .mode3-size_738{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_738 .mode4-size_738{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_738 .mode5-size_738{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_738 .mode6-size_738{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_738 .mode7-size_738{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_738 .mode7-size_738 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_738 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_738 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_738{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_738 span:hover{
                color:!important;
            }
            .custom2_738{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_738 span:hover{
                color:;
            }
            #medical_box_738 .mode-btn1_738{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_738 .mode-btn1_738 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_738 .mode-btn2_738{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_738 .mode-btn2_738 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_738 .div-btn-title_main_738{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_738 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_738 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_737 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630832365_1627128287_12.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_737 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_737 .background-img{
                border-radius:;
            }
        
            #medical_box_737 .new_medical_icon{
                
            }
        #medical_box_737 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_737 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_737 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_737:hover .new_medical_title{}
                #medical_box_737 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_737 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_737:hover .new_medical_icon{}#medical_box_737.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_737:hover{}#medical_box_737 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_737:hover .new_medical_description{}
                #medical_box_737:hover .background-img {
                    filter:none;
                }
            
                #medical_box_737 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_737 
            
            #medical_box_737 .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_737 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_737:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_737.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_737 .mode1-size_737{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_737 .new_medical_box > div{
                width:100%;
            }
             #medical_box_737 > div{
               height:100%;
            }
            #medical_box_737 .mode2-size_737{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_737 .mode3-size_737{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_737 .mode4-size_737{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_737 .mode5-size_737{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_737 .mode6-size_737{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_737 .mode7-size_737{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_737 .mode7-size_737 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_737 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_737 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_737{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_737 span:hover{
                color:!important;
            }
            .custom2_737{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_737 span:hover{
                color:;
            }
            #medical_box_737 .mode-btn1_737{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_737 .mode-btn1_737 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_737 .mode-btn2_737{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_737 .mode-btn2_737 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_737 .div-btn-title_main_737{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_737 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_737 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_736 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630831650_1627126888_1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_736 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_736 .background-img{
                border-radius:;
            }
        
            #medical_box_736 .new_medical_icon{
                
            }
        #medical_box_736 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_736 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_736 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_736:hover .new_medical_title{}
                #medical_box_736 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_736 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_736:hover .new_medical_icon{}#medical_box_736.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_736:hover{}#medical_box_736 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_736:hover .new_medical_description{}
                #medical_box_736:hover .background-img {
                    filter:none;
                }
            
                #medical_box_736 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_736 
            
            #medical_box_736 .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_736 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_736:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_736.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_736 .mode1-size_736{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_736 .new_medical_box > div{
                width:100%;
            }
             #medical_box_736 > div{
               height:100%;
            }
            #medical_box_736 .mode2-size_736{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_736 .mode3-size_736{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_736 .mode4-size_736{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_736 .mode5-size_736{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_736 .mode6-size_736{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_736 .mode7-size_736{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_736 .mode7-size_736 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_736 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_736 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_736{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_736 span:hover{
                color:!important;
            }
            .custom2_736{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_736 span:hover{
                color:;
            }
            #medical_box_736 .mode-btn1_736{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_736 .mode-btn1_736 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_736 .mode-btn2_736{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_736 .mode-btn2_736 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_736 .div-btn-title_main_736{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_736 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_736 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_735 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630831318_1626336300_1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_735 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_735 .background-img{
                border-radius:;
            }
        
            #medical_box_735 .new_medical_icon{
                
            }
        #medical_box_735 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_735 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_735 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_735:hover .new_medical_title{}
                #medical_box_735 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_735 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_735:hover .new_medical_icon{}#medical_box_735.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_735:hover{}#medical_box_735 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_735:hover .new_medical_description{}
                #medical_box_735:hover .background-img {
                    filter:none;
                }
            
                #medical_box_735 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_735 
            
            #medical_box_735 .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_735 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_735:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_735.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_735 .mode1-size_735{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_735 .new_medical_box > div{
                width:100%;
            }
             #medical_box_735 > div{
               height:100%;
            }
            #medical_box_735 .mode2-size_735{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_735 .mode3-size_735{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_735 .mode4-size_735{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_735 .mode5-size_735{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_735 .mode6-size_735{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_735 .mode7-size_735{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_735 .mode7-size_735 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_735 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_735 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_735{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_735 span:hover{
                color:!important;
            }
            .custom2_735{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_735 span:hover{
                color:;
            }
            #medical_box_735 .mode-btn1_735{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_735 .mode-btn1_735 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_735 .mode-btn2_735{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_735 .mode-btn2_735 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_735 .div-btn-title_main_735{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_735 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_735 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_734 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630830902_of Untitled (3).jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_734 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_734 .background-img{
                border-radius:;
            }
        
            #medical_box_734 .new_medical_icon{
                
            }
        #medical_box_734 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_734 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_734 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_734:hover .new_medical_title{}
                #medical_box_734 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_734 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_734:hover .new_medical_icon{}#medical_box_734.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_734:hover{}#medical_box_734 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_734:hover .new_medical_description{}
                #medical_box_734:hover .background-img {
                    filter:none;
                }
            
                #medical_box_734 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_734 
            
            #medical_box_734 .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_734 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_734:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_734.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_734 .mode1-size_734{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_734 .new_medical_box > div{
                width:100%;
            }
             #medical_box_734 > div{
               height:100%;
            }
            #medical_box_734 .mode2-size_734{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_734 .mode3-size_734{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_734 .mode4-size_734{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_734 .mode5-size_734{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_734 .mode6-size_734{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_734 .mode7-size_734{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_734 .mode7-size_734 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_734 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_734 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_734{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_734 span:hover{
                color:!important;
            }
            .custom2_734{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_734 span:hover{
                color:;
            }
            #medical_box_734 .mode-btn1_734{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_734 .mode-btn1_734 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_734 .mode-btn2_734{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_734 .mode-btn2_734 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_734 .div-btn-title_main_734{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_734 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_734 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_733 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630830578_6335340_Untitle.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_733 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_733 .background-img{
                border-radius:;
            }
        
            #medical_box_733 .new_medical_icon{
                
            }
        #medical_box_733 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_733 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_733 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_733:hover .new_medical_title{}
                #medical_box_733 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_733 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_733:hover .new_medical_icon{}#medical_box_733.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_733:hover{}#medical_box_733 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_733:hover .new_medical_description{}
                #medical_box_733:hover .background-img {
                    filter:none;
                }
            
                #medical_box_733 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_733 
            
            #medical_box_733 .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_733 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_733:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_733.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_733 .mode1-size_733{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_733 .new_medical_box > div{
                width:100%;
            }
             #medical_box_733 > div{
               height:100%;
            }
            #medical_box_733 .mode2-size_733{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_733 .mode3-size_733{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_733 .mode4-size_733{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_733 .mode5-size_733{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_733 .mode6-size_733{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_733 .mode7-size_733{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_733 .mode7-size_733 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_733 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_733 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_733{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_733 span:hover{
                color:!important;
            }
            .custom2_733{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_733 span:hover{
                color:;
            }
            #medical_box_733 .mode-btn1_733{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_733 .mode-btn1_733 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_733 .mode-btn2_733{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_733 .mode-btn2_733 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_733 .div-btn-title_main_733{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_733 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_733 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_732 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630830144_3095_Untitled-1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_732 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_732 .background-img{
                border-radius:;
            }
        
            #medical_box_732 .new_medical_icon{
                
            }
        #medical_box_732 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:6px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_732 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_732 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_732:hover .new_medical_title{}
                #medical_box_732 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_732 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_732:hover .new_medical_icon{}#medical_box_732.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_732:hover{}#medical_box_732 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_732:hover .new_medical_description{}
                #medical_box_732:hover .background-img {
                    filter:none;
                }
            
                #medical_box_732 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_732 
            
            #medical_box_732 .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_732 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_732:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_732.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_732 .mode1-size_732{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_732 .new_medical_box > div{
                width:100%;
            }
             #medical_box_732 > div{
               height:100%;
            }
            #medical_box_732 .mode2-size_732{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_732 .mode3-size_732{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_732 .mode4-size_732{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_732 .mode5-size_732{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_732 .mode6-size_732{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_732 .mode7-size_732{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_732 .mode7-size_732 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_732 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_732 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_732{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_732 span:hover{
                color:!important;
            }
            .custom2_732{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_732 span:hover{
                color:;
            }
            #medical_box_732 .mode-btn1_732{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_732 .mode-btn1_732 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_732 .mode-btn2_732{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_732 .mode-btn2_732 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_732 .div-btn-title_main_732{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_732 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_732 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_731 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630829669_1625326507_47.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_731 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_731 .background-img{
                border-radius:;
            }
        
            #medical_box_731 .new_medical_icon{
                
            }
        #medical_box_731 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:5px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_731 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_731 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_731:hover .new_medical_title{}
                #medical_box_731 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_731 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_731:hover .new_medical_icon{}#medical_box_731.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_731:hover{}#medical_box_731 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_731:hover .new_medical_description{}
                #medical_box_731:hover .background-img {
                    filter:none;
                }
            
                #medical_box_731 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_731 
            
            #medical_box_731 .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_731 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_731:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_731.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_731 .mode1-size_731{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_731 .new_medical_box > div{
                width:100%;
            }
             #medical_box_731 > div{
               height:100%;
            }
            #medical_box_731 .mode2-size_731{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_731 .mode3-size_731{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_731 .mode4-size_731{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_731 .mode5-size_731{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_731 .mode6-size_731{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_731 .mode7-size_731{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_731 .mode7-size_731 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_731 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_731 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_731{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_731 span:hover{
                color:!important;
            }
            .custom2_731{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_731 span:hover{
                color:;
            }
            #medical_box_731 .mode-btn1_731{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_731 .mode-btn1_731 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_731 .mode-btn2_731{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_731 .mode-btn2_731 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_731 .div-btn-title_main_731{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_731 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_731 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_730 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630829289_1625324409_3.jpeg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_730 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_730 .background-img{
                border-radius:;
            }
        
            #medical_box_730 .new_medical_icon{
                
            }
        #medical_box_730 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_730 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_730 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_730:hover .new_medical_title{}
                #medical_box_730 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_730 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_730:hover .new_medical_icon{}#medical_box_730.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_730:hover{}#medical_box_730 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_730:hover .new_medical_description{}
                #medical_box_730:hover .background-img {
                    filter:none;
                }
            
                #medical_box_730 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_730 
            
            #medical_box_730 .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_730 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_730:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_730.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_730 .mode1-size_730{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_730 .new_medical_box > div{
                width:100%;
            }
             #medical_box_730 > div{
               height:100%;
            }
            #medical_box_730 .mode2-size_730{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_730 .mode3-size_730{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_730 .mode4-size_730{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_730 .mode5-size_730{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_730 .mode6-size_730{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_730 .mode7-size_730{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_730 .mode7-size_730 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_730 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_730 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_730{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_730 span:hover{
                color:!important;
            }
            .custom2_730{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_730 span:hover{
                color:;
            }
            #medical_box_730 .mode-btn1_730{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_730 .mode-btn1_730 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_730 .mode-btn2_730{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_730 .mode-btn2_730 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_730 .div-btn-title_main_730{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_730 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_730 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_729 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630828475_-Marketing-Plan.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_729 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_729 .background-img{
                border-radius:;
            }
        
            #medical_box_729 .new_medical_icon{
                
            }
        #medical_box_729 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_729 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_729 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_729:hover .new_medical_title{}
                #medical_box_729 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_729 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_729:hover .new_medical_icon{}#medical_box_729.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_729:hover{}#medical_box_729 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_729:hover .new_medical_description{}
                #medical_box_729:hover .background-img {
                    filter:none;
                }
            
                #medical_box_729 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_729 
            
            #medical_box_729 .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_729 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_729:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_729.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_729 .mode1-size_729{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_729 .new_medical_box > div{
                width:100%;
            }
             #medical_box_729 > div{
               height:100%;
            }
            #medical_box_729 .mode2-size_729{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_729 .mode3-size_729{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_729 .mode4-size_729{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_729 .mode5-size_729{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_729 .mode6-size_729{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_729 .mode7-size_729{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_729 .mode7-size_729 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_729 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_729 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_729{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_729 span:hover{
                color:!important;
            }
            .custom2_729{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_729 span:hover{
                color:;
            }
            #medical_box_729 .mode-btn1_729{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_729 .mode-btn1_729 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_729 .mode-btn2_729{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_729 .mode-btn2_729 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_729 .div-btn-title_main_729{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_729 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_729 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_728 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630827782_-Marketing-Plan.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_728 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_728 .background-img{
                border-radius:;
            }
        
            #medical_box_728 .new_medical_icon{
                
            }
        #medical_box_728 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_728 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_728 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_728:hover .new_medical_title{}
                #medical_box_728 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_728 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_728:hover .new_medical_icon{}#medical_box_728.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_728:hover{}#medical_box_728 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_728:hover .new_medical_description{}
                #medical_box_728:hover .background-img {
                    filter:none;
                }
            
                #medical_box_728 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_728 
            
            #medical_box_728 .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_728 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_728:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_728.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630827438_5811409_textbox.png");
                }
            
            #medical_box_728 .mode1-size_728{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_728 .new_medical_box > div{
                width:100%;
            }
             #medical_box_728 > div{
               height:100%;
            }
            #medical_box_728 .mode2-size_728{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_728 .mode3-size_728{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_728 .mode4-size_728{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_728 .mode5-size_728{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_728 .mode6-size_728{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_728 .mode7-size_728{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_728 .mode7-size_728 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_728 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_728 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_728{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_728 span:hover{
                color:!important;
            }
            .custom2_728{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_728 span:hover{
                color:;
            }
            #medical_box_728 .mode-btn1_728{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_728 .mode-btn1_728 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_728 .mode-btn2_728{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_728 .mode-btn2_728 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_728 .div-btn-title_main_728{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_728 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_728 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_727 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630827292_-Marketing-Plan.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_727 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_727 .background-img{
                border-radius:;
            }
        
            #medical_box_727 .new_medical_icon{
                
            }
        #medical_box_727 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_727 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_727 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_727:hover .new_medical_title{}
                #medical_box_727 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_727 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_727:hover .new_medical_icon{}#medical_box_727.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_727:hover{}#medical_box_727 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_727:hover .new_medical_description{}
                #medical_box_727:hover .background-img {
                    filter:none;
                }
            
                #medical_box_727 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_727 
            
            #medical_box_727 .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_727 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_727:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_727.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_727 .mode1-size_727{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_727 .new_medical_box > div{
                width:100%;
            }
             #medical_box_727 > div{
               height:100%;
            }
            #medical_box_727 .mode2-size_727{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_727 .mode3-size_727{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_727 .mode4-size_727{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_727 .mode5-size_727{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_727 .mode6-size_727{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_727 .mode7-size_727{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_727 .mode7-size_727 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_727 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_727 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_727{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_727 span:hover{
                color:!important;
            }
            .custom2_727{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_727 span:hover{
                color:;
            }
            #medical_box_727 .mode-btn1_727{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_727 .mode-btn1_727 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_727 .mode-btn2_727{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_727 .mode-btn2_727 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_727 .div-btn-title_main_727{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_727 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_727 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_726 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630826784_-Marketing-Plan.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_726 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_726 .background-img{
                border-radius:;
            }
        
            #medical_box_726 .new_medical_icon{
                
            }
        #medical_box_726 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_726 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_726 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:10px;padding-left:10px;}#medical_box_726:hover .new_medical_title{}
                #medical_box_726 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_726 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_726:hover .new_medical_icon{}#medical_box_726.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_726:hover{}#medical_box_726 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_726:hover .new_medical_description{}
                #medical_box_726:hover .background-img {
                    filter:none;
                }
            
                #medical_box_726 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_726 
            
            #medical_box_726 .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_726 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_726:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_726.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_726 .mode1-size_726{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_726 .new_medical_box > div{
                width:100%;
            }
             #medical_box_726 > div{
               height:100%;
            }
            #medical_box_726 .mode2-size_726{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_726 .mode3-size_726{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_726 .mode4-size_726{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_726 .mode5-size_726{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_726 .mode6-size_726{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_726 .mode7-size_726{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_726 .mode7-size_726 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_726 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_726 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_726{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_726 span:hover{
                color:!important;
            }
            .custom2_726{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_726 span:hover{
                color:;
            }
            #medical_box_726 .mode-btn1_726{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_726 .mode-btn1_726 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_726 .mode-btn2_726{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_726 .mode-btn2_726 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_726 .div-btn-title_main_726{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_726 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_726 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_725 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630826298_1625730374_1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_725 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_725 .background-img{
                border-radius:;
            }
        
            #medical_box_725 .new_medical_icon{
                
            }
        #medical_box_725 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_725 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_725 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:10px;padding-left:10px;}#medical_box_725:hover .new_medical_title{}
                #medical_box_725 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_725 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_725:hover .new_medical_icon{}#medical_box_725.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_725:hover{}#medical_box_725 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_725:hover .new_medical_description{}
                #medical_box_725:hover .background-img {
                    filter:none;
                }
            
                #medical_box_725 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_725 
            
            #medical_box_725 .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_725 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_725:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_725.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_725 .mode1-size_725{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_725 .new_medical_box > div{
                width:100%;
            }
             #medical_box_725 > div{
               height:100%;
            }
            #medical_box_725 .mode2-size_725{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_725 .mode3-size_725{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_725 .mode4-size_725{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_725 .mode5-size_725{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_725 .mode6-size_725{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_725 .mode7-size_725{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_725 .mode7-size_725 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_725 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_725 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_725{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_725 span:hover{
                color:!important;
            }
            .custom2_725{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_725 span:hover{
                color:;
            }
            #medical_box_725 .mode-btn1_725{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_725 .mode-btn1_725 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_725 .mode-btn2_725{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_725 .mode-btn2_725 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_725 .div-btn-title_main_725{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_725 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_725 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_724 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630825707_1625126379_2.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_724 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_724 .background-img{
                border-radius:;
            }
        
            #medical_box_724 .new_medical_icon{
                
            }
        #medical_box_724 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_724 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_724 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_724:hover .new_medical_title{}
                #medical_box_724 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_724 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_724:hover .new_medical_icon{}#medical_box_724.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_724:hover{}#medical_box_724 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_724:hover .new_medical_description{}
                #medical_box_724:hover .background-img {
                    filter:none;
                }
            
                #medical_box_724 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_724 
            
            #medical_box_724 .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_724 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_724:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_724.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_724 .mode1-size_724{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_724 .new_medical_box > div{
                width:100%;
            }
             #medical_box_724 > div{
               height:100%;
            }
            #medical_box_724 .mode2-size_724{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_724 .mode3-size_724{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_724 .mode4-size_724{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_724 .mode5-size_724{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_724 .mode6-size_724{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_724 .mode7-size_724{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_724 .mode7-size_724 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_724 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_724 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_724{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_724 span:hover{
                color:!important;
            }
            .custom2_724{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_724 span:hover{
                color:;
            }
            #medical_box_724 .mode-btn1_724{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_724 .mode-btn1_724 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_724 .mode-btn2_724{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_724 .mode-btn2_724 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_724 .div-btn-title_main_724{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_724 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_724 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_723 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630824447_1625124829_1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_723 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_723 .background-img{
                border-radius:;
            }
        
            #medical_box_723 .new_medical_icon{
                
            }
        #medical_box_723 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:35px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_723 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_723 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_723:hover .new_medical_title{}
                #medical_box_723 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_723 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_723:hover .new_medical_icon{}#medical_box_723.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_723:hover{}#medical_box_723 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_723:hover .new_medical_description{}
                #medical_box_723:hover .background-img {
                    filter:none;
                }
            
                #medical_box_723 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_723 
            
            #medical_box_723 .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_723 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_723:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_723.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_723 .mode1-size_723{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_723 .new_medical_box > div{
                width:100%;
            }
             #medical_box_723 > div{
               height:100%;
            }
            #medical_box_723 .mode2-size_723{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_723 .mode3-size_723{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_723 .mode4-size_723{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_723 .mode5-size_723{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_723 .mode6-size_723{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_723 .mode7-size_723{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_723 .mode7-size_723 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_723 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_723 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_723{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_723 span:hover{
                color:!important;
            }
            .custom2_723{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_723 span:hover{
                color:;
            }
            #medical_box_723 .mode-btn1_723{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_723 .mode-btn1_723 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_723 .mode-btn2_723{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_723 .mode-btn2_723 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_723 .div-btn-title_main_723{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_723 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_723 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_722 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630822568_n-business-plan.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_722 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_722 .background-img{
                border-radius:;
            }
        
            #medical_box_722 .new_medical_icon{
                
            }
        #medical_box_722 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_722 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_722 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_722:hover .new_medical_title{}
                #medical_box_722 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_722 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_722:hover .new_medical_icon{}#medical_box_722.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_722:hover{}#medical_box_722 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_722:hover .new_medical_description{}
                #medical_box_722:hover .background-img {
                    filter:none;
                }
            
                #medical_box_722 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_722 
            
            #medical_box_722 .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_722 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_722:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_722.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_722 .mode1-size_722{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_722 .new_medical_box > div{
                width:100%;
            }
             #medical_box_722 > div{
               height:100%;
            }
            #medical_box_722 .mode2-size_722{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_722 .mode3-size_722{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_722 .mode4-size_722{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_722 .mode5-size_722{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_722 .mode6-size_722{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_722 .mode7-size_722{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_722 .mode7-size_722 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_722 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_722 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_722{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_722 span:hover{
                color:!important;
            }
            .custom2_722{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_722 span:hover{
                color:;
            }
            #medical_box_722 .mode-btn1_722{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_722 .mode-btn1_722 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_722 .mode-btn2_722{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_722 .mode-btn2_722 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_722 .div-btn-title_main_722{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_722 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_722 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_721 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630750360_-teleoperadores.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_721 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_721 .background-img{
                border-radius:;
            }
        
            #medical_box_721 .new_medical_icon{
                
            }
        #medical_box_721 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_721 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_721 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_721:hover .new_medical_title{}
                #medical_box_721 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_721 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_721:hover .new_medical_icon{}#medical_box_721.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_721:hover{}#medical_box_721 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_721:hover .new_medical_description{}
                #medical_box_721:hover .background-img {
                    filter:none;
                }
            
                #medical_box_721 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_721 
            
            #medical_box_721 .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_721 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_721:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_721.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_721 .mode1-size_721{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_721 .new_medical_box > div{
                width:100%;
            }
             #medical_box_721 > div{
               height:100%;
            }
            #medical_box_721 .mode2-size_721{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_721 .mode3-size_721{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_721 .mode4-size_721{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_721 .mode5-size_721{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_721 .mode6-size_721{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_721 .mode7-size_721{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_721 .mode7-size_721 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_721 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_721 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_721{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_721 span:hover{
                color:!important;
            }
            .custom2_721{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_721 span:hover{
                color:;
            }
            #medical_box_721 .mode-btn1_721{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_721 .mode-btn1_721 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_721 .mode-btn2_721{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_721 .mode-btn2_721 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_721 .div-btn-title_main_721{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_721 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_721 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_720 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630749756_one_53876-96957.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_720 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_720 .background-img{
                border-radius:;
            }
        
            #medical_box_720 .new_medical_icon{
                
            }
        #medical_box_720 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:34px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_720 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_720 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_720:hover .new_medical_title{}
                #medical_box_720 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_720 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_720:hover .new_medical_icon{}#medical_box_720.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_720:hover{}#medical_box_720 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_720:hover .new_medical_description{}
                #medical_box_720:hover .background-img {
                    filter:none;
                }
            
                #medical_box_720 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_720 
            
            #medical_box_720 .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_720 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_720:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_720.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_720 .mode1-size_720{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_720 .new_medical_box > div{
                width:100%;
            }
             #medical_box_720 > div{
               height:100%;
            }
            #medical_box_720 .mode2-size_720{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_720 .mode3-size_720{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_720 .mode4-size_720{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_720 .mode5-size_720{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_720 .mode6-size_720{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_720 .mode7-size_720{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_720 .mode7-size_720 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_720 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_720 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_720{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_720 span:hover{
                color:!important;
            }
            .custom2_720{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_720 span:hover{
                color:;
            }
            #medical_box_720 .mode-btn1_720{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_720 .mode-btn1_720 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_720 .mode-btn2_720{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_720 .mode-btn2_720 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_720 .div-btn-title_main_720{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_720 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_720 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_719 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630748840_-room_42708-612.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_719 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_719 .background-img{
                border-radius:;
            }
        
            #medical_box_719 .new_medical_icon{
                
            }
        #medical_box_719 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_719 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_719 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_719:hover .new_medical_title{}
                #medical_box_719 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_719 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_719:hover .new_medical_icon{}#medical_box_719.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_719:hover{}#medical_box_719 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_719:hover .new_medical_description{}
                #medical_box_719:hover .background-img {
                    filter:none;
                }
            
                #medical_box_719 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_719 
            
            #medical_box_719 .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_719 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_719:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_719.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_719 .mode1-size_719{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_719 .new_medical_box > div{
                width:100%;
            }
             #medical_box_719 > div{
               height:100%;
            }
            #medical_box_719 .mode2-size_719{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_719 .mode3-size_719{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_719 .mode4-size_719{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_719 .mode5-size_719{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_719 .mode6-size_719{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_719 .mode7-size_719{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_719 .mode7-size_719 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_719 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_719 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_719{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_719 span:hover{
                color:!important;
            }
            .custom2_719{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_719 span:hover{
                color:;
            }
            #medical_box_719 .mode-btn1_719{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_719 .mode-btn1_719 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_719 .mode-btn2_719{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_719 .mode-btn2_719 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_719 .div-btn-title_main_719{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_719 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_719 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_718 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630748461_er_144627-37943.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_718 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_718 .background-img{
                border-radius:;
            }
        
            #medical_box_718 .new_medical_icon{
                
            }
        #medical_box_718 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_718 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_718 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_718:hover .new_medical_title{}
                #medical_box_718 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_718 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_718:hover .new_medical_icon{}#medical_box_718.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_718:hover{}#medical_box_718 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_718:hover .new_medical_description{}
                #medical_box_718:hover .background-img {
                    filter:none;
                }
            
                #medical_box_718 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_718 
            
            #medical_box_718 .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_718 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_718:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_718.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_718 .mode1-size_718{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_718 .new_medical_box > div{
                width:100%;
            }
             #medical_box_718 > div{
               height:100%;
            }
            #medical_box_718 .mode2-size_718{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_718 .mode3-size_718{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_718 .mode4-size_718{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_718 .mode5-size_718{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_718 .mode6-size_718{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_718 .mode7-size_718{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_718 .mode7-size_718 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_718 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_718 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_718{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_718 span:hover{
                color:!important;
            }
            .custom2_718{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_718 span:hover{
                color:;
            }
            #medical_box_718 .mode-btn1_718{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_718 .mode-btn1_718 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_718 .mode-btn2_718{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_718 .mode-btn2_718 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_718 .div-btn-title_main_718{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_718 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_718 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_717 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630746863_1624442869_1.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_717 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_717 .background-img{
                border-radius:;
            }
        
            #medical_box_717 .new_medical_icon{
                
            }
        #medical_box_717 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_717 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_717 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_717:hover .new_medical_title{}
                #medical_box_717 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_717 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_717:hover .new_medical_icon{}#medical_box_717.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_717:hover{}#medical_box_717 .new_medical_description{color:#000;font-weight:500;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_717:hover .new_medical_description{}
                #medical_box_717:hover .background-img {
                    filter:none;
                }
            
                #medical_box_717 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_717 
            
            #medical_box_717 .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_717 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_717:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_717.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_717 .mode1-size_717{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_717 .new_medical_box > div{
                width:100%;
            }
             #medical_box_717 > div{
               height:100%;
            }
            #medical_box_717 .mode2-size_717{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_717 .mode3-size_717{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_717 .mode4-size_717{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_717 .mode5-size_717{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_717 .mode6-size_717{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_717 .mode7-size_717{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_717 .mode7-size_717 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_717 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_717 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_717{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_717 span:hover{
                color:!important;
            }
            .custom2_717{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_717 span:hover{
                color:;
            }
            #medical_box_717 .mode-btn1_717{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_717 .mode-btn1_717 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_717 .mode-btn2_717{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_717 .mode-btn2_717 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_717 .div-btn-title_main_717{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_717 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_717 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_716 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630746220_2795_Untitled-2.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_716 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_716 .background-img{
                border-radius:;
            }
        
            #medical_box_716 .new_medical_icon{
                
            }
        #medical_box_716 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_716 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_716 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_716:hover .new_medical_title{}
                #medical_box_716 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_716 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_716:hover .new_medical_icon{}#medical_box_716.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_716:hover{}#medical_box_716 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_716:hover .new_medical_description{}
                #medical_box_716:hover .background-img {
                    filter:none;
                }
            
                #medical_box_716 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_716 
            
            #medical_box_716 .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_716 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_716:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_716.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_716 .mode1-size_716{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_716 .new_medical_box > div{
                width:100%;
            }
             #medical_box_716 > div{
               height:100%;
            }
            #medical_box_716 .mode2-size_716{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_716 .mode3-size_716{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_716 .mode4-size_716{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_716 .mode5-size_716{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_716 .mode6-size_716{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_716 .mode7-size_716{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_716 .mode7-size_716 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_716 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_716 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_716{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_716 span:hover{
                color:!important;
            }
            .custom2_716{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_716 span:hover{
                color:;
            }
            #medical_box_716 .mode-btn1_716{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_716 .mode-btn1_716 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_716 .mode-btn2_716{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_716 .mode-btn2_716 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_716 .div-btn-title_main_716{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_716 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_716 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_715 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630745643_624442708_brigd.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_715 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_715 .background-img{
                border-radius:;
            }
        
            #medical_box_715 .new_medical_icon{
                
            }
        #medical_box_715 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_715 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_715 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_715:hover .new_medical_title{}
                #medical_box_715 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_715 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_715:hover .new_medical_icon{}#medical_box_715.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_715:hover{}#medical_box_715 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_715:hover .new_medical_description{}
                #medical_box_715:hover .background-img {
                    filter:none;
                }
            
                #medical_box_715 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_715 
            
            #medical_box_715 .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_715 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_715:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_715.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_715 .mode1-size_715{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_715 .new_medical_box > div{
                width:100%;
            }
             #medical_box_715 > div{
               height:100%;
            }
            #medical_box_715 .mode2-size_715{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_715 .mode3-size_715{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_715 .mode4-size_715{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_715 .mode5-size_715{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_715 .mode6-size_715{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_715 .mode7-size_715{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_715 .mode7-size_715 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_715 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_715 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_715{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_715 span:hover{
                color:!important;
            }
            .custom2_715{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_715 span:hover{
                color:;
            }
            #medical_box_715 .mode-btn1_715{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_715 .mode-btn1_715 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_715 .mode-btn2_715{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_715 .mode-btn2_715 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_715 .div-btn-title_main_715{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_715 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_715 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_714 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630744998_42606_consultan.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_714 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_714 .background-img{
                border-radius:;
            }
        
            #medical_box_714 .new_medical_icon{
                
            }
        #medical_box_714 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_714 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_714 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_714:hover .new_medical_title{}
                #medical_box_714 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_714 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_714:hover .new_medical_icon{}#medical_box_714.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_714:hover{}#medical_box_714 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_714:hover .new_medical_description{}
                #medical_box_714:hover .background-img {
                    filter:none;
                }
            
                #medical_box_714 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_714 
            
            #medical_box_714 .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_714 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_714:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_714.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_714 .mode1-size_714{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_714 .new_medical_box > div{
                width:100%;
            }
             #medical_box_714 > div{
               height:100%;
            }
            #medical_box_714 .mode2-size_714{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_714 .mode3-size_714{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_714 .mode4-size_714{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_714 .mode5-size_714{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_714 .mode6-size_714{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_714 .mode7-size_714{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_714 .mode7-size_714 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_714 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_714 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_714{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_714 span:hover{
                color:!important;
            }
            .custom2_714{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_714 span:hover{
                color:;
            }
            #medical_box_714 .mode-btn1_714{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_714 .mode-btn1_714 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_714 .mode-btn2_714{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_714 .mode-btn2_714 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_714 .div-btn-title_main_714{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_714 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_714 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_713 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630744179_2539_importance.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_713 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_713 .background-img{
                border-radius:;
            }
        
            #medical_box_713 .new_medical_icon{
                
            }
        #medical_box_713 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_713 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_713 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_713:hover .new_medical_title{}
                #medical_box_713 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_713 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_713:hover .new_medical_icon{}#medical_box_713.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_713:hover{}#medical_box_713 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_713:hover .new_medical_description{}
                #medical_box_713:hover .background-img {
                    filter:none;
                }
            
                #medical_box_713 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_713 
            
            #medical_box_713 .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_713 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_713:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_713.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_713 .mode1-size_713{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_713 .new_medical_box > div{
                width:100%;
            }
             #medical_box_713 > div{
               height:100%;
            }
            #medical_box_713 .mode2-size_713{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_713 .mode3-size_713{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_713 .mode4-size_713{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_713 .mode5-size_713{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_713 .mode6-size_713{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_713 .mode7-size_713{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_713 .mode7-size_713 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_713 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_713 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_713{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_713 span:hover{
                color:!important;
            }
            .custom2_713{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_713 span:hover{
                color:;
            }
            #medical_box_713 .mode-btn1_713{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_713 .mode-btn1_713 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_713 .mode-btn2_713{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_713 .mode-btn2_713 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_713 .div-btn-title_main_713{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_713 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_713 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_712 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630741333_1624442451_rong.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_712 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_712 .background-img{
                border-radius:;
            }
        
            #medical_box_712 .new_medical_icon{
                
            }
        #medical_box_712 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_712 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_712 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;padding-right:50px;padding-left:50px;}#medical_box_712:hover .new_medical_title{}
                #medical_box_712 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_712 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_712:hover .new_medical_icon{}#medical_box_712.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_712:hover{}#medical_box_712 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_712:hover .new_medical_description{}
                #medical_box_712:hover .background-img {
                    filter:none;
                }
            
                #medical_box_712 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_712 
            
            #medical_box_712 .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_712 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_712:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_712.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_712 .mode1-size_712{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_712 .new_medical_box > div{
                width:100%;
            }
             #medical_box_712 > div{
               height:100%;
            }
            #medical_box_712 .mode2-size_712{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_712 .mode3-size_712{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_712 .mode4-size_712{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_712 .mode5-size_712{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_712 .mode6-size_712{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_712 .mode7-size_712{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_712 .mode7-size_712 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_712 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_712 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_712{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_712 span:hover{
                color:!important;
            }
            .custom2_712{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_712 span:hover{
                color:;
            }
            #medical_box_712 .mode-btn1_712{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_712 .mode-btn1_712 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_712 .mode-btn2_712{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_712 .mode-btn2_712 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_712 .div-btn-title_main_712{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_712 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_712 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_711 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630740582_1624442377_what.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_711 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_711 .background-img{
                border-radius:;
            }
        
            #medical_box_711 .new_medical_icon{
                
            }
        #medical_box_711 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_711 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_711 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_711:hover .new_medical_title{}
                #medical_box_711 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_711 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_711:hover .new_medical_icon{}#medical_box_711.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_711:hover{}#medical_box_711 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_711:hover .new_medical_description{}
                #medical_box_711:hover .background-img {
                    filter:none;
                }
            
                #medical_box_711 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_711 
            
            #medical_box_711 .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_711 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_711:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_711.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_711 .mode1-size_711{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_711 .new_medical_box > div{
                width:100%;
            }
             #medical_box_711 > div{
               height:100%;
            }
            #medical_box_711 .mode2-size_711{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_711 .mode3-size_711{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_711 .mode4-size_711{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_711 .mode5-size_711{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_711 .mode6-size_711{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_711 .mode7-size_711{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_711 .mode7-size_711 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_711 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_711 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_711{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_711 span:hover{
                color:!important;
            }
            .custom2_711{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_711 span:hover{
                color:;
            }
            #medical_box_711 .mode-btn1_711{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_711 .mode-btn1_711 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_711 .mode-btn2_711{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_711 .mode-btn2_711 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_711 .div-btn-title_main_711{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_711 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_711 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_710 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630739123_1624442194_know.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_710 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_710 .background-img{
                border-radius:;
            }
        
            #medical_box_710 .new_medical_icon{
                
            }
        #medical_box_710 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_710 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_710 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_710:hover .new_medical_title{}
                #medical_box_710 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_710 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_710:hover .new_medical_icon{}#medical_box_710.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_710:hover{}#medical_box_710 .new_medical_description{color:#000;font-weight:300;font-size:12px;line-height:18px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_710:hover .new_medical_description{}
                #medical_box_710:hover .background-img {
                    filter:none;
                }
            
                #medical_box_710 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_710 
            
            #medical_box_710 .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_710 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_710:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_710.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_710 .mode1-size_710{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_710 .new_medical_box > div{
                width:100%;
            }
             #medical_box_710 > div{
               height:100%;
            }
            #medical_box_710 .mode2-size_710{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_710 .mode3-size_710{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_710 .mode4-size_710{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_710 .mode5-size_710{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_710 .mode6-size_710{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_710 .mode7-size_710{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_710 .mode7-size_710 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_710 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_710 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_710{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_710 span:hover{
                color:!important;
            }
            .custom2_710{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_710 span:hover{
                color:;
            }
            #medical_box_710 .mode-btn1_710{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_710 .mode-btn1_710 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_710 .mode-btn2_710{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_710 .mode-btn2_710 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_710 .div-btn-title_main_710{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_710 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_710 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_709 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630738400_4442115_noavari.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_709 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_709 .background-img{
                border-radius:;
            }
        
            #medical_box_709 .new_medical_icon{
                
            }
        #medical_box_709 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_709 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_709 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_709:hover .new_medical_title{}
                #medical_box_709 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_709 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#ffff;}#medical_box_709:hover .new_medical_icon{}#medical_box_709.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_709:hover{}#medical_box_709 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_709:hover .new_medical_description{}
                #medical_box_709:hover .background-img {
                    filter:none;
                }
            
                #medical_box_709 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_709 
            
            #medical_box_709 .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_709 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_709:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_709.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_709 .mode1-size_709{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_709 .new_medical_box > div{
                width:100%;
            }
             #medical_box_709 > div{
               height:100%;
            }
            #medical_box_709 .mode2-size_709{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_709 .mode3-size_709{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_709 .mode4-size_709{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_709 .mode5-size_709{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_709 .mode6-size_709{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_709 .mode7-size_709{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_709 .mode7-size_709 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_709 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_709 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_709{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_709 span:hover{
                color:!important;
            }
            .custom2_709{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_709 span:hover{
                color:;
            }
            #medical_box_709 .mode-btn1_709{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_709 .mode-btn1_709 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_709 .mode-btn2_709{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_709 .mode-btn2_709 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_709 .div-btn-title_main_709{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_709 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_709 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_708 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630737484_442031_strategy.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_708 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_708 .background-img{
                border-radius:;
            }
        
            #medical_box_708 .new_medical_icon{
                
            }
        #medical_box_708 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_708 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_708 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_708:hover .new_medical_title{}
                #medical_box_708 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_708 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_708:hover .new_medical_icon{}#medical_box_708.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_708:hover{}#medical_box_708 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_708:hover .new_medical_description{}
                #medical_box_708:hover .background-img {
                    filter:none;
                }
            
                #medical_box_708 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_708 
            
            #medical_box_708 .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_708 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_708:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_708.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_708 .mode1-size_708{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_708 .new_medical_box > div{
                width:100%;
            }
             #medical_box_708 > div{
               height:100%;
            }
            #medical_box_708 .mode2-size_708{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_708 .mode3-size_708{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_708 .mode4-size_708{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_708 .mode5-size_708{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_708 .mode6-size_708{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_708 .mode7-size_708{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_708 .mode7-size_708 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_708 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_708 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_708{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_708 span:hover{
                color:!important;
            }
            .custom2_708{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_708 span:hover{
                color:;
            }
            #medical_box_708 .mode-btn1_708{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_708 .mode-btn1_708 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_708 .mode-btn2_708{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_708 .mode-btn2_708 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_708 .div-btn-title_main_708{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_708 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_708 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_707 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/ok/1630736548_3_develop brand.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_707 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_707 .background-img{
                border-radius:;
            }
        
            #medical_box_707 .new_medical_icon{
                
            }
        #medical_box_707 .new_medical_button{color:#ffdb3a;background-color:#343434;font-weight:300;font-size:10px;width:70px;height:25px;line-height:25px;text-align:center;margin-top:15px;border-radius:50px;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#medical_box_707 .new_medical_button:hover{color:#343434 !important;background-color:#ffdb3a !important;box-shadow:0px 0px 0px 0px  !important;}#medical_box_707 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:center;margin-top:10px;margin-bottom:10px;}#medical_box_707:hover .new_medical_title{}
                #medical_box_707 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_707 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:70%;height:180px;margin-top:35px;border-radius:25px;border-style:solid;border-top-width:3px;border-right-width:3px;border-bottom-width:3px;border-left-width:3px;border-color:#fff;}#medical_box_707:hover .new_medical_icon{}#medical_box_707.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-style:none;}#medical_box_707:hover{}#medical_box_707 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:25px;text-align:justify;padding-right:50px;padding-left:50px;border-style:solid;border-color:#555;}#medical_box_707:hover .new_medical_description{}
                #medical_box_707:hover .background-img {
                    filter:none;
                }
            
                #medical_box_707 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_707 
            
            #medical_box_707 .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_707 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_707:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_707.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/ok/1630736455_5811409_textbox.png");
                }
            
            #medical_box_707 .mode1-size_707{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_707 .new_medical_box > div{
                width:100%;
            }
             #medical_box_707 > div{
               height:100%;
            }
            #medical_box_707 .mode2-size_707{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_707 .mode3-size_707{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_707 .mode4-size_707{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_707 .mode5-size_707{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_707 .mode6-size_707{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_707 .mode7-size_707{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_707 .mode7-size_707 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_707 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_707 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_707{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_707 span:hover{
                color:!important;
            }
            .custom2_707{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_707 span:hover{
                color:;
            }
            #medical_box_707 .mode-btn1_707{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_707 .mode-btn1_707 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_707 .mode-btn2_707{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_707 .mode-btn2_707 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_707 .div-btn-title_main_707{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_707 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_707 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_248 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='988']:hover .new_medical_box_main{}
            #module_new_medical_248 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_248 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_248 .new_medical_description p{
                    height:140px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_248 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_248 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_248 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_248 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_248 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

                }
                #module_new_medical_248 .btn-gradient-prev{
                    position: absolute;
                    top: 0;
                    right:0;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                    z-index:100;
                }
                #module_new_medical_248 .btn-gradient-next{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:0;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                    background: linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 0%);
                    cursor:pointer;
                    transition: opacity 0.5s cubic-bezier(.36,.07,.19,.97);
                    opacity:0;
                }
                #module_new_medical_248 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_248 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_248 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_248 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_248 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_248 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_248 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_248 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_248 .new_medical_description{ 
                    height:140px;
                    overflow: auto;
                }
                #module_new_medical_248 .new_medical_description::-webkit-scrollbar {
                    width: 10px;
                    background-color: #f1f1f1;
                }
                
                #module_new_medical_248 .new_medical_description::-webkit-scrollbar-thumb {
                    background-color: #888;
                    border-radius: 5px;
                }
                
                #module_new_medical_248 .new_medical_description::-webkit-scrollbar-thumb:hover {
                    background-color: #555;
                }
                
                #module_new_medical_248 .new_medical_description {
                    scrollbar-width: thin;
                    scrollbar-color: #888 #f1f1f1;
                }
                
                #module_new_medical_248 .new_medical_description {
                    -ms-overflow-style: -ms-autohiding-scrollbar;
                }

            
            #module_new_medical_248 .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_248{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_248 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_248 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_248 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_248 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_248 .swiper-container{
                width:1200px;
            }
            #module_new_medical_248 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_248 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_248 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_248 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
                        .module[data-id_page='989']{
                            background: linear-gradient(to right, #e2e2e2, #fdfdfd);
                        }
                    .module[data-id_page='989']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;}.module[data-id_page='989']:hover{;}.module[data-id_page='989']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='989'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='989'] 
            
            .module[data-id_page='989'] .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='989'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='989']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_249 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_249 .content_str{
				width:100%;
			}
            #module_new_medical_249 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_249 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_249 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_249 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_249 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_249 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_249 .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_249 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_249 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_249 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_249 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_249 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_249 .new_medical_description a,#module_new_medical_249 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_249 .new_medical_description a:hover,#module_new_medical_249 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_249 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_249 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_706 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_706 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_706 .background-img{
                border-radius:;
            }
        #medical_box_706 .new_medical_title{color:#000;font-weight:bold;font-size:35px;text-align:left;margin-top:70px;margin-bottom:50px;padding-right:200px;}#medical_box_706:hover .new_medical_title{}
                #medical_box_706 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #medical_box_706 
            
            #medical_box_706 .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_706 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_706:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_706 .mode1-size_706{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_706 .new_medical_box > div{
                width:100%;
            }
             #medical_box_706 > div{
               height:100%;
            }
            #medical_box_706 .mode2-size_706{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_706 .mode3-size_706{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_706 .mode4-size_706{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_706 .mode5-size_706{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_706 .mode6-size_706{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_706 .mode7-size_706{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_706 .mode7-size_706 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_706 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_706 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_706{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_706 span:hover{
                color:!important;
            }
            .custom2_706{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_706 span:hover{
                color:;
            }
            #medical_box_706 .mode-btn1_706{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_706 .mode-btn1_706 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_706 .mode-btn2_706{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_706 .mode-btn2_706 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_706 .div-btn-title_main_706{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_706 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_706 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_705 .new_medical_icon{
                background-image:url("https://asgharabdoli.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_705 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_705 .background-img{
                border-radius:;
            }
        #medical_box_705 .new_medical_button{color:#ffdb3a;font-weight:300;font-size:25px;line-height:40px;text-align:center;margin-right:50px;border-style:none;border-color:#000;box-shadow:px 0px 0px 0px ;}#medical_box_705 .new_medical_button:hover{color:#343434 !important;box-shadow:px 0px 0px 0px  !important;}#medical_box_705 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:7px;padding-right:200px;}#medical_box_705:hover .new_medical_title{}
                #medical_box_705 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_705.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;height:280px;padding-top:60px;padding-left:300px;border-style:none;}#medical_box_705:hover{}
                #medical_box_705:hover .background-img {
                    filter:none;
                }
            
                #medical_box_705 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_705 
            
            #medical_box_705 .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_705 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_705:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_705.new_medical_module{
                    background-image:url("https://asgharabdoli.com/files/photo/work/1630571146_textbox.png");
                }
            
            #medical_box_705 .mode1-size_705{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_705 .new_medical_box > div{
                width:100%;
            }
             #medical_box_705 > div{
               height:100%;
            }
            #medical_box_705 .mode2-size_705{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_705 .mode3-size_705{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_705 .mode4-size_705{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_705 .mode5-size_705{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_705 .mode6-size_705{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_705 .mode7-size_705{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_705 .mode7-size_705 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_705 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_705 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_705{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_705 span:hover{
                color:!important;
            }
            .custom2_705{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_705 span:hover{
                color:;
            }
            #medical_box_705 .mode-btn1_705{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_705 .mode-btn1_705 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_705 .mode-btn2_705{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_705 .mode-btn2_705 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_705 .div-btn-title_main_705{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_705 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_705 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_249 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='989']:hover .new_medical_box_main{}
            #module_new_medical_249 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_249 .new_medical_module{
                    width:600px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_249 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:px;
                }
                #module_new_medical_249 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_249 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_249 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_249 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_249 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_249 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_249 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_249 .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_249{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_249 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_249 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_249 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_249 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_249 .swiper-container{
                width:1200px;
            }
            #module_new_medical_249 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_249 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_249 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_249 .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;}