/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}.module[data-id_page='1196']{;background-color:#fff;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:456px;border-style:none;}.module[data-id_page='1196']:hover{;}.module[data-id_page='1196']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1196'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='1196']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='1196'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='1196']  
                
                .module[data-id_page='1196'] .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='1196']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='1196']{
                               background-image:url("https://sepidtiur.com/files/firstpage/1694081794_back.jpg");
                           }
                       
            #module_new_medical_99 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_99 .content_str{
				width:100%;
			}
            #module_new_medical_99 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_99 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_99 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_99 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_99 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_99 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_99 .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_99 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_99 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_99 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_99 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_99 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_99 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_99 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_529 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_529 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_529 .background-img{
                border-radius:;
            }
        #medical_box_529.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:456px;border-style:none;}#medical_box_524:hover{}
                    #medical_box_529:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_529 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_529  
                
                #medical_box_529 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_529:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_529.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694081895_slide5.png");
                }
            
            #medical_box_529 .mode1-size_529{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_529 .new_medical_box > div{
                width:100%;
            }
             #medical_box_529 > div{
               height:100%;
            }
            #medical_box_529 .mode2-size_529{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_529 .mode3-size_529{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_529 .mode4-size_529{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_529 .mode5-size_529{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_529 .mode6-size_529{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_529 .mode7-size_529{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_529 .mode7-size_529 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_529 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_529 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_529{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_529 span:hover{
                color:!important;
            }
            .custom2_529{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_529 span:hover{
                color:;
            }
            #medical_box_529 .mode-btn1_529{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_529 .mode-btn1_529 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_529 .mode-btn2_529{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_529 .mode-btn2_529 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_529 .div-btn-title_main_529{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_529 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_529 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_528 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_528 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_528 .background-img{
                border-radius:;
            }
        #medical_box_528.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:456px;border-style:none;}#medical_box_523:hover{}
                    #medical_box_528:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_528 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_528  
                
                #medical_box_528 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_528:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_528.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694083238_slide4.png");
                }
            
            #medical_box_528 .mode1-size_528{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_528 .new_medical_box > div{
                width:100%;
            }
             #medical_box_528 > div{
               height:100%;
            }
            #medical_box_528 .mode2-size_528{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_528 .mode3-size_528{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_528 .mode4-size_528{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_528 .mode5-size_528{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_528 .mode6-size_528{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_528 .mode7-size_528{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_528 .mode7-size_528 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_528 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_528 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_528{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_528 span:hover{
                color:!important;
            }
            .custom2_528{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_528 span:hover{
                color:;
            }
            #medical_box_528 .mode-btn1_528{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_528 .mode-btn1_528 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_528 .mode-btn2_528{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_528 .mode-btn2_528 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_528 .div-btn-title_main_528{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_528 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_528 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_527 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_527 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_527 .background-img{
                border-radius:;
            }
        #medical_box_527.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:456px;border-style:none;}#medical_box_522:hover{}
                    #medical_box_527:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_527 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_527  
                
                #medical_box_527 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_527:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_527.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694081895_slide3.png");
                }
            
            #medical_box_527 .mode1-size_527{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_527 .new_medical_box > div{
                width:100%;
            }
             #medical_box_527 > div{
               height:100%;
            }
            #medical_box_527 .mode2-size_527{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_527 .mode3-size_527{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_527 .mode4-size_527{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_527 .mode5-size_527{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_527 .mode6-size_527{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_527 .mode7-size_527{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_527 .mode7-size_527 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_527 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_527 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_527{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_527 span:hover{
                color:!important;
            }
            .custom2_527{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_527 span:hover{
                color:;
            }
            #medical_box_527 .mode-btn1_527{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_527 .mode-btn1_527 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_527 .mode-btn2_527{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_527 .mode-btn2_527 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_527 .div-btn-title_main_527{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_527 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_527 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_526 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_526 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_526 .background-img{
                border-radius:;
            }
        #medical_box_526.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:456px;border-style:none;}#medical_box_521:hover{}
                    #medical_box_526:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_526 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_526  
                
                #medical_box_526 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_526:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_526.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694081895_slide2.png");
                }
            
            #medical_box_526 .mode1-size_526{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_526 .new_medical_box > div{
                width:100%;
            }
             #medical_box_526 > div{
               height:100%;
            }
            #medical_box_526 .mode2-size_526{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_526 .mode3-size_526{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_526 .mode4-size_526{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_526 .mode5-size_526{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_526 .mode6-size_526{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_526 .mode7-size_526{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_526 .mode7-size_526 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_526 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_526 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_526{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_526 span:hover{
                color:!important;
            }
            .custom2_526{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_526 span:hover{
                color:;
            }
            #medical_box_526 .mode-btn1_526{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_526 .mode-btn1_526 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_526 .mode-btn2_526{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_526 .mode-btn2_526 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_526 .div-btn-title_main_526{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_526 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_526 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_525 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_525 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_525 .background-img{
                border-radius:;
            }
        #medical_box_525.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:456px;border-style:none;}#medical_box_520:hover{}
                    #medical_box_525:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_525 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_525  
                
                #medical_box_525 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_525:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_525.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694081895_slide1.png");
                }
            
            #medical_box_525 .mode1-size_525{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_525 .new_medical_box > div{
                width:100%;
            }
             #medical_box_525 > div{
               height:100%;
            }
            #medical_box_525 .mode2-size_525{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_525 .mode3-size_525{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_525 .mode4-size_525{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_525 .mode5-size_525{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_525 .mode6-size_525{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_525 .mode7-size_525{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_525 .mode7-size_525 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_525 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_525 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_525{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_525 span:hover{
                color:!important;
            }
            .custom2_525{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_525 span:hover{
                color:;
            }
            #medical_box_525 .mode-btn1_525{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_525 .mode-btn1_525 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_525 .mode-btn2_525{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_525 .mode-btn2_525 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_525 .div-btn-title_main_525{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_525 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_525 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_99 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='440']:hover .new_medical_box_main{}
            #module_new_medical_99 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_99 .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_99 .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_99 .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_99 .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_99 .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_99 .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_99 .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_99 .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_99 .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_99 .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_99 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_99 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_99 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_99 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_99 .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_99 .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_99 .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_99 .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_99 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_99 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_99 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_99 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_99 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_99 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_99 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_99 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_99 .new_medical_description{ 
                    height:0px;
                }
                
            
             #module_new_medical_99 .more-text {
                display: none;
            }
            #module_new_medical_99 .read-less-des {
                display: none;
            }
            #module_new_medical_99 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_99{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_99 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_99 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_99 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_99 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_99 .swiper-container{
                width:1200px;
            }
            #module_new_medical_99 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_99 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_99 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_99 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='732']{;background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:bottom;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:64px;border-style:none;}.module[data-id_page='732']:hover{;}.module[data-id_page='732']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='732'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='732']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='732'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='732']  
                
                .module[data-id_page='732'] .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='732']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='732']{
                               background-image:url("https://sepidtiur.com/files/image/1694156048_backdiv.jpg");
                           }
                       
            #module_new_medical_51 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_51 .content_str{
				width:100%;
			}
            #module_new_medical_51 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_51 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_51 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_51 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_51 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_51 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_51 .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_51 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_51 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_51 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_51 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_51 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_51 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_51 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_97 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694158307_1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_97 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_97 .background-img{
                border-radius:;
            }
        #medical_box_97 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_97:hover .new_medical_title{}
                #medical_box_97 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_97 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_97:hover .new_medical_icon{}#medical_box_97.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_97:hover{}#medical_box_97 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_97:hover .new_medical_description{}
                    #medical_box_97:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_97 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_97  
                
                #medical_box_97 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_97:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_97.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_97 .mode1-size_97{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_97 .new_medical_box > div{
                width:100%;
            }
             #medical_box_97 > div{
               height:100%;
            }
            #medical_box_97 .mode2-size_97{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_97 .mode3-size_97{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_97 .mode4-size_97{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_97 .mode5-size_97{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_97 .mode6-size_97{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_97 .mode7-size_97{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_97 .mode7-size_97 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_97 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_97 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_97{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_97 span:hover{
                color:!important;
            }
            .custom2_97{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_97 span:hover{
                color:;
            }
            #medical_box_97 .mode-btn1_97{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_97 .mode-btn1_97 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_97 .mode-btn2_97{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_97 .mode-btn2_97 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_97 .div-btn-title_main_97{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_97 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_97 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_96 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694158660_2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_96 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_96 .background-img{
                border-radius:;
            }
        #medical_box_96 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_96 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_96 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_96:hover .new_medical_icon{}#medical_box_96.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_96:hover{}#medical_box_96 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_96:hover .new_medical_description{}
                    #medical_box_96:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_96 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_96  
                
                #medical_box_96 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_96:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_96.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_96 .mode1-size_96{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_96 .new_medical_box > div{
                width:100%;
            }
             #medical_box_96 > div{
               height:100%;
            }
            #medical_box_96 .mode2-size_96{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_96 .mode3-size_96{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_96 .mode4-size_96{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_96 .mode5-size_96{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_96 .mode6-size_96{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_96 .mode7-size_96{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_96 .mode7-size_96 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_96 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_96 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_96{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_96 span:hover{
                color:!important;
            }
            .custom2_96{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_96 span:hover{
                color:;
            }
            #medical_box_96 .mode-btn1_96{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_96 .mode-btn1_96 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_96 .mode-btn2_96{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_96 .mode-btn2_96 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_96 .div-btn-title_main_96{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_96 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_96 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_95 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694158723_3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_95 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_95 .background-img{
                border-radius:;
            }
        #medical_box_95 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_95 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_95 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_95:hover .new_medical_icon{}#medical_box_95.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_95:hover{}#medical_box_95 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_95:hover .new_medical_description{}
                    #medical_box_95:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_95 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_95  
                
                #medical_box_95 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_95:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_95.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_95 .mode1-size_95{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_95 .new_medical_box > div{
                width:100%;
            }
             #medical_box_95 > div{
               height:100%;
            }
            #medical_box_95 .mode2-size_95{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_95 .mode3-size_95{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_95 .mode4-size_95{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_95 .mode5-size_95{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_95 .mode6-size_95{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_95 .mode7-size_95{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_95 .mode7-size_95 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_95 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_95 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_95{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_95 span:hover{
                color:!important;
            }
            .custom2_95{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_95 span:hover{
                color:;
            }
            #medical_box_95 .mode-btn1_95{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_95 .mode-btn1_95 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_95 .mode-btn2_95{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_95 .mode-btn2_95 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_95 .div-btn-title_main_95{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_95 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_95 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_94 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694158811_4.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_94 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_94 .background-img{
                border-radius:;
            }
        #medical_box_94 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_94 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_94 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_94:hover .new_medical_icon{}#medical_box_94.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_94:hover{}#medical_box_94 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_94:hover .new_medical_description{}
                    #medical_box_94:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_94 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_94  
                
                #medical_box_94 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_94:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_94.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_94 .mode1-size_94{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_94 .new_medical_box > div{
                width:100%;
            }
             #medical_box_94 > div{
               height:100%;
            }
            #medical_box_94 .mode2-size_94{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_94 .mode3-size_94{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_94 .mode4-size_94{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_94 .mode5-size_94{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_94 .mode6-size_94{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_94 .mode7-size_94{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_94 .mode7-size_94 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_94 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_94 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_94{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_94 span:hover{
                color:!important;
            }
            .custom2_94{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_94 span:hover{
                color:;
            }
            #medical_box_94 .mode-btn1_94{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_94 .mode-btn1_94 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_94 .mode-btn2_94{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_94 .mode-btn2_94 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_94 .div-btn-title_main_94{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_94 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_94 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_101 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694158876_5.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_101 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_101 .background-img{
                border-radius:;
            }
        #medical_box_101 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_101 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_101 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_101:hover .new_medical_icon{}#medical_box_101.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_101:hover{}#medical_box_101 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_101:hover .new_medical_description{}
                    #medical_box_101:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_101 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_101  
                
                #medical_box_101 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_101:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_101.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_101 .mode1-size_101{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_101 .new_medical_box > div{
                width:100%;
            }
             #medical_box_101 > div{
               height:100%;
            }
            #medical_box_101 .mode2-size_101{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_101 .mode3-size_101{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_101 .mode4-size_101{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_101 .mode5-size_101{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_101 .mode6-size_101{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_101 .mode7-size_101{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_101 .mode7-size_101 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_101 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_101 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_101{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_101 span:hover{
                color:!important;
            }
            .custom2_101{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_101 span:hover{
                color:;
            }
            #medical_box_101 .mode-btn1_101{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_101 .mode-btn1_101 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_101 .mode-btn2_101{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_101 .mode-btn2_101 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_101 .div-btn-title_main_101{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_101 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_101 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_100 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694158945_6.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_100 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_100 .background-img{
                border-radius:;
            }
        #medical_box_100 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_100 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_100 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_100:hover .new_medical_icon{}#medical_box_100.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_100:hover{}#medical_box_100 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_100:hover .new_medical_description{}
                    #medical_box_100:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_100 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_100  
                
                #medical_box_100 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_100:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_100.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_100 .mode1-size_100{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_100 .new_medical_box > div{
                width:100%;
            }
             #medical_box_100 > div{
               height:100%;
            }
            #medical_box_100 .mode2-size_100{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_100 .mode3-size_100{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_100 .mode4-size_100{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_100 .mode5-size_100{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_100 .mode6-size_100{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_100 .mode7-size_100{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_100 .mode7-size_100 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_100 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_100 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_100{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_100 span:hover{
                color:!important;
            }
            .custom2_100{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_100 span:hover{
                color:;
            }
            #medical_box_100 .mode-btn1_100{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_100 .mode-btn1_100 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_100 .mode-btn2_100{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_100 .mode-btn2_100 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_100 .div-btn-title_main_100{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_100 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_100 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_99 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694159009_7.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_99 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_99 .background-img{
                border-radius:;
            }
        #medical_box_99 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_99 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_99 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_99:hover .new_medical_icon{}#medical_box_99.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_99:hover{}#medical_box_99 .new_medical_description{color:#434343;font-weight:200;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_99:hover .new_medical_description{}
                    #medical_box_99:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_99 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_99  
                
                #medical_box_99 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_99:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_99.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_99 .mode1-size_99{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_99 .new_medical_box > div{
                width:100%;
            }
             #medical_box_99 > div{
               height:100%;
            }
            #medical_box_99 .mode2-size_99{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_99 .mode3-size_99{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_99 .mode4-size_99{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_99 .mode5-size_99{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_99 .mode6-size_99{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_99 .mode7-size_99{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_99 .mode7-size_99 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_99 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_99 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_99{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_99 span:hover{
                color:!important;
            }
            .custom2_99{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_99 span:hover{
                color:;
            }
            #medical_box_99 .mode-btn1_99{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_99 .mode-btn1_99 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_99 .mode-btn2_99{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_99 .mode-btn2_99 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_99 .div-btn-title_main_99{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_99 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_99 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_98 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694159064_8.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_98 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_98 .background-img{
                border-radius:;
            }
        #medical_box_98 .new_medical_title{color:#000;font-weight:bold;font-size:16px;text-align:center;margin-top:16px;line-height:32px;}#medical_box_1095:hover .new_medical_title{}
                #medical_box_98 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_98 .new_medical_icon{background-size:contain;background-position:top;background-repeat:no-repeat;min-width:55%;height:125px;border-style:none;border-color:#000;}#medical_box_98:hover .new_medical_icon{}#medical_box_98.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;border-style:none;}#medical_box_98:hover{}#medical_box_98 .new_medical_description{color:#434343;font-weight:300;font-size:14px;line-height:28px;text-align:center;padding-top:10px;padding-right:15px;padding-left:15px;border-style:solid;border-color:#555;}#medical_box_98:hover .new_medical_description{}
                    #medical_box_98:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_98 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_98  
                
                #medical_box_98 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_98:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_98.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694157212_backslide.jpg");
                }
            
            #medical_box_98 .mode1-size_98{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_98 .new_medical_box > div{
                width:100%;
            }
             #medical_box_98 > div{
               height:100%;
            }
            #medical_box_98 .mode2-size_98{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_98 .mode3-size_98{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_98 .mode4-size_98{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_98 .mode5-size_98{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_98 .mode6-size_98{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_98 .mode7-size_98{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_98 .mode7-size_98 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_98 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_98 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_98{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_98 span:hover{
                color:!important;
            }
            .custom2_98{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_98 span:hover{
                color:;
            }
            #medical_box_98 .mode-btn1_98{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_98 .mode-btn1_98 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_98 .mode-btn2_98{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_98 .mode-btn2_98 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_98 .div-btn-title_main_98{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_98 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_98 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_51 .new_medical_title_main{color:#545454;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:100px;}.module[data-id_page='732']:hover .new_medical_title_main{}
                #module_new_medical_51 .new_medical_title_main{
                    background-size:cover;
                    background-repeat:no-repeat;
                    background-position:center;
                    background-image:url("https://sepidtiur.com/files/firstpage/1694086312_backtitle.png");
                }
            #module_new_medical_51 .new_medical_description_main{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:center;padding-top:32px;padding-right:128px;padding-left:128px;border-style:solid;border-color:#555;}.module[data-id_page='913']:hover .new_medical_description_main{}#module_new_medical_51 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:80px;padding-bottom:350px;border-style:none;}.module[data-id_page='913']:hover .new_medical_box_main{}
            #module_new_medical_51 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_51 .new_medical_module{
                    width:276px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_51 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_51 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_51 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_51 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_51 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_51 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_51 .more-text {
                display: none;
            }
            #module_new_medical_51 .read-less-des {
                display: none;
            }
            #module_new_medical_51 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_51{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_51 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_51 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_51 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_51 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_51 .swiper-container{
                width:1200px;
            }
            #module_new_medical_51 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_51 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_51 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_51 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='1197']{;background-color:#fff;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:871px;border-style:none;}.module[data-id_page='1197']:hover{;}.module[data-id_page='1197']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1197'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='1197']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='1197'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='1197']  
                
                .module[data-id_page='1197'] .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='1197']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='1197']{
                               background-image:url("https://sepidtiur.com/files/firstpage/1694161749_back1.jpg");
                           }
                       
            #module_new_medical_100 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_100 .content_str{
				width:100%;
			}
            #module_new_medical_100 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_100 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_100 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_100 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_100 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_100 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_100 .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_100 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_100 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_100 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_100 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_100 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_100 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_100 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_532 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_532 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_532 .background-img{
                border-radius:;
            }
        #medical_box_532 .new_medical_title{color:#fff;font-weight:300;font-size:16px;text-align:center;margin-top:70px;padding-right:100px;padding-left:100px;}#medical_box_532:hover .new_medical_title{}
                #medical_box_532 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_532.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:1200px;border-style:none;}#medical_box_532:hover{}#medical_box_532 .new_medical_description{color:#fff;font-weight:300;font-size:80px;line-height:25px;text-align:center;padding-right:100px;padding-left:100px;border-style:solid;border-color:#555;}#medical_box_532:hover .new_medical_description{}
                   #medical_box_532 .new_medical_layer{}#medical_box_532:hover .new_medical_layer{} 
                
                #medical_box_532 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_532:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_532 .mode1-size_532{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_532 .new_medical_box > div{
                width:100%;
            }
             #medical_box_532 > div{
               height:100%;
            }
            #medical_box_532 .mode2-size_532{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_532 .mode3-size_532{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_532 .mode4-size_532{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_532 .mode5-size_532{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_532 .mode6-size_532{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_532 .mode7-size_532{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_532 .mode7-size_532 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_532 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_532 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_532{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_532 span:hover{
                color:!important;
            }
            .custom2_532{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_532 span:hover{
                color:;
            }
            #medical_box_532 .mode-btn1_532{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_532 .mode-btn1_532 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_532 .mode-btn2_532{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_532 .mode-btn2_532 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_532 .div-btn-title_main_532{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_532 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_532 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_531 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_531 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_531 .background-img{
                border-radius:;
            }
        #medical_box_531 .new_medical_title{color:#fff;font-weight:500;font-size:16px;text-align:center;margin-top:50px;padding-right:100px;padding-left:100px;}#medical_box_531:hover .new_medical_title{}
                #medical_box_531 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_531.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_523:hover{}#medical_box_531 .new_medical_description{color:#fff;font-weight:300;font-size:14px;line-height:25px;text-align:justify;margin-top:70px;padding-right:100px;padding-left:100px;border-style:solid;border-color:#555;}#medical_box_523:hover .new_medical_description{}
                   #medical_box_531  
                
                #medical_box_531 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_531:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_531 .mode1-size_531{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_531 .new_medical_box > div{
                width:100%;
            }
             #medical_box_531 > div{
               height:100%;
            }
            #medical_box_531 .mode2-size_531{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_531 .mode3-size_531{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_531 .mode4-size_531{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_531 .mode5-size_531{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_531 .mode6-size_531{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_531 .mode7-size_531{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_531 .mode7-size_531 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_531 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_531 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_531{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_531 span:hover{
                color:!important;
            }
            .custom2_531{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_531 span:hover{
                color:;
            }
            #medical_box_531 .mode-btn1_531{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_531 .mode-btn1_531 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_531 .mode-btn2_531{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_531 .mode-btn2_531 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_531 .div-btn-title_main_531{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_531 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_531 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_530 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_530 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_530 .background-img{
                border-radius:;
            }
        #medical_box_530 .new_medical_title{color:#fff;font-weight:500;font-size:16px;text-align:center;margin-top:70px;padding-right:100px;padding-left:100px;}#medical_box_530:hover .new_medical_title{}
                #medical_box_530 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_530.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_522:hover{}#medical_box_530 .new_medical_description{color:#fff;font-weight:300;font-size:14px;line-height:25px;text-align:justify;margin-top:100px;padding-right:100px;padding-left:100px;border-style:solid;border-color:#555;}#medical_box_522:hover .new_medical_description{}
                   #medical_box_530  
                
                #medical_box_530 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_530:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_530 .mode1-size_530{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_530 .new_medical_box > div{
                width:100%;
            }
             #medical_box_530 > div{
               height:100%;
            }
            #medical_box_530 .mode2-size_530{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_530 .mode3-size_530{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_530 .mode4-size_530{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_530 .mode5-size_530{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_530 .mode6-size_530{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_530 .mode7-size_530{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_530 .mode7-size_530 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_530 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_530 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_530{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_530 span:hover{
                color:!important;
            }
            .custom2_530{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_530 span:hover{
                color:;
            }
            #medical_box_530 .mode-btn1_530{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_530 .mode-btn1_530 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_530 .mode-btn2_530{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_530 .mode-btn2_530 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_530 .div-btn-title_main_530{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_530 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_530 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_100 .new_medical_title_main{color:#545454;font-weight:bold;font-size:23px;justify-content:center;text-align:center;margin-top:50px;}.module[data-id_page='440']:hover .new_medical_title_main{}#module_new_medical_100 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='440']:hover .new_medical_box_main{}
            #module_new_medical_100 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_100 .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_100 .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_100 .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_100 .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_100 .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_100 .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_100 .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_100 .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_100 .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_100 .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_100 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_100 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_100 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_100 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_100 .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_100 .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_100 .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_100 .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_100 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_100 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_100 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_100 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_100 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_100 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_100 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_100 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_100 .new_medical_description{ 
                    height:0px;
                }
                
            
             #module_new_medical_100 .more-text {
                display: none;
            }
            #module_new_medical_100 .read-less-des {
                display: none;
            }
            #module_new_medical_100 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_100{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_100 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_100 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_100 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_100 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_100 .swiper-container{
                width:1200px;
            }
            #module_new_medical_100 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_100 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_100 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_100 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='440']{;background-color:#fff;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='440']:hover{;}.module[data-id_page='440']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='440'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='440']  
                
                .module[data-id_page='440'] .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='440']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_47 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_47 .content_str{
				width:100%;
			}
            #module_new_medical_47 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_47 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_47 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_47 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_47 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_47 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_47 .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_47 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_47 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_47 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_47 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_47 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_47 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_47 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_524 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694185143_icon1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_524 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_524 .background-img{
                border-radius:;
            }
        #medical_box_524 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:40%;height:350px;border-style:none;border-color:#000;}#medical_box_524:hover .new_medical_icon{}#medical_box_524.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_524:hover{}#medical_box_524 .new_medical_description{color:#545454;font-weight:200;font-size:12px;line-height:20px;text-align:justify;margin-top:20px;padding-right:50px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_524:hover .new_medical_description{}
                   #medical_box_524  
                
                #medical_box_524 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_524:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_524 .mode1-size_524{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_524 .new_medical_box > div{
                width:100%;
            }
             #medical_box_524 > div{
               height:100%;
            }
            #medical_box_524 .mode2-size_524{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_524 .mode3-size_524{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_524 .mode4-size_524{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_524 .mode5-size_524{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_524 .mode6-size_524{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_524 .mode7-size_524{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_524 .mode7-size_524 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_524 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_524 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_524{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_524 span:hover{
                color:!important;
            }
            .custom2_524{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_524 span:hover{
                color:;
            }
            #medical_box_524 .mode-btn1_524{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_524 .mode-btn1_524 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_524 .mode-btn2_524{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_524 .mode-btn2_524 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_524 .div-btn-title_main_524{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_524 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_524 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_523 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694185631_icon2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_523 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_523 .background-img{
                border-radius:;
            }
        #medical_box_523 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:40%;height:350px;border-style:none;border-color:#000;}#medical_box_523:hover .new_medical_icon{}#medical_box_523.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_523:hover{}#medical_box_523 .new_medical_description{color:#545454;font-weight:200;font-size:12px;line-height:20px;text-align:justify;margin-top:20px;padding-right:50px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_523:hover .new_medical_description{}
                   #medical_box_523  
                
                #medical_box_523 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_523:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_523 .mode1-size_523{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_523 .new_medical_box > div{
                width:100%;
            }
             #medical_box_523 > div{
               height:100%;
            }
            #medical_box_523 .mode2-size_523{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_523 .mode3-size_523{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_523 .mode4-size_523{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_523 .mode5-size_523{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_523 .mode6-size_523{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_523 .mode7-size_523{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_523 .mode7-size_523 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_523 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_523 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_523{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_523 span:hover{
                color:!important;
            }
            .custom2_523{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_523 span:hover{
                color:;
            }
            #medical_box_523 .mode-btn1_523{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_523 .mode-btn1_523 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_523 .mode-btn2_523{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_523 .mode-btn2_523 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_523 .div-btn-title_main_523{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_523 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_523 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_522 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694185631_icon3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_522 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_522 .background-img{
                border-radius:;
            }
        #medical_box_522 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:40%;height:350px;border-style:none;border-color:#000;}#medical_box_522:hover .new_medical_icon{}#medical_box_522.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_522:hover{}#medical_box_522 .new_medical_description{color:#545454;font-weight:200;font-size:12px;line-height:20px;text-align:justify;margin-top:20px;padding-right:50px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_522:hover .new_medical_description{}
                   #medical_box_522  
                
                #medical_box_522 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_522:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_522 .mode1-size_522{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_522 .new_medical_box > div{
                width:100%;
            }
             #medical_box_522 > div{
               height:100%;
            }
            #medical_box_522 .mode2-size_522{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_522 .mode3-size_522{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_522 .mode4-size_522{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_522 .mode5-size_522{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_522 .mode6-size_522{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_522 .mode7-size_522{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_522 .mode7-size_522 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_522 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_522 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_522{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_522 span:hover{
                color:!important;
            }
            .custom2_522{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_522 span:hover{
                color:;
            }
            #medical_box_522 .mode-btn1_522{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_522 .mode-btn1_522 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_522 .mode-btn2_522{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_522 .mode-btn2_522 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_522 .div-btn-title_main_522{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_522 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_522 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_533 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694185631_icon4.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_533 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_533 .background-img{
                border-radius:;
            }
        #medical_box_533 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:40%;height:350px;border-style:none;border-color:#000;}#medical_box_533:hover .new_medical_icon{}#medical_box_533 .new_medical_description{color:#545454;font-weight:200;font-size:12px;line-height:20px;text-align:justify;margin-top:20px;padding-right:50px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_533:hover .new_medical_description{}
                   #medical_box_533  
                
                #medical_box_533 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_533:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_533 .mode1-size_533{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_533 .new_medical_box > div{
                width:100%;
            }
             #medical_box_533 > div{
               height:100%;
            }
            #medical_box_533 .mode2-size_533{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_533 .mode3-size_533{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_533 .mode4-size_533{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_533 .mode5-size_533{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_533 .mode6-size_533{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_533 .mode7-size_533{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_533 .mode7-size_533 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_533 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_533 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_533{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_533 span:hover{
                color:!important;
            }
            .custom2_533{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_533 span:hover{
                color:;
            }
            #medical_box_533 .mode-btn1_533{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_533 .mode-btn1_533 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_533 .mode-btn2_533{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_533 .mode-btn2_533 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_533 .div-btn-title_main_533{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_533 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_533 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_534 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694185631_icon5.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_534 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_534 .background-img{
                border-radius:;
            }
        #medical_box_534 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:40%;height:300px;border-style:none;border-color:#000;}#medical_box_534:hover .new_medical_icon{}#medical_box_534 .new_medical_description{color:#545454;font-weight:200;font-size:12px;line-height:20px;text-align:justify;margin-top:20px;padding-right:50px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_534:hover .new_medical_description{}
                   #medical_box_534  
                
                #medical_box_534 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_534:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_534 .mode1-size_534{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_534 .new_medical_box > div{
                width:100%;
            }
             #medical_box_534 > div{
               height:100%;
            }
            #medical_box_534 .mode2-size_534{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_534 .mode3-size_534{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_534 .mode4-size_534{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_534 .mode5-size_534{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_534 .mode6-size_534{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_534 .mode7-size_534{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_534 .mode7-size_534 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_534 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_534 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_534{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_534 span:hover{
                color:!important;
            }
            .custom2_534{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_534 span:hover{
                color:;
            }
            #medical_box_534 .mode-btn1_534{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_534 .mode-btn1_534 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_534 .mode-btn2_534{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_534 .mode-btn2_534 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_534 .div-btn-title_main_534{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_534 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_534 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_47 .new_medical_title_main{color:#545454;font-weight:bold;font-size:23px;justify-content:flex-start;text-align:right;margin-top:50px;padding-right:30px;}.module[data-id_page='440']:hover .new_medical_title_main{}#module_new_medical_47 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='440']:hover .new_medical_box_main{}
            #module_new_medical_47 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_47 .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_47 .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_47 .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_47 .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_47 .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_47 .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_47 .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_47 .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_47 .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_47 .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_47 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_47 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_47 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_47 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_47 .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_47 .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_47 .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_47 .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_47 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_47 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_47 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_47 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_47 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_47 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_47 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_47 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_47 .new_medical_description{ 
                    height:0px;
                }
                
            
             #module_new_medical_47 .more-text {
                display: none;
            }
            #module_new_medical_47 .read-less-des {
                display: none;
            }
            #module_new_medical_47 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_47{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_47 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_47 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_47 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_47 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_47 .swiper-container{
                width:1200px;
            }
            #module_new_medical_47 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_47 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_47 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_47 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='105']{;background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='105']:hover{;}.module[data-id_page='105']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='105'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='105']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='105'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='105']  
                
                .module[data-id_page='105'] .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='105']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='105']{
                               background-image:url("https://sepidtiur.com/files/firstpage/1694191188_backdiv1.jpg");
                           }
                       
            #module_new_medical_45 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_45 .content_str{
				width:100%;
			}
            #module_new_medical_45 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_45 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_45 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_45 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_45 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_45 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_45 .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_45 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_45 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_45 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_45 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_45 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_45 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_45 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_88 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694191278_image1.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_88 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_88 .background-img{
                border-radius:;
            }
        #medical_box_88 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:20px;}#medical_box_6:hover .new_medical_title{}
                #medical_box_88 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_88 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:110%;height:300px;border-style:none;border-color:#000;}#medical_box_88:hover .new_medical_icon{}#medical_box_88.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_6:hover{}#medical_box_88 .new_medical_description{color:#777;font-weight:300;font-size:15px;line-height:30px;text-align:center;margin-top:10px;padding-right:31px;padding-left:31px;border-style:solid;border-color:#555;}#medical_box_6:hover .new_medical_description{}
                   #medical_box_88 .new_medical_layer{}#medical_box_6:hover .new_medical_layer{} 
                
                #medical_box_88 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            right: -100%;
                            top:0;
                        
                }
            
                #medical_box_88:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            right:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_88 .mode1-size_88{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_88 .new_medical_box > div{
                width:100%;
            }
             #medical_box_88 > div{
               height:100%;
            }
            #medical_box_88 .mode2-size_88{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_88 .mode3-size_88{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_88 .mode4-size_88{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_88 .mode5-size_88{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_88 .mode6-size_88{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_88 .mode7-size_88{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_88 .mode7-size_88 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_88 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_88 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_88{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_88 span:hover{
                color:!important;
            }
            .custom2_88{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_88 span:hover{
                color:;
            }
            #medical_box_88 .mode-btn1_88{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_88 .mode-btn1_88 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_88 .mode-btn2_88{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_88 .mode-btn2_88 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_88 .div-btn-title_main_88{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_88 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_88 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_87 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694191300_image2.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_87 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_87 .background-img{
                border-radius:;
            }
        #medical_box_87 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:20px;}#medical_box_6:hover .new_medical_title{}
                #medical_box_87 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_87 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:110%;height:300px;border-style:none;border-color:#000;}#medical_box_87:hover .new_medical_icon{}#medical_box_87.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_6:hover{}#medical_box_87 .new_medical_description{color:#777;font-weight:300;font-size:15px;line-height:30px;text-align:center;margin-top:10px;padding-right:31px;padding-left:31px;border-style:solid;border-color:#555;}#medical_box_6:hover .new_medical_description{}
                   #medical_box_87 .new_medical_layer{}#medical_box_6:hover .new_medical_layer{} 
                
                #medical_box_87 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            right: -100%;
                            top:0;
                        
                }
            
                #medical_box_87:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            right:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_87 .mode1-size_87{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_87 .new_medical_box > div{
                width:100%;
            }
             #medical_box_87 > div{
               height:100%;
            }
            #medical_box_87 .mode2-size_87{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_87 .mode3-size_87{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_87 .mode4-size_87{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_87 .mode5-size_87{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_87 .mode6-size_87{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_87 .mode7-size_87{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_87 .mode7-size_87 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_87 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_87 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_87{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_87 span:hover{
                color:!important;
            }
            .custom2_87{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_87 span:hover{
                color:;
            }
            #medical_box_87 .mode-btn1_87{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_87 .mode-btn1_87 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_87 .mode-btn2_87{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_87 .mode-btn2_87 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_87 .div-btn-title_main_87{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_87 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_87 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_86 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694191321_image3.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_86 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_86 .background-img{
                border-radius:;
            }
        #medical_box_86 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:20px;}#medical_box_5:hover .new_medical_title{}
                #medical_box_86 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_86 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:110%;height:300px;border-style:none;border-color:#000;}#medical_box_86:hover .new_medical_icon{}#medical_box_86.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_5:hover{}#medical_box_86 .new_medical_description{color:#777;font-weight:300;font-size:15px;line-height:30px;text-align:center;margin-top:10px;padding-right:31px;padding-left:31px;border-style:solid;border-color:#555;}#medical_box_5:hover .new_medical_description{}
                   #medical_box_86 .new_medical_layer{}#medical_box_5:hover .new_medical_layer{} 
                
                #medical_box_86 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease-out;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                            right: -100%;
                            top:0;
                        
                }
            
                #medical_box_86:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                            right:0;
                        
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_86 .mode1-size_86{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_86 .new_medical_box > div{
                width:100%;
            }
             #medical_box_86 > div{
               height:100%;
            }
            #medical_box_86 .mode2-size_86{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_86 .mode3-size_86{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_86 .mode4-size_86{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_86 .mode5-size_86{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_86 .mode6-size_86{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_86 .mode7-size_86{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_86 .mode7-size_86 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_86 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_86 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_86{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_86 span:hover{
                color:!important;
            }
            .custom2_86{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_86 span:hover{
                color:;
            }
            #medical_box_86 .mode-btn1_86{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_86 .mode-btn1_86 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_86 .mode-btn2_86{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_86 .mode-btn2_86 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_86 .div-btn-title_main_86{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_86 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_86 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_45 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:50px;}.module[data-id_page='105']:hover .new_medical_title_main{}#module_new_medical_45 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:70px;padding-bottom:70px;border-style:none;}.module[data-id_page='11']:hover .new_medical_box_main{}
            #module_new_medical_45 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_45 .new_medical_module{
                    width:380px;
                    position:relative;
                    overflow:hidden;
                    margin-left:30px;
                    margin-bottom:10px;
                }
                #module_new_medical_45 .new_medical_module:nth-child(3n){
                    margin-left:0;
                }
                #module_new_medical_45 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_45 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_45 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_45 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_45 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_45 .more-text {
                display: none;
            }
            #module_new_medical_45 .read-less-des {
                display: none;
            }
            #module_new_medical_45 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_45{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_45 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_45 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_45 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_45 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_45 .swiper-container{
                width:1200px;
            }
            #module_new_medical_45 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_45 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_45 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_45 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='102']{;background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='102']:hover{;}.module[data-id_page='102']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='102'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='102']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='102'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='102']  
                
                .module[data-id_page='102'] .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='102']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='102']{
                               background-image:url("https://sepidtiur.com/files/firstpage/1694191188_backdiv1.jpg");
                           }
                       
            #module_new_medical_44 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_44 .content_str{
				width:100%;
			}
            #module_new_medical_44 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_44 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_44 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_44 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_44 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_44 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_44 .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_44 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_44 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_44 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_44 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_44 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_44 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_44 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_85 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694193708_12.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_85 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_85 .background-img{
                border-radius:;
            }
        #medical_box_85 .new_medical_title{color:#002766;font-weight:500;font-size:25px;text-align:center;margin-bottom:10px;}#medical_box_2:hover .new_medical_title{}
                #medical_box_85 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_85 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:45%;height:500px;border-style:none;border-color:#000;}#medical_box_85:hover .new_medical_icon{}#medical_box_85.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_1:hover{}#medical_box_85 .new_medical_description{color:#002766;font-weight:300;font-size:16px;line-height:32px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_85:hover .new_medical_description{}
                   #medical_box_85 .new_medical_layer{}#medical_box_1:hover .new_medical_layer{} 
                
                #medical_box_85 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_85:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_85 .mode1-size_85{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_85 .new_medical_box > div{
                width:100%;
            }
             #medical_box_85 > div{
               height:100%;
            }
            #medical_box_85 .mode2-size_85{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_85 .mode3-size_85{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_85 .mode4-size_85{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_85 .mode5-size_85{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_85 .mode6-size_85{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_85 .mode7-size_85{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_85 .mode7-size_85 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_85 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_85 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_85{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_85 span:hover{
                color:!important;
            }
            .custom2_85{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_85 span:hover{
                color:;
            }
            #medical_box_85 .mode-btn1_85{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_85 .mode-btn1_85 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_85 .mode-btn2_85{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_85 .mode-btn2_85 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_85 .div-btn-title_main_85{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_85 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_85 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_44 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-top:10px;margin-bottom:10px;}.module[data-id_page='102']:hover .new_medical_title_main{}#module_new_medical_44 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;border-style:none;}.module[data-id_page='102']:hover .new_medical_box_main{}
            #module_new_medical_44 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_44 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:1px;
                    margin-bottom:1px;
                }
                #module_new_medical_44 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_44 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_44 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_44 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_44 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_44 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_44 .more-text {
                display: none;
            }
            #module_new_medical_44 .read-less-des {
                display: none;
            }
            #module_new_medical_44 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_44{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_44 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_44 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_44 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_44 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_44 .swiper-container{
                width:1200px;
            }
            #module_new_medical_44 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_44 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_44 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_44 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='101']{;background-color:#fff;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='101']:hover{;}.module[data-id_page='101']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='101'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='101']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='101'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='101']  
                
                .module[data-id_page='101'] .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='101']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='101']{
                               background-image:url("https://sepidtiur.com/files/firstpage/1694191188_backdiv1.jpg");
                           }
                       
            #module_new_medical_43 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_43 .content_str{
				width:100%;
			}
            #module_new_medical_43 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_43 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_43 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_43 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_43 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_43 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_43 .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_43 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_43 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_43 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_43 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_43 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_43 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_43 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_84 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/firstpage/1694193708_11.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_84 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_84 .background-img{
                border-radius:;
            }
        #medical_box_84 .new_medical_title{color:#e6fffb;font-weight:500;font-size:25px;text-align:center;margin-bottom:10px;}#medical_box_1:hover .new_medical_title{color:#b5f5ec !important;}
                #medical_box_84 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_84 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:45%;height:400px;border-style:none;border-color:#000;}#medical_box_84:hover .new_medical_icon{}#medical_box_84.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_1:hover{}#medical_box_84 .new_medical_description{color:#545454;font-weight:300;font-size:16px;line-height:32px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_84:hover .new_medical_description{}
                   #medical_box_84 .new_medical_layer{}#medical_box_1:hover .new_medical_layer{} 
                
                #medical_box_84 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_84:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #medical_box_84 .mode1-size_84{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_84 .new_medical_box > div{
                width:100%;
            }
             #medical_box_84 > div{
               height:100%;
            }
            #medical_box_84 .mode2-size_84{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_84 .mode3-size_84{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_84 .mode4-size_84{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_84 .mode5-size_84{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_84 .mode6-size_84{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_84 .mode7-size_84{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_84 .mode7-size_84 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_84 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_84 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_84{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_84 span:hover{
                color:!important;
            }
            .custom2_84{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_84 span:hover{
                color:;
            }
            #medical_box_84 .mode-btn1_84{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_84 .mode-btn1_84 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_84 .mode-btn2_84{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_84 .mode-btn2_84 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_84 .div-btn-title_main_84{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_84 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_84 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_43 .new_medical_title_main{color:#545454;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-bottom:10px;}.module[data-id_page='101']:hover .new_medical_title_main{}#module_new_medical_43 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;border-style:none;}.module[data-id_page='101']:hover .new_medical_box_main{}
            #module_new_medical_43 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_43 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:1px;
                    margin-bottom:1px;
                }
                #module_new_medical_43 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_43 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_43 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_43 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_43 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_43 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
             #module_new_medical_43 .more-text {
                display: none;
            }
            #module_new_medical_43 .read-less-des {
                display: none;
            }
            #module_new_medical_43 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_43{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_43 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_43 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_43 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_43 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_43 .swiper-container{
                width:1200px;
            }
            #module_new_medical_43 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_43 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_43 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_43 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        .module[data-id_page='103']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:fixed;width:100%;max-width:100%;border-style:none;}.module[data-id_page='103']:hover{;}.module[data-id_page='103']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='103'] > div{
                        position:relative;
                        z-index:12;
                    }
                    .module[data-id_page='103']:hover .background-img{
                        filter:none;
                    }
                
                .module[data-id_page='103'] .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   .module[data-id_page='103']  
                
                .module[data-id_page='103'] .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='103']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                           .module[data-id_page='103']{
                               background-image:url("https://sepidtiur.com/files/firstpage/1694191188_backdiv1.jpg");
                           }
                       #layout_box_41.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_41:hover{}
                    #layout_box_41:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_41 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://sepidtiur.com/files/firstpage/1694196088_21.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_41  
                
                #layout_box_41 .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_41:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_41 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_41 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_41.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_40.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_40:hover{}
                    #layout_box_40:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_40 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://sepidtiur.com/files/firstpage/1694196088_22.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_40  
                
                #layout_box_40 .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_40:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_40 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_40 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_40.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_39.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:2;border-style:none;}#layout_box_39:hover{}
                    #layout_box_39:hover .background-img{
                        filter:sepia(0.4);
                    }
                
                #layout_box_39 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://sepidtiur.com/files/firstpage/1694196088_23.png");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layout_box_39  
                
                #layout_box_39 .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_39:hover .new_layout_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #layout_box_39 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_39 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_39.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_5 .new_layout_title_main{color:#545454;font-weight:bold;font-size:30px;justify-content:center;text-align:center;margin-top:20px;margin-bottom:50px;}.module[data-id_page='103']:hover .new_layout_title_main{}
                #module_new_layout_5 .new_layout_title_main h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #module_new_layout_5 .new_layout_box_main{display:grid;width:1200px;height:300px;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);column-gap:5px;row-gap:5px;visibility:visible;border-style:none;}.module[data-id_page='103']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_5{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_5 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_5 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_5 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_5 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_5 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='99']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:0px;padding-bottom:0px;border-style:none;}.module[data-id_page='99']:hover{;}.module[data-id_page='99']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='99'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='99']  
                
                .module[data-id_page='99'] .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='99']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            #layoutfull_box_12.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:30vw;padding-right:30vw;border-style:none;}#layoutfull_box_12:hover{}#layoutfull_box_12 .new_layoutfull_box{visibility:visible;border-style:none;}#layoutfull_box_1:hover .new_layoutfull_box{}#layoutfull_box_12 .new_layoutfull_description{color:transparent;font-weight:300;font-size:1.2vw;line-height:2vw;height:2vw;text-align:center;margin-top:2vw;padding-right:20vw;border-style:solid;border-color:#555;}#layoutfull_box_12:hover .new_layoutfull_description{}#layoutfull_box_12 .new_layoutfull_button{color:#ffffff;font-weight:300;font-size:0vw;width:30vw;height:10vw;line-height:2vw;text-align:center;border-radius:.6vw;border-style:double;border-right-width:0vw;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layoutfull_box_12 .new_layoutfull_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                    #layoutfull_box_12:hover .background-img{
                        filter:none;
                    }
                
                #layoutfull_box_12 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    background-image:url("https://sepidtiur.com/files/firstpage/1694199307_ui.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter:none;
                }
            
                   #layoutfull_box_12  
                
                #layoutfull_box_12 .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_12:hover .new_layoutfull_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #layoutfull_box_12 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_12.cursor_box{
                cursor:pointer; 
            }
        
                #layoutfull_box_12 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_15{
                overflow:hidden;
            }
            #module_new_layoutfull_15 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_15 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_15 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        
            .color_blue{color:#00AFEF;}
            .en_page{
                direction: ltr;
            }
            .fa_page{
                direction: rtl;
            }
            .w200 {
               width:200px;
            }
            .w400 {
               width:400px;
            }
            .w600 {
               width:600px;
            }
            .w800 {
               width:800px;
            }
            .w1000 {
               width:1000px;
            }
            .w1200 {
               width:1200px;
            }
            .dtcd {
                display:table-cell;
                padding:10px;
                text-align: justify;
            }
            .pdig {
                line-height: 1.75;
            }
            .imgdi{
                width:100%;
                height:100%;
            }
            .gerd{
                border-radius: 50%;
            }
            .diul{
                 padding:20px;
            }
            #description_26 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 0px;
                color: ;
                background-color: ;
            }
            #description_26 .ti_ma_h a{color: ;font-weight: bold;}
            .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;
            }

        
             .pr_text_pic:before{
                position: absolute;
                display: block;
                top: 24px;
                right: 4%;
                background-image:url(https://sepidtiur.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_26 .container_box_54{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_26 .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_26 .public_center{
                border-spacing:0px;
            }
        #description_26{
                  padding-top:20px;
                }#description_26{
                        font-size:9px;
                }#description_26 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_26 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_26 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_26 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_26 .color_title{/*range title asli module*/
                            color: ;
                                }#description_26 .color_text{/*range text haye module  */
                            color:;
                                }#description_26 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_26 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_26 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_26 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_26 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_26 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_26 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_26 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='805']{;background-color:#fff;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;}.module[data-id_page='805']:hover{;}.module[data-id_page='805']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='805'] > div{
                        position:relative;
                        z-index:12;
                    }
                   .module[data-id_page='805']  
                
                .module[data-id_page='805'] .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='805']:hover .new_admin_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
            #module_new_medical_77 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_77 .content_str{
				width:100%;
			}
            #module_new_medical_77 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_77 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_77 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_77 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_77 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_77 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_77 .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_77 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_77 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_77 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_77 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_77 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
         
                #module_new_medical_77 .swiper-pagination{
                position: absolute;
                top: 100%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_77 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_331 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904538_ken-png-400x529.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_331 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_331 .background-img{
                border-radius:;
            }
        #medical_box_331 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_331 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_331 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_331:hover .new_medical_icon{}#medical_box_331.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_331:hover{}
                    #medical_box_331:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_331 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_331  
                
                #medical_box_331 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_331:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_331.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_331 .mode1-size_331{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_331 .new_medical_box > div{
                width:100%;
            }
             #medical_box_331 > div{
               height:100%;
            }
            #medical_box_331 .mode2-size_331{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_331 .mode3-size_331{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_331 .mode4-size_331{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_331 .mode5-size_331{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_331 .mode6-size_331{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_331 .mode7-size_331{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_331 .mode7-size_331 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_331 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_331 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_331{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_331 span:hover{
                color:!important;
            }
            .custom2_331{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_331 span:hover{
                color:;
            }
            #medical_box_331 .mode-btn1_331{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_331 .mode-btn1_331 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_331 .mode-btn2_331{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_331 .mode-btn2_331 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_331 .div-btn-title_main_331{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_331 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_331 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_330 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904538_ken-png-400x529.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_330 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_330 .background-img{
                border-radius:;
            }
        #medical_box_330 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_330 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_330 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_330:hover .new_medical_icon{}#medical_box_330.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_330:hover{}
                    #medical_box_330:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_330 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_330  
                
                #medical_box_330 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_330:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_330.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_330 .mode1-size_330{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_330 .new_medical_box > div{
                width:100%;
            }
             #medical_box_330 > div{
               height:100%;
            }
            #medical_box_330 .mode2-size_330{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_330 .mode3-size_330{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_330 .mode4-size_330{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_330 .mode5-size_330{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_330 .mode6-size_330{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_330 .mode7-size_330{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_330 .mode7-size_330 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_330 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_330 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_330{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_330 span:hover{
                color:!important;
            }
            .custom2_330{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_330 span:hover{
                color:;
            }
            #medical_box_330 .mode-btn1_330{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_330 .mode-btn1_330 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_330 .mode-btn2_330{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_330 .mode-btn2_330 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_330 .div-btn-title_main_330{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_330 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_330 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_329 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904538_ken-png-400x529.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_329 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_329 .background-img{
                border-radius:;
            }
        #medical_box_329 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_329 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_329 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_329:hover .new_medical_icon{}#medical_box_329.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_329:hover{}
                    #medical_box_329:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_329 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_329  
                
                #medical_box_329 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_329:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_329.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_329 .mode1-size_329{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_329 .new_medical_box > div{
                width:100%;
            }
             #medical_box_329 > div{
               height:100%;
            }
            #medical_box_329 .mode2-size_329{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_329 .mode3-size_329{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_329 .mode4-size_329{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_329 .mode5-size_329{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_329 .mode6-size_329{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_329 .mode7-size_329{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_329 .mode7-size_329 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_329 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_329 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_329{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_329 span:hover{
                color:!important;
            }
            .custom2_329{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_329 span:hover{
                color:;
            }
            #medical_box_329 .mode-btn1_329{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_329 .mode-btn1_329 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_329 .mode-btn2_329{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_329 .mode-btn2_329 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_329 .div-btn-title_main_329{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_329 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_329 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_328 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904538_ken-png-400x529.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_328 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_328 .background-img{
                border-radius:;
            }
        #medical_box_328 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_328 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_328 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_328:hover .new_medical_icon{}#medical_box_328.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_328:hover{}
                    #medical_box_328:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_328 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_328  
                
                #medical_box_328 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_328:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_328.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_328 .mode1-size_328{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_328 .new_medical_box > div{
                width:100%;
            }
             #medical_box_328 > div{
               height:100%;
            }
            #medical_box_328 .mode2-size_328{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_328 .mode3-size_328{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_328 .mode4-size_328{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_328 .mode5-size_328{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_328 .mode6-size_328{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_328 .mode7-size_328{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_328 .mode7-size_328 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_328 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_328 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_328{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_328 span:hover{
                color:!important;
            }
            .custom2_328{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_328 span:hover{
                color:;
            }
            #medical_box_328 .mode-btn1_328{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_328 .mode-btn1_328 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_328 .mode-btn2_328{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_328 .mode-btn2_328 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_328 .div-btn-title_main_328{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_328 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_328 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_327 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_327 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_327 .background-img{
                border-radius:;
            }
        #medical_box_327 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_327 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_327 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_327:hover .new_medical_icon{}#medical_box_327.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_327:hover{}
                    #medical_box_327:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_327 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_327  
                
                #medical_box_327 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_327:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_327.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_327 .mode1-size_327{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_327 .new_medical_box > div{
                width:100%;
            }
             #medical_box_327 > div{
               height:100%;
            }
            #medical_box_327 .mode2-size_327{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_327 .mode3-size_327{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_327 .mode4-size_327{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_327 .mode5-size_327{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_327 .mode6-size_327{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_327 .mode7-size_327{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_327 .mode7-size_327 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_327 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_327 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_327{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_327 span:hover{
                color:!important;
            }
            .custom2_327{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_327 span:hover{
                color:;
            }
            #medical_box_327 .mode-btn1_327{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_327 .mode-btn1_327 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_327 .mode-btn2_327{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_327 .mode-btn2_327 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_327 .div-btn-title_main_327{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_327 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_327 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_326 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_326 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_326 .background-img{
                border-radius:;
            }
        #medical_box_326 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_326 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_326 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_326:hover .new_medical_icon{}#medical_box_326.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_326:hover{}
                    #medical_box_326:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_326 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_326  
                
                #medical_box_326 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_326:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_326.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_326 .mode1-size_326{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_326 .new_medical_box > div{
                width:100%;
            }
             #medical_box_326 > div{
               height:100%;
            }
            #medical_box_326 .mode2-size_326{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_326 .mode3-size_326{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_326 .mode4-size_326{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_326 .mode5-size_326{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_326 .mode6-size_326{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_326 .mode7-size_326{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_326 .mode7-size_326 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_326 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_326 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_326{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_326 span:hover{
                color:!important;
            }
            .custom2_326{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_326 span:hover{
                color:;
            }
            #medical_box_326 .mode-btn1_326{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_326 .mode-btn1_326 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_326 .mode-btn2_326{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_326 .mode-btn2_326 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_326 .div-btn-title_main_326{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_326 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_326 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_325 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_325 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_325 .background-img{
                border-radius:;
            }
        #medical_box_325 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_325 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_325 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_325:hover .new_medical_icon{}#medical_box_325.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_325:hover{}
                    #medical_box_325:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_325 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_325  
                
                #medical_box_325 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_325:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_325.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_325 .mode1-size_325{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_325 .new_medical_box > div{
                width:100%;
            }
             #medical_box_325 > div{
               height:100%;
            }
            #medical_box_325 .mode2-size_325{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_325 .mode3-size_325{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_325 .mode4-size_325{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_325 .mode5-size_325{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_325 .mode6-size_325{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_325 .mode7-size_325{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_325 .mode7-size_325 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_325 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_325 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_325{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_325 span:hover{
                color:!important;
            }
            .custom2_325{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_325 span:hover{
                color:;
            }
            #medical_box_325 .mode-btn1_325{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_325 .mode-btn1_325 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_325 .mode-btn2_325{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_325 .mode-btn2_325 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_325 .div-btn-title_main_325{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_325 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_325 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_324 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_324 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_324 .background-img{
                border-radius:;
            }
        #medical_box_324 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_324 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_324 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_324:hover .new_medical_icon{}#medical_box_324.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_324:hover{}
                    #medical_box_324:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_324 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_324  
                
                #medical_box_324 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_324:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_324.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_324 .mode1-size_324{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_324 .new_medical_box > div{
                width:100%;
            }
             #medical_box_324 > div{
               height:100%;
            }
            #medical_box_324 .mode2-size_324{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_324 .mode3-size_324{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_324 .mode4-size_324{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_324 .mode5-size_324{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_324 .mode6-size_324{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_324 .mode7-size_324{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_324 .mode7-size_324 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_324 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_324 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_324{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_324 span:hover{
                color:!important;
            }
            .custom2_324{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_324 span:hover{
                color:;
            }
            #medical_box_324 .mode-btn1_324{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_324 .mode-btn1_324 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_324 .mode-btn2_324{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_324 .mode-btn2_324 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_324 .div-btn-title_main_324{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_324 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_324 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_323 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_323 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_323 .background-img{
                border-radius:;
            }
        #medical_box_323 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_323 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_323 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_323:hover .new_medical_icon{}#medical_box_323.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_323:hover{}
                    #medical_box_323:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_323 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_323  
                
                #medical_box_323 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_323:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_323.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_323 .mode1-size_323{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_323 .new_medical_box > div{
                width:100%;
            }
             #medical_box_323 > div{
               height:100%;
            }
            #medical_box_323 .mode2-size_323{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_323 .mode3-size_323{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_323 .mode4-size_323{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_323 .mode5-size_323{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_323 .mode6-size_323{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_323 .mode7-size_323{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_323 .mode7-size_323 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_323 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_323 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_323{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_323 span:hover{
                color:!important;
            }
            .custom2_323{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_323 span:hover{
                color:;
            }
            #medical_box_323 .mode-btn1_323{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_323 .mode-btn1_323 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_323 .mode-btn2_323{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_323 .mode-btn2_323 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_323 .div-btn-title_main_323{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_323 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_323 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_322 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_322 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_322 .background-img{
                border-radius:;
            }
        #medical_box_322 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_322 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_322 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_322:hover .new_medical_icon{}#medical_box_322.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_322:hover{}
                    #medical_box_322:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_322 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_322  
                
                #medical_box_322 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_322:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_322.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_322 .mode1-size_322{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_322 .new_medical_box > div{
                width:100%;
            }
             #medical_box_322 > div{
               height:100%;
            }
            #medical_box_322 .mode2-size_322{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_322 .mode3-size_322{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_322 .mode4-size_322{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_322 .mode5-size_322{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_322 .mode6-size_322{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_322 .mode7-size_322{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_322 .mode7-size_322 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_322 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_322 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_322{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_322 span:hover{
                color:!important;
            }
            .custom2_322{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_322 span:hover{
                color:;
            }
            #medical_box_322 .mode-btn1_322{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_322 .mode-btn1_322 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_322 .mode-btn2_322{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_322 .mode-btn2_322 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_322 .div-btn-title_main_322{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_322 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_322 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_332 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662904912_Laying hens.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_332 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_332 .background-img{
                border-radius:;
            }
        #medical_box_332 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_332 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_332 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_332:hover .new_medical_icon{}#medical_box_332.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:none;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_332:hover{}
                    #medical_box_332:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_332 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_332  
                
                #medical_box_332 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_332:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_332.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_332 .mode1-size_332{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_332 .new_medical_box > div{
                width:100%;
            }
             #medical_box_332 > div{
               height:100%;
            }
            #medical_box_332 .mode2-size_332{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_332 .mode3-size_332{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_332 .mode4-size_332{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_332 .mode5-size_332{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_332 .mode6-size_332{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_332 .mode7-size_332{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_332 .mode7-size_332 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_332 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_332 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_332{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_332 span:hover{
                color:!important;
            }
            .custom2_332{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_332 span:hover{
                color:;
            }
            #medical_box_332 .mode-btn1_332{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_332 .mode-btn1_332 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_332 .mode-btn2_332{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_332 .mode-btn2_332 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_332 .div-btn-title_main_332{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_332 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_332 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_333 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907270_ddd.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_333 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_333 .background-img{
                border-radius:;
            }
        #medical_box_333 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_333 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_333 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_333:hover .new_medical_icon{}#medical_box_333.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_333:hover{}
                    #medical_box_333:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_333 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_333  
                
                #medical_box_333 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_333:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_333.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_333 .mode1-size_333{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_333 .new_medical_box > div{
                width:100%;
            }
             #medical_box_333 > div{
               height:100%;
            }
            #medical_box_333 .mode2-size_333{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_333 .mode3-size_333{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_333 .mode4-size_333{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_333 .mode5-size_333{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_333 .mode6-size_333{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_333 .mode7-size_333{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_333 .mode7-size_333 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_333 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_333 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_333{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_333 span:hover{
                color:!important;
            }
            .custom2_333{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_333 span:hover{
                color:;
            }
            #medical_box_333 .mode-btn1_333{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_333 .mode-btn1_333 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_333 .mode-btn2_333{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_333 .mode-btn2_333 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_333 .div-btn-title_main_333{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_333 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_333 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_334 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907270_ddd.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_334 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_334 .background-img{
                border-radius:;
            }
        #medical_box_334 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_334 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_334 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_334:hover .new_medical_icon{}#medical_box_334.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_334:hover{}
                    #medical_box_334:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_334 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_334  
                
                #medical_box_334 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_334:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_334.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_334 .mode1-size_334{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_334 .new_medical_box > div{
                width:100%;
            }
             #medical_box_334 > div{
               height:100%;
            }
            #medical_box_334 .mode2-size_334{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_334 .mode3-size_334{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_334 .mode4-size_334{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_334 .mode5-size_334{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_334 .mode6-size_334{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_334 .mode7-size_334{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_334 .mode7-size_334 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_334 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_334 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_334{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_334 span:hover{
                color:!important;
            }
            .custom2_334{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_334 span:hover{
                color:;
            }
            #medical_box_334 .mode-btn1_334{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_334 .mode-btn1_334 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_334 .mode-btn2_334{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_334 .mode-btn2_334 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_334 .div-btn-title_main_334{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_334 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_334 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_335 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907270_ddd.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_335 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_335 .background-img{
                border-radius:;
            }
        #medical_box_335 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_335 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_335 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_335:hover .new_medical_icon{}#medical_box_335.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_335:hover{}
                    #medical_box_335:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_335 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_335  
                
                #medical_box_335 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_335:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_335.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_335 .mode1-size_335{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_335 .new_medical_box > div{
                width:100%;
            }
             #medical_box_335 > div{
               height:100%;
            }
            #medical_box_335 .mode2-size_335{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_335 .mode3-size_335{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_335 .mode4-size_335{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_335 .mode5-size_335{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_335 .mode6-size_335{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_335 .mode7-size_335{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_335 .mode7-size_335 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_335 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_335 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_335{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_335 span:hover{
                color:!important;
            }
            .custom2_335{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_335 span:hover{
                color:;
            }
            #medical_box_335 .mode-btn1_335{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_335 .mode-btn1_335 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_335 .mode-btn2_335{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_335 .mode-btn2_335 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_335 .div-btn-title_main_335{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_335 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_335 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_336 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907270_ddd.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_336 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_336 .background-img{
                border-radius:;
            }
        #medical_box_336 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_336 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_336 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_336:hover .new_medical_icon{}#medical_box_336.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_336:hover{}
                    #medical_box_336:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_336 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_336  
                
                #medical_box_336 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_336:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_336.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_336 .mode1-size_336{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_336 .new_medical_box > div{
                width:100%;
            }
             #medical_box_336 > div{
               height:100%;
            }
            #medical_box_336 .mode2-size_336{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_336 .mode3-size_336{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_336 .mode4-size_336{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_336 .mode5-size_336{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_336 .mode6-size_336{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_336 .mode7-size_336{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_336 .mode7-size_336 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_336 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_336 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_336{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_336 span:hover{
                color:!important;
            }
            .custom2_336{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_336 span:hover{
                color:;
            }
            #medical_box_336 .mode-btn1_336{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_336 .mode-btn1_336 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_336 .mode-btn2_336{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_336 .mode-btn2_336 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_336 .div-btn-title_main_336{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_336 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_336 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_337 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907270_ddd.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_337 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_337 .background-img{
                border-radius:;
            }
        #medical_box_337 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_337 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_337 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_337:hover .new_medical_icon{}#medical_box_337.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_337:hover{}
                    #medical_box_337:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_337 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_337  
                
                #medical_box_337 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_337:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_337.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_337 .mode1-size_337{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_337 .new_medical_box > div{
                width:100%;
            }
             #medical_box_337 > div{
               height:100%;
            }
            #medical_box_337 .mode2-size_337{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_337 .mode3-size_337{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_337 .mode4-size_337{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_337 .mode5-size_337{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_337 .mode6-size_337{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_337 .mode7-size_337{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_337 .mode7-size_337 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_337 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_337 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_337{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_337 span:hover{
                color:!important;
            }
            .custom2_337{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_337 span:hover{
                color:;
            }
            #medical_box_337 .mode-btn1_337{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_337 .mode-btn1_337 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_337 .mode-btn2_337{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_337 .mode-btn2_337 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_337 .div-btn-title_main_337{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_337 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_337 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_338 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907596_female-quail.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_338 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_338 .background-img{
                border-radius:;
            }
        #medical_box_338 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_338 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_338 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_338:hover .new_medical_icon{}#medical_box_338.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_338:hover{}
                    #medical_box_338:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_338 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_338  
                
                #medical_box_338 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_338:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_338.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_338 .mode1-size_338{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_338 .new_medical_box > div{
                width:100%;
            }
             #medical_box_338 > div{
               height:100%;
            }
            #medical_box_338 .mode2-size_338{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_338 .mode3-size_338{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_338 .mode4-size_338{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_338 .mode5-size_338{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_338 .mode6-size_338{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_338 .mode7-size_338{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_338 .mode7-size_338 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_338 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_338 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_338{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_338 span:hover{
                color:!important;
            }
            .custom2_338{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_338 span:hover{
                color:;
            }
            #medical_box_338 .mode-btn1_338{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_338 .mode-btn1_338 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_338 .mode-btn2_338{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_338 .mode-btn2_338 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_338 .div-btn-title_main_338{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_338 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_338 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_339 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662907596_female-quail.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_339 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_339 .background-img{
                border-radius:;
            }
        #medical_box_339 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_339 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_339 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_339:hover .new_medical_icon{}#medical_box_339.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_339:hover{}
                    #medical_box_339:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_339 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_339  
                
                #medical_box_339 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_339:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_339.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_339 .mode1-size_339{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_339 .new_medical_box > div{
                width:100%;
            }
             #medical_box_339 > div{
               height:100%;
            }
            #medical_box_339 .mode2-size_339{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_339 .mode3-size_339{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_339 .mode4-size_339{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_339 .mode5-size_339{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_339 .mode6-size_339{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_339 .mode7-size_339{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_339 .mode7-size_339 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_339 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_339 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_339{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_339 span:hover{
                color:!important;
            }
            .custom2_339{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_339 span:hover{
                color:;
            }
            #medical_box_339 .mode-btn1_339{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_339 .mode-btn1_339 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_339 .mode-btn2_339{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_339 .mode-btn2_339 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_339 .div-btn-title_main_339{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_339 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_339 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_340 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662908331_ssssss.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_340 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_340 .background-img{
                border-radius:;
            }
        #medical_box_340 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_340 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_340 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_340:hover .new_medical_icon{}#medical_box_340.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_340:hover{}
                    #medical_box_340:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_340 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_340  
                
                #medical_box_340 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_340:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_340.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_340 .mode1-size_340{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_340 .new_medical_box > div{
                width:100%;
            }
             #medical_box_340 > div{
               height:100%;
            }
            #medical_box_340 .mode2-size_340{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_340 .mode3-size_340{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_340 .mode4-size_340{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_340 .mode5-size_340{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_340 .mode6-size_340{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_340 .mode7-size_340{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_340 .mode7-size_340 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_340 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_340 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_340{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_340 span:hover{
                color:!important;
            }
            .custom2_340{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_340 span:hover{
                color:;
            }
            #medical_box_340 .mode-btn1_340{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_340 .mode-btn1_340 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_340 .mode-btn2_340{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_340 .mode-btn2_340 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_340 .div-btn-title_main_340{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_340 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_340 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_341 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662908331_ssssss.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_341 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_341 .background-img{
                border-radius:;
            }
        #medical_box_341 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_341 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_341 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_341:hover .new_medical_icon{}#medical_box_341.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_341:hover{}
                    #medical_box_341:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_341 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_341  
                
                #medical_box_341 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_341:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_341.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_341 .mode1-size_341{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_341 .new_medical_box > div{
                width:100%;
            }
             #medical_box_341 > div{
               height:100%;
            }
            #medical_box_341 .mode2-size_341{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_341 .mode3-size_341{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_341 .mode4-size_341{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_341 .mode5-size_341{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_341 .mode6-size_341{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_341 .mode7-size_341{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_341 .mode7-size_341 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_341 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_341 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_341{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_341 span:hover{
                color:!important;
            }
            .custom2_341{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_341 span:hover{
                color:;
            }
            #medical_box_341 .mode-btn1_341{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_341 .mode-btn1_341 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_341 .mode-btn2_341{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_341 .mode-btn2_341 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_341 .div-btn-title_main_341{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_341 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_341 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_342 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662908331_ssssss.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_342 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_342 .background-img{
                border-radius:;
            }
        #medical_box_342 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_342 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_342 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_342:hover .new_medical_icon{}#medical_box_342.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_342:hover{}
                    #medical_box_342:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_342 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_342  
                
                #medical_box_342 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_342:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_342.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_342 .mode1-size_342{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_342 .new_medical_box > div{
                width:100%;
            }
             #medical_box_342 > div{
               height:100%;
            }
            #medical_box_342 .mode2-size_342{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_342 .mode3-size_342{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_342 .mode4-size_342{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_342 .mode5-size_342{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_342 .mode6-size_342{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_342 .mode7-size_342{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_342 .mode7-size_342 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_342 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_342 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_342{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_342 span:hover{
                color:!important;
            }
            .custom2_342{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_342 span:hover{
                color:;
            }
            #medical_box_342 .mode-btn1_342{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_342 .mode-btn1_342 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_342 .mode-btn2_342{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_342 .mode-btn2_342 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_342 .div-btn-title_main_342{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_342 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_342 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_343 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662908331_ssssss.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_343 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_343 .background-img{
                border-radius:;
            }
        #medical_box_343 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_343 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_343 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_343:hover .new_medical_icon{}#medical_box_343.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_343:hover{}
                    #medical_box_343:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_343 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_343  
                
                #medical_box_343 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_343:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_343.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_343 .mode1-size_343{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_343 .new_medical_box > div{
                width:100%;
            }
             #medical_box_343 > div{
               height:100%;
            }
            #medical_box_343 .mode2-size_343{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_343 .mode3-size_343{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_343 .mode4-size_343{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_343 .mode5-size_343{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_343 .mode6-size_343{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_343 .mode7-size_343{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_343 .mode7-size_343 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_343 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_343 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_343{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_343 span:hover{
                color:!important;
            }
            .custom2_343{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_343 span:hover{
                color:;
            }
            #medical_box_343 .mode-btn1_343{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_343 .mode-btn1_343 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_343 .mode-btn2_343{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_343 .mode-btn2_343 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_343 .div-btn-title_main_343{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_343 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_343 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_344 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662903850_ostrich.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_344 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_344 .background-img{
                border-radius:;
            }
        #medical_box_344 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_344 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_344 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_344:hover .new_medical_icon{}#medical_box_344.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_344:hover{}
                    #medical_box_344:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_344 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_344  
                
                #medical_box_344 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_344:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_344.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_344 .mode1-size_344{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_344 .new_medical_box > div{
                width:100%;
            }
             #medical_box_344 > div{
               height:100%;
            }
            #medical_box_344 .mode2-size_344{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_344 .mode3-size_344{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_344 .mode4-size_344{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_344 .mode5-size_344{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_344 .mode6-size_344{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_344 .mode7-size_344{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_344 .mode7-size_344 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_344 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_344 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_344{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_344 span:hover{
                color:!important;
            }
            .custom2_344{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_344 span:hover{
                color:;
            }
            #medical_box_344 .mode-btn1_344{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_344 .mode-btn1_344 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_344 .mode-btn2_344{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_344 .mode-btn2_344 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_344 .div-btn-title_main_344{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_344 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_344 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_345 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662903850_ostrich.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_345 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_345 .background-img{
                border-radius:;
            }
        #medical_box_345 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_345 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_345 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_345:hover .new_medical_icon{}#medical_box_345.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_345:hover{}
                    #medical_box_345:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_345 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_345  
                
                #medical_box_345 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_345:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_345.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_345 .mode1-size_345{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_345 .new_medical_box > div{
                width:100%;
            }
             #medical_box_345 > div{
               height:100%;
            }
            #medical_box_345 .mode2-size_345{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_345 .mode3-size_345{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_345 .mode4-size_345{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_345 .mode5-size_345{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_345 .mode6-size_345{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_345 .mode7-size_345{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_345 .mode7-size_345 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_345 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_345 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_345{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_345 span:hover{
                color:!important;
            }
            .custom2_345{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_345 span:hover{
                color:;
            }
            #medical_box_345 .mode-btn1_345{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_345 .mode-btn1_345 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_345 .mode-btn2_345{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_345 .mode-btn2_345 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_345 .div-btn-title_main_345{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_345 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_345 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_346 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662903850_ostrich.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_346 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_346 .background-img{
                border-radius:;
            }
        #medical_box_346 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_346 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_346 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_346:hover .new_medical_icon{}#medical_box_346.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_346:hover{}
                    #medical_box_346:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_346 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_346  
                
                #medical_box_346 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_346:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_346.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_346 .mode1-size_346{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_346 .new_medical_box > div{
                width:100%;
            }
             #medical_box_346 > div{
               height:100%;
            }
            #medical_box_346 .mode2-size_346{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_346 .mode3-size_346{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_346 .mode4-size_346{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_346 .mode5-size_346{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_346 .mode6-size_346{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_346 .mode7-size_346{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_346 .mode7-size_346 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_346 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_346 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_346{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_346 span:hover{
                color:!important;
            }
            .custom2_346{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_346 span:hover{
                color:;
            }
            #medical_box_346 .mode-btn1_346{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_346 .mode-btn1_346 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_346 .mode-btn2_346{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_346 .mode-btn2_346 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_346 .div-btn-title_main_346{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_346 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_346 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_347 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662903850_ostrich.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_347 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_347 .background-img{
                border-radius:;
            }
        #medical_box_347 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_347 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_347 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_347:hover .new_medical_icon{}#medical_box_347.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_347:hover{}
                    #medical_box_347:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_347 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_347  
                
                #medical_box_347 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_347:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_347.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_347 .mode1-size_347{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_347 .new_medical_box > div{
                width:100%;
            }
             #medical_box_347 > div{
               height:100%;
            }
            #medical_box_347 .mode2-size_347{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_347 .mode3-size_347{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_347 .mode4-size_347{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_347 .mode5-size_347{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_347 .mode6-size_347{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_347 .mode7-size_347{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_347 .mode7-size_347 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_347 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_347 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_347{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_347 span:hover{
                color:!important;
            }
            .custom2_347{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_347 span:hover{
                color:;
            }
            #medical_box_347 .mode-btn1_347{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_347 .mode-btn1_347 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_347 .mode-btn2_347{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_347 .mode-btn2_347 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_347 .div-btn-title_main_347{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_347 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_347 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_348 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662903850_ostrich.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_348 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_348 .background-img{
                border-radius:;
            }
        #medical_box_348 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_348 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_348 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_348:hover .new_medical_icon{}#medical_box_348.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_348:hover{}
                    #medical_box_348:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_348 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_348  
                
                #medical_box_348 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_348:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_348.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_348 .mode1-size_348{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_348 .new_medical_box > div{
                width:100%;
            }
             #medical_box_348 > div{
               height:100%;
            }
            #medical_box_348 .mode2-size_348{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_348 .mode3-size_348{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_348 .mode4-size_348{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_348 .mode5-size_348{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_348 .mode6-size_348{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_348 .mode7-size_348{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_348 .mode7-size_348 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_348 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_348 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_348{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_348 span:hover{
                color:!important;
            }
            .custom2_348{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_348 span:hover{
                color:;
            }
            #medical_box_348 .mode-btn1_348{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_348 .mode-btn1_348 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_348 .mode-btn2_348{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_348 .mode-btn2_348 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_348 .div-btn-title_main_348{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_348 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_348 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_349 .new_medical_icon{
                background-image:url("https://sepidtiur.com/files/image/admin/1662903850_ostrich.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_349 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_349 .background-img{
                border-radius:;
            }
        #medical_box_349 .new_medical_title{color:#000000;font-weight:bold;font-size:15px;cursor:pointer;text-align:center;margin-top:50px;margin-bottom:10px;height:10px;line-height:10px;}#medical_box_331:hover .new_medical_title{color:#91d5ff !important;}
                #medical_box_349 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_349 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_349:hover .new_medical_icon{}#medical_box_349.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:70px;padding-bottom:70px;border-style:solid;border-top-width:1px;border-bottom-width:1px;border-color:#ffc035;}#medical_box_349:hover{}
                    #medical_box_349:hover .background-img{
                        filter:none;
                    }
                
                #medical_box_349 .background-img{
                    position:absolute;
                    top:0;
                    right:0;
                    left:0;
                    bottom:0;
                    z-index:0;
                    backdrop-filter:none;
                }
            
                   #medical_box_349  
                
                #medical_box_349 .new_medical_layer{
                    position:absolute;
                    width:100%;
                    height:100%;
                    z-index:10;
                    transition: all 600ms ease;
                    background-color:rgba(0,0,0,0);
                    display:flex;
                    
                right:0;
                top:0;
            
                }
            
                #medical_box_349:hover .new_medical_layer{
                    border-radius:0 !important;
                    
                    background-color:rgba(0,0,0,0);
                }
            
                #medical_box_349.new_medical_module{
                    background-image:url("https://sepidtiur.com/files/firstpage/1694201517_article back.jpg");
                }
            
            #medical_box_349 .mode1-size_349{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_349 .new_medical_box > div{
                width:100%;
            }
             #medical_box_349 > div{
               height:100%;
            }
            #medical_box_349 .mode2-size_349{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_349 .mode3-size_349{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_349 .mode4-size_349{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_349 .mode5-size_349{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_349 .mode6-size_349{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_349 .mode7-size_349{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_349 .mode7-size_349 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_349 .new_medical_box .new_medical_description a{
                color:;
            }
            #medical_box_349 .new_medical_box .new_medical_description a:hover{
                color:;
            }
            .custom1_349{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_349 span:hover{
                color:!important;
            }
            .custom2_349{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_349 span:hover{
                color:;
            }
            #medical_box_349 .mode-btn1_349{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_349 .mode-btn1_349 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_349 .mode-btn2_349{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_349 .mode-btn2_349 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_349 .div-btn-title_main_349{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_349 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_349 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_77 .new_medical_title_main{color:#000;font-weight:bold;font-size:24px;justify-content:center;text-align:center;margin-bottom:10px;line-height:45px;}.module[data-id_page='805']:hover .new_medical_title_main{}#module_new_medical_77 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='805']:hover .new_medical_box_main{}
            #module_new_medical_77 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_77 .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_77 .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_77 .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_77 .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_77 .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_77 .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_77 .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_77 .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_77 .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_77 .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_77 .new_medical_description p{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_77 .new_medical_description p>a{
                    color:#00AFEF!important;
                }
                #module_new_medical_77 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_77 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_77 .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_77 .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_77 .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_77 .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_77 .btn-gradient-prev:hover{
                    opacity:1;
                }
                #module_new_medical_77 .btn-gradient-next:hover{
                    opacity:1;
                }
                #module_new_medical_77 .prev-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_77 .next-btn svg{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_77 .svg_prev{
                    fill:;
                    width:16px;
                    height:16px;
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_77 .svg_next{
                    fill:;
                    width:16px;
                    height:16px;
                    transform:rotate(180deg);
                    display;inline;
                    padding-left: 1.5px;
                    cursor:pointer;
                }
                #module_new_medical_77 .swiper-button-disabled{
                    opacity: 0.35!important;
                    cursor: auto!important;
                    pointer-events: none!important;
                }
                #module_new_medical_77 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_77 .new_medical_description{ 
                    height:0px;
                }
                
            
             #module_new_medical_77 .more-text {
                display: none;
            }
            #module_new_medical_77 .read-less-des {
                display: none;
            }
            #module_new_medical_77 .read-more-less-des {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 8px 0;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_77{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_77 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_77 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_77 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_77 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_77 .swiper-container{
                width:1200px;
            }
            #module_new_medical_77 .top_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_77 .right_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_77 .left_layer_diagonal{
                z-index:10 !important;
            }
            #module_new_medical_77 .bottom_layer_diagonal{
                z-index:10 !important;
            }
        
            
            body{
                position: relative;
            }
            .public-header{
                position: relative;
            }
            .absolute-container{
                background-color: transparent;
                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: #545454;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #ffc035;
                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 #ffc035 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: url(https://sepidtiur.com/files/firstpage/1694074314_backhead.jpg);
                    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: 40px;
                height: 40px;
                background: #ffc035;
                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: 32px;
                height: 32px;
            }
            .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: 512px;
                height: 512px;
            }
            .top-social li a span{
                font-size: 0px;
                font-weight: 200;
                color: #545454;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: #595959;
            }
            
                .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: #545454;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 24px;
                height: 24px;
                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: #545454;
                font-size: 16px;
                font-weight: 200;search
            }
            .top-nav-list:hover{
                background-color: #ffc035;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #545454;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #545454;
                fill: #545454;
            }
            .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: #fff;
            }
            .top-sub-nav > .top-sub-list:hover a span,
            .top-sub-nav > .top-sub-list:hover span{
                color: #545454;
            }
            
            .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  #545454;
                }
            
        
            .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: #ffc035;
            }
            .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: 20px;
                padding-bottom: 20px;
                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: 90px;
                height: 72px;
                max-width: 90px;
                max-height: 72px;
                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: #fff;
                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: #fff;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: #545454;
            }
            
            .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: #ffc035;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list:hover a,
            .nav-container .navbar .nav-list:hover span{
                color:  ;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 14px;
                color: #545454;
            }
            .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%  +  5px);
                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%  +  5px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width:200px;
                        border-left: 5px solid #ffc035;
                    }
                
        
            .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: #545454;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: ;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #fff;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 4999;
               /* display: none;*/
            } 
            /*.sub-navbar{
                width: 100%;
                height: 100%;
            }*/
            .nav-container .navbar.navbar-sub .nav-list img{
                width: 16px;
                height: 16px;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #545454;
                font-size: 12px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #545454;
            }
            .active{
                background-color: #fff;
            }
            .active a{
                color: #545454;
            }     
            .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: #545454;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: #fff;
                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: #545454;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: #fff;
                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: #545454;
                color: #545454;
            }
            
                
                .icon-container .icon-item.basket-icon .add-item-to-cart{
                    color: #545454;
                    border-radius: 3px;
                    background: #fff;
                    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: #545454;
                    }
                    .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: #ffc035;
                    }
                    .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: #ffc035;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open:hover span{
                        color: #545454;
                    }
                    .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: #ffc035;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: #ffc035;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #545454;
            
            
            }
            .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: #545454;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  ;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                        .search-container .search-input{
                            border-left: none !important;
                            border-radius: 0 3px 3px 0;
                        }
                        .search-container .search-btn{
                            border-right: none !important; 
                            border-radius: 3px 0 0 3px;
                        }
                    
                
                .search-container{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 45px;
                    padding: 0 6%;
                    transition: .8s;
                }
                .search-container .search-input{
                    width: 95%;
                    height: calc(2 * 0px + 45px);
                    padding: 5px 10px; 
                    background-color: #fff;
                    color: #595959;
                    border: 0px  solid  transparent;
                }
                .search-container .search-input::placeholder{
                    color: #aaa;
                }
                .search-container .search-btn{
                    width: 45px;
                    height: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    background-color: #ffc035;
                    box-sizing: border-box;
                    border: 0px  solid  transparent;
                }
                .search-container .search-btn svg{
                    width: 20px;
                    height: 20px;
                    fill: #545454;
                }
                .icon-container .search-icon{
                    display: none;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #545454;
                }
            
            
            .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;
            }
            .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: #fff;
                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 #fff;
                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: #545454;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #545454;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #545454;
            }
            .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: #ffc035;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #545454;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #545454;
            }
            .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 #ffc035;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: 600ms;
                right: 25px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: 50%;
                border: 1px  solid  #545454;
                padding: 15px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #ffc035;
            }
            #back_to_top svg{
                width: 25px;
                height: 25px;
                fill: #545454;
            }
            #back_to_top img{
                width: 25px;
                height: 25px;
                fill: #545454;
                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: 90px 5fr 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"
                            "bottom-1 bottom-1 bottom-1"; 
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .top-section-2{
                        justify-content: center;
                    }
                    .top-section-3{
                        justify-content: flex-end;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        padding: 15px 0;
                        justify-content: flex-start;
                    }
                    .nav-container .navbar{
                        justify-content: center;
                    }
                    .bottom-section-2{
                        justify-content: flex-start;
                    }
                    
     #t-footer_bg{
        width:100%;
        background-color:#ffc035;
     }
     #footer-wrap{
        width:1200px;
        margin:auto;
     }
     #t-footer_container{
        width:100%;
        padding: 50px 0;
     }
     .t-footer_section{
        display:inline-block;
        vertical-align: top;
        width:330px;
        margin:0 30px;
        color:#FFFFFF;
     }
     #t-footer_construct p{
        width:100%;
        margin-bottom: 20px;
     }
     #footer_logo{
        width:100%;
        height:65px;
        object-fit:contain;
     }
     #construct_txt{
        margin-bottom:10px;
        text-align:justify;
        font-size: 14px;
        line-height: 26px;
        color:#545454;
     }
     .t-section_title{
        font-size:20px;
        font-weight:500;
     }
     .t-sub_section{
        margin-top: 10px;
     }
     .t-sub_section li{
        padding-top:10px;
     }
     .sub_subtitle{
        font-size:14px;
        color:#545454;
     }
     .service_txt span{
        color:#FFFFFF;
        font-size: 15px;
     }
   .news_content a{
        color:#545454;
        font-size:14px;
   }
   .news_content a:hover{
        color:#ffc000;
   }
   .news_content span{
        color:#85868c;
        font-size: 13px;
   }
   #bottom-bar_bg{
        width:100%;
        background:#252525 none repeat center top;
   }
   #bottom_bar_wrap{
        width:1200px;
        line-height:50px;
        margin:auto;
        font-size: 12px;
   }
   .bottom_txt{
        width:49%;
        display:inline-block;
        padding:10px 0;
        color: #aaaaaa;
   }
   .bottom_txt a{color: #aaaaaa;}
   .bottom_txt a:hover{text-decoration:underline}
   #bottom_right_txt{
        text-align:right;
        padding-right: 30px;
   }
   #bottom_left_txt{text-align:left;}


            #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;}