/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}#layoutfull_box_28.new_layoutfull_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:17vw;padding-bottom:17vw;border-style:none;}#layoutfull_box_28:hover{}
                #layoutfull_box_28:hover .background-img {
                    filter:none;
                }
            
                #layoutfull_box_28 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://metodeman.ir/files/banner/1618687101_03.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layoutfull_box_28 
            
            #layoutfull_box_28 .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_28 .layer_first_child {
                width: 100%;
            }
        
            #layoutfull_box_28:hover .new_layoutfull_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #layoutfull_box_28 .new_layoutfull_box .container-nlm{
                width:100% !important;
                margin:auto;
            }
            #layoutfull_box_28.cursor_box{
                cursor:auto; 
            }
        
                #layoutfull_box_28 .new_layoutfull_box{
                    visibility:visible;
                }
            
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layoutfull_27{
                overflow:hidden;
            }
            #module_new_layoutfull_27 .new_layoutfull_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:11;
                display:flex;
            }
            #module_new_layoutfull_27 .new_layoutfull_description a{
                color:inherit;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layoutfull_27 .new_layoutfull_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='319']{;background-color:#d9d9d9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='319']:hover{;}.module[data-id_page='319']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='319'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='319'] 
            
            .module[data-id_page='319'] .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='319'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='319']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_226 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_226 .content_str{
				width:100%;
			}
            #module_new_medical_226 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_226 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_226 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_226 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_226 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_226 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_226 .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_226 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_226 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_226 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_226 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_226 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_226 .new_medical_description a,#module_new_medical_226 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_226 .new_medical_description a:hover,#module_new_medical_226 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_226 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_226 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_722 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_722 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_722 .background-img{
                border-radius:100px;
            }
        #medical_box_722 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_311:hover .new_medical_title{}
                #medical_box_722 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_722 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_722.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_722 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_722 
            
            #medical_box_722 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_722 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_722:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_722 .mode1-size_722{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_722 .new_medical_box > div{
                width:100%;
            }
             #medical_box_722 > div{
               height:100%;
            }
            #medical_box_722 .mode2-size_722{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_722 .mode3-size_722{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_722 .mode4-size_722{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_722 .mode5-size_722{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_722 .mode6-size_722{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_722 .mode7-size_722{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_722 .mode7-size_722 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_722 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_722 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_722{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_722 span:hover{
                color:!important;
            }
            .custom2_722{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_722 span:hover{
                color:;
            }
            #medical_box_722 .mode-btn1_722{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_722 .mode-btn1_722 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_722 .mode-btn2_722{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_722 .mode-btn2_722 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_722 .div-btn-title_main_722{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_722 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_722 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_792 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_792 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_792 .background-img{
                border-radius:;
            }
        #medical_box_792 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-bottom:20px;}#medical_box_792:hover .new_medical_title{}
                #medical_box_792 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_792.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-right:40px;border-style:none;}#medical_box_792:hover{}#medical_box_792 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-right:20px;padding-left:60px;border-style:solid;border-color:#555;}#medical_box_792:hover .new_medical_description{}
                #medical_box_792 .new_medical_layer{}#medical_box_319:hover .new_medical_layer{}
            
            #medical_box_792 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_792 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_792:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_792 .mode1-size_792{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_792 .new_medical_box > div{
                width:100%;
            }
             #medical_box_792 > div{
               height:100%;
            }
            #medical_box_792 .mode2-size_792{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_792 .mode3-size_792{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_792 .mode4-size_792{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_792 .mode5-size_792{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_792 .mode6-size_792{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_792 .mode7-size_792{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_792 .mode7-size_792 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_792 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_792 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_792{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_792 span:hover{
                color:!important;
            }
            .custom2_792{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_792 span:hover{
                color:;
            }
            #medical_box_792 .mode-btn1_792{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_792 .mode-btn1_792 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_792 .mode-btn2_792{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_792 .mode-btn2_792 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_792 .div-btn-title_main_792{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_792 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_792 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1945 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1945 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1945 .background-img{
                border-radius:;
            }
        #medical_box_1945.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:30px;padding-right:40px;border-style:none;}#medical_box_1945:hover{}#medical_box_1945 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;padding-right:20px;padding-left:60px;border-style:solid;border-color:#555;}#medical_box_1945:hover .new_medical_description{}
                #medical_box_1945 .new_medical_layer{}#medical_box_319:hover .new_medical_layer{}
            
            #medical_box_1945 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1945 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1945:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1945 .mode1-size_1945{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1945 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1945 > div{
               height:100%;
            }
            #medical_box_1945 .mode2-size_1945{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1945 .mode3-size_1945{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1945 .mode4-size_1945{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1945 .mode5-size_1945{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1945 .mode6-size_1945{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1945 .mode7-size_1945{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1945 .mode7-size_1945 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1945 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1945 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1945{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1945 span:hover{
                color:!important;
            }
            .custom2_1945{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1945 span:hover{
                color:;
            }
            #medical_box_1945 .mode-btn1_1945{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1945 .mode-btn1_1945 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1945 .mode-btn2_1945{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1945 .mode-btn2_1945 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1945 .div-btn-title_main_1945{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1945 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1945 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_786 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1615290930_66.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_786 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_786 .background-img{
                border-radius:;
            }
        
            #medical_box_786 .new_medical_icon{
                
            }
        #medical_box_786 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_786 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_786 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:380px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_319:hover .new_medical_icon{}#medical_box_786.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;padding-bottom:30px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_786:hover{}#medical_box_786 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_786:hover .new_medical_description{}
                #medical_box_786 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_786 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_786 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_786:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_786 .mode1-size_786{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_786 .new_medical_box > div{
                width:100%;
            }
             #medical_box_786 > div{
               height:100%;
            }
            #medical_box_786 .mode2-size_786{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_786 .mode3-size_786{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_786 .mode4-size_786{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_786 .mode5-size_786{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_786 .mode6-size_786{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_786 .mode7-size_786{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_786 .mode7-size_786 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_786 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_786 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_786{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_786 span:hover{
                color:!important;
            }
            .custom2_786{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_786 span:hover{
                color:;
            }
            #medical_box_786 .mode-btn1_786{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_786 .mode-btn1_786 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_786 .mode-btn2_786{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_786 .mode-btn2_786 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_786 .div-btn-title_main_786{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_786 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_786 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_787 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1616101161_baner-02.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_787 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_787 .background-img{
                border-radius:;
            }
        
            #medical_box_787 .new_medical_icon{
                
            }
        #medical_box_787 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_787 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_787 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:380px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_319:hover .new_medical_icon{}#medical_box_787.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:40px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_787:hover{}#medical_box_787 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_786:hover .new_medical_description{}
                #medical_box_787 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_787 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_787 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_787:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_787 .mode1-size_787{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_787 .new_medical_box > div{
                width:100%;
            }
             #medical_box_787 > div{
               height:100%;
            }
            #medical_box_787 .mode2-size_787{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_787 .mode3-size_787{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_787 .mode4-size_787{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_787 .mode5-size_787{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_787 .mode6-size_787{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_787 .mode7-size_787{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_787 .mode7-size_787 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_787 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_787 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_787{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_787 span:hover{
                color:!important;
            }
            .custom2_787{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_787 span:hover{
                color:;
            }
            #medical_box_787 .mode-btn1_787{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_787 .mode-btn1_787 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_787 .mode-btn2_787{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_787 .mode-btn2_787 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_787 .div-btn-title_main_787{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_787 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_787 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_788 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1612812196_-Banermobile223.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_788 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_788 .background-img{
                border-radius:;
            }
        
            #medical_box_788 .new_medical_icon{
                
            }
        #medical_box_788 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_788 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_788 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:560px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_319:hover .new_medical_icon{}#medical_box_788.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_788:hover{}#medical_box_788 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_786:hover .new_medical_description{}
                #medical_box_788 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_788 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_788 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_788:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_788 .mode1-size_788{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_788 .new_medical_box > div{
                width:100%;
            }
             #medical_box_788 > div{
               height:100%;
            }
            #medical_box_788 .mode2-size_788{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_788 .mode3-size_788{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_788 .mode4-size_788{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_788 .mode5-size_788{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_788 .mode6-size_788{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_788 .mode7-size_788{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_788 .mode7-size_788 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_788 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_788 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_788{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_788 span:hover{
                color:!important;
            }
            .custom2_788{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_788 span:hover{
                color:;
            }
            #medical_box_788 .mode-btn1_788{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_788 .mode-btn1_788 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_788 .mode-btn2_788{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_788 .mode-btn2_788 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_788 .div-btn-title_main_788{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_788 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_788 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_789 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1614808984_baner01.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_789 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_789 .background-img{
                border-radius:;
            }
        
            #medical_box_789 .new_medical_icon{
                
            }
        #medical_box_789 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_789 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_789 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:500px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_789:hover .new_medical_icon{}#medical_box_789.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_789:hover{}#medical_box_789 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_786:hover .new_medical_description{}
                #medical_box_789 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_789 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_789 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_789:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_789 .mode1-size_789{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_789 .new_medical_box > div{
                width:100%;
            }
             #medical_box_789 > div{
               height:100%;
            }
            #medical_box_789 .mode2-size_789{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_789 .mode3-size_789{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_789 .mode4-size_789{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_789 .mode5-size_789{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_789 .mode6-size_789{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_789 .mode7-size_789{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_789 .mode7-size_789 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_789 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_789 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_789{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_789 span:hover{
                color:!important;
            }
            .custom2_789{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_789 span:hover{
                color:;
            }
            #medical_box_789 .mode-btn1_789{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_789 .mode-btn1_789 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_789 .mode-btn2_789{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_789 .mode-btn2_789 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_789 .div-btn-title_main_789{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_789 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_789 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_790 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1616080363_baner-01.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_790 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_790 .background-img{
                border-radius:;
            }
        
            #medical_box_790 .new_medical_icon{
                
            }
        #medical_box_790 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_790 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_790 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:400px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_790:hover .new_medical_icon{}#medical_box_790.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_790:hover{}#medical_box_790 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_786:hover .new_medical_description{}
                #medical_box_790 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_790 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_790 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_790:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_790 .mode1-size_790{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_790 .new_medical_box > div{
                width:100%;
            }
             #medical_box_790 > div{
               height:100%;
            }
            #medical_box_790 .mode2-size_790{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_790 .mode3-size_790{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_790 .mode4-size_790{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_790 .mode5-size_790{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_790 .mode6-size_790{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_790 .mode7-size_790{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_790 .mode7-size_790 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_790 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_790 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_790{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_790 span:hover{
                color:!important;
            }
            .custom2_790{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_790 span:hover{
                color:;
            }
            #medical_box_790 .mode-btn1_790{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_790 .mode-btn1_790 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_790 .mode-btn2_790{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_790 .mode-btn2_790 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_790 .div-btn-title_main_790{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_790 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_790 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_791 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1616098145_baner-01.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_791 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_791 .background-img{
                border-radius:;
            }
        
            #medical_box_791 .new_medical_icon{
                
            }
        #medical_box_791 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_791 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_791 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:450px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_791:hover .new_medical_icon{}#medical_box_791.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_791:hover{}#medical_box_791 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_786:hover .new_medical_description{}
                #medical_box_791 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_791 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_791 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_791:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_791 .mode1-size_791{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_791 .new_medical_box > div{
                width:100%;
            }
             #medical_box_791 > div{
               height:100%;
            }
            #medical_box_791 .mode2-size_791{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_791 .mode3-size_791{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_791 .mode4-size_791{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_791 .mode5-size_791{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_791 .mode6-size_791{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_791 .mode7-size_791{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_791 .mode7-size_791 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_791 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_791 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_791{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_791 span:hover{
                color:!important;
            }
            .custom2_791{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_791 span:hover{
                color:;
            }
            #medical_box_791 .mode-btn1_791{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_791 .mode-btn1_791 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_791 .mode-btn2_791{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_791 .mode-btn2_791 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_791 .div-btn-title_main_791{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_791 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_791 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_793 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/banner/1612699449_04-metodeman.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_793 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_793 .background-img{
                border-radius:;
            }
        
            #medical_box_793 .new_medical_icon{
                
            }
        #medical_box_793 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;}#medical_box_786:hover .new_medical_title{}
                #medical_box_793 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_793 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:50%;height:500px;border-radius:50px;border-style:none;border-color:#000;}#medical_box_793:hover .new_medical_icon{}#medical_box_793.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-bottom:0px;padding-right:10px;padding-left:10px;border-style:none;}#medical_box_793:hover{}#medical_box_793 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:10px;padding-top:10px;padding-bottom:0px;padding-right:10px;padding-left:24px;border-style:solid;border-color:#555;}#medical_box_793:hover .new_medical_description{}
                #medical_box_793 .new_medical_layer{}#medical_box_786:hover .new_medical_layer{}
            
            #medical_box_793 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_793 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_793:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_793 .mode1-size_793{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_793 .new_medical_box > div{
                width:100%;
            }
             #medical_box_793 > div{
               height:100%;
            }
            #medical_box_793 .mode2-size_793{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_793 .mode3-size_793{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_793 .mode4-size_793{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_793 .mode5-size_793{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_793 .mode6-size_793{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_793 .mode7-size_793{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_793 .mode7-size_793 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_793 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_793 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_793{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_793 span:hover{
                color:!important;
            }
            .custom2_793{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_793 span:hover{
                color:;
            }
            #medical_box_793 .mode-btn1_793{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_793 .mode-btn1_793 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_793 .mode-btn2_793{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_793 .mode-btn2_793 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_793 .div-btn-title_main_793{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_793 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_793 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_226 .new_medical_title_main{color:#000;font-weight:bold;font-size:25px;justify-content:center;text-align:center;margin-top:35px;margin-bottom:40px;line-height:60px;}.module[data-id_page='319']:hover .new_medical_title_main{}
                #module_new_medical_226 .new_medical_title_main{
                    background-size:cover;
                    background-repeat:no-repeat;
                    background-position:center;
                    background-image:url("https://metodeman.ir/files/1614003536_22 at 17.43.59.jpeg");
                }
            
                #module_new_medical_226 .new_medical_icon_main{
                    background-image:url("https://metodeman.ir/files/icon/03pezeshk/1619331007_17.png");
                    
                }
            
            #module_new_medical_226 .new_medical_icon_main{
                
            }
            #module_new_medical_226 .new_medical_icon_main{background-size:cover;background-position:right;background-repeat:no-repeat;min-width:35px;height:35px;margin-left:20px;border-radius:30px;border-style:none;border-color:#000;}.module[data-id_page='319']:hover .new_medical_icon_main{}#module_new_medical_226 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:10px;padding-left:10px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='319']:hover .new_medical_box_main{}
            #module_new_medical_226 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_226 .new_medical_module{
                    width:1180px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_226 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_226 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_226 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_226 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_226 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_226 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_226 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_226 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_226 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_226{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_226 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_226 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_226 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_226 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_226 .swiper-container{
                width:1200px;
            }
            #module_new_medical_226 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_226 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_226 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_226 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            .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_7 .ti_ma_h{
                width:100%;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:25px;
                line-height: 30px;
                color: ;
                background-color: ;
            }
            #description_7 .ti_ma_h a{color: ;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: ;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
             .pr_text_pic:before{
                position: absolute;
                display: block;
                top: 24px;
                right: 4%;
                background-image:url(https://metodeman.ir/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_7 .container_box_17{
                    background-color:;
                    border-width:50px ;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .lineH{line-height:1em;}
                
                #description_7 .font_title_box_0{
                    font-size: 20px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                    #btn_cta_17{
                        width:100%;
                        text-align:center;
                        overflow: hidden;
                        height:50px;
                    }
                    #btn_cta_17.has_class_more{
                        height:0;
                    }
                    #btn_cta_17 >  a{
                        color:red;
                        background-color:green;
                        font-size:16px;
                        font-weight:500;
                        width:200px;
                        height:50px;
                        line-height:50px;
                        border-width:1px;
                        border-color:gray;
                        border-radius:3px;
                        display:inline-block;
                        text-align:center;
                    }
                    #btn_cta_17 >  a:hover{
                        color:blue;
                        background-color:yellow;
                        border-color:black;
                    }
                
                .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_7 .container_box_18{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_7 .font_title_box_1{
                    font-size: 20px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                .sidebar_box_1 {
                    width:100%;
                }
                .mt3vw{margin-top:3vw;}
                .sidebar_box_1  > p:first-child{
                    overflow:hidden;
                    margin-top: 5px;
                    padding: 0 10px;
                }
                .sidebar_box_1 .read-more {
                    width: 100%;
                    text-align: center;
                    margin: 0;
                    padding: 8px 0;
                }
                .sidebar_box_1 a{
                    color:;
                }
                .sidebar_box_1 a:hover{
                    color:;
                }
                .sidebar_box_1 i{
                    vertical-align: sub;
                    margin: 0 10px;
                    font-size:18px;
                }
                .video_tag{ 
                    width:100%;
                }
            
            #description_7 .public_center{
                border-spacing:30px;
            }
        #description_7{
                  padding-top:10px;
                }#description_7{
                  margin-bottom:50px;
                }#description_7{
                    margin-top:50px;
                }#description_7{
                  padding-bottom:50px;
                }#description_7{
                        font-size:20px;
                }#description_7 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_7 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_7 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_7 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_7 .color_title{/*range title asli module*/
                            color: ;
                                }#description_7 .color_text{/*range text haye module  */
                            color:;
                                }#description_7 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_7 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_7 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_7 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_7 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_7 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_7 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_7 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='337']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='337']:hover{;}.module[data-id_page='337']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='337'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='337'] 
            
            .module[data-id_page='337'] .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='337'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='337']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_243 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_243 .content_str{
				width:100%;
			}
            #module_new_medical_243 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_243 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_243 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_243 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_243 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_243 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_243 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_243 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_243 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_243 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_243 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_243 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_243 .new_medical_description a,#module_new_medical_243 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_243 .new_medical_description a:hover,#module_new_medical_243 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_243 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_243 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1056 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1056 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1056 .background-img{
                border-radius:100px;
            }
        #medical_box_1056 .new_medical_title{color:#000;font-weight:500;font-size:21px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_1056:hover .new_medical_title{}
                #medical_box_1056 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1056 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_1056.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_1056 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1056 
            
            #medical_box_1056 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1056 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1056:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1056 .mode1-size_1056{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1056 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1056 > div{
               height:100%;
            }
            #medical_box_1056 .mode2-size_1056{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1056 .mode3-size_1056{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1056 .mode4-size_1056{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1056 .mode5-size_1056{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1056 .mode6-size_1056{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1056 .mode7-size_1056{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1056 .mode7-size_1056 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1056 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1056 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1056{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1056 span:hover{
                color:!important;
            }
            .custom2_1056{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1056 span:hover{
                color:;
            }
            #medical_box_1056 .mode-btn1_1056{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1056 .mode-btn1_1056 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1056 .mode-btn2_1056{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1056 .mode-btn2_1056 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1056 .div-btn-title_main_1056{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1056 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1056 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1055 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1055 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1055 .background-img{
                border-radius:25px;
            }
        #medical_box_1055 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_1055.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_1055:hover{}
                #medical_box_1055:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1055 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1055 
            
            #medical_box_1055 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1055 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1055:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1055.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620123482_رژیم آنلاین.png");
                }
            
            #medical_box_1055 .mode1-size_1055{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1055 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1055 > div{
               height:100%;
            }
            #medical_box_1055 .mode2-size_1055{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1055 .mode3-size_1055{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1055 .mode4-size_1055{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1055 .mode5-size_1055{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1055 .mode6-size_1055{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1055 .mode7-size_1055{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1055 .mode7-size_1055 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1055 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1055 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1055{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1055 span:hover{
                color:!important;
            }
            .custom2_1055{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1055 span:hover{
                color:;
            }
            #medical_box_1055 .mode-btn1_1055{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1055 .mode-btn1_1055 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1055 .mode-btn2_1055{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1055 .mode-btn2_1055 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1055 .div-btn-title_main_1055{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1055 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1055 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1057 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1057 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1057 .background-img{
                border-radius:;
            }
        #medical_box_1057 .new_medical_title{color:#000;font-weight:bold;font-size:17px;text-align:right;line-height:33px;}#medical_box_1057:hover .new_medical_title{}
                #medical_box_1057 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1057 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_1057 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:0px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_718:hover .new_medical_description{}
                #medical_box_1057 
            
            #medical_box_1057 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1057 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1057:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1057 .mode1-size_1057{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1057 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1057 > div{
               height:100%;
            }
            #medical_box_1057 .mode2-size_1057{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1057 .mode3-size_1057{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1057 .mode4-size_1057{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1057 .mode5-size_1057{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1057 .mode6-size_1057{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1057 .mode7-size_1057{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1057 .mode7-size_1057 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1057 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1057 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1057{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1057 span:hover{
                color:!important;
            }
            .custom2_1057{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1057 span:hover{
                color:;
            }
            #medical_box_1057 .mode-btn1_1057{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1057 .mode-btn1_1057 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1057 .mode-btn2_1057{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1057 .mode-btn2_1057 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1057 .div-btn-title_main_1057{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1057 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1057 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1060 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1060 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1060 .background-img{
                border-radius:;
            }
        #medical_box_1060 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_719:hover .new_medical_title{}
                #medical_box_1060 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1060 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_1060:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1060.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:dotted;border-color:#ffccc7;}#medical_box_794:hover{}#medical_box_1060 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1060 
            
            #medical_box_1060 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1060 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1060:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1060 .mode1-size_1060{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1060 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1060 > div{
               height:100%;
            }
            #medical_box_1060 .mode2-size_1060{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1060 .mode3-size_1060{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1060 .mode4-size_1060{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1060 .mode5-size_1060{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1060 .mode6-size_1060{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1060 .mode7-size_1060{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1060 .mode7-size_1060 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1060 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1060 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1060{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1060 span:hover{
                color:!important;
            }
            .custom2_1060{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1060 span:hover{
                color:;
            }
            #medical_box_1060 .mode-btn1_1060{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1060 .mode-btn1_1060 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1060 .mode-btn2_1060{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1060 .mode-btn2_1060 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1060 .div-btn-title_main_1060{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1060 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1060 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_243 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_243 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_243 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_243 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_243 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_243 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_243 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_243 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_243 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_243 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_243 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_243 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_243 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_243{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_243 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_243 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_243 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_243 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_243 .swiper-container{
                width:1200px;
            }
            #module_new_medical_243 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_243 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='336']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='336']:hover{;}.module[data-id_page='336']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='336'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='336'] 
            
            .module[data-id_page='336'] .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='336'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='336']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_242 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_242 .content_str{
				width:100%;
			}
            #module_new_medical_242 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_242 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_242 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_242 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_242 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_242 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_242 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_242 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_242 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_242 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_242 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_242 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_242 .new_medical_description a,#module_new_medical_242 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_242 .new_medical_description a:hover,#module_new_medical_242 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_242 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_242 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1023 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1023 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1023 .background-img{
                border-radius:100px;
            }
        #medical_box_1023 .new_medical_title{color:#000;font-weight:bold;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_1023:hover .new_medical_title{}
                #medical_box_1023 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1023 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_1023.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_1023 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1023 
            
            #medical_box_1023 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1023 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1023:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1023 .mode1-size_1023{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1023 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1023 > div{
               height:100%;
            }
            #medical_box_1023 .mode2-size_1023{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1023 .mode3-size_1023{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1023 .mode4-size_1023{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1023 .mode5-size_1023{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1023 .mode6-size_1023{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1023 .mode7-size_1023{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1023 .mode7-size_1023 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1023 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1023 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1023{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1023 span:hover{
                color:!important;
            }
            .custom2_1023{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1023 span:hover{
                color:;
            }
            #medical_box_1023 .mode-btn1_1023{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1023 .mode-btn1_1023 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1023 .mode-btn2_1023{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1023 .mode-btn2_1023 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1023 .div-btn-title_main_1023{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1023 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1023 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1022 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1022 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1022 .background-img{
                border-radius:25px;
            }
        #medical_box_1022 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_1022.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_716:hover{}
                #medical_box_1022:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1022 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1022 
            
            #medical_box_1022 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1022 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1022:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1022.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619578682_بنر رژیم آنلاین.png");
                }
            
            #medical_box_1022 .mode1-size_1022{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1022 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1022 > div{
               height:100%;
            }
            #medical_box_1022 .mode2-size_1022{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1022 .mode3-size_1022{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1022 .mode4-size_1022{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1022 .mode5-size_1022{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1022 .mode6-size_1022{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1022 .mode7-size_1022{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1022 .mode7-size_1022 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1022 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1022 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1022{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1022 span:hover{
                color:!important;
            }
            .custom2_1022{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1022 span:hover{
                color:;
            }
            #medical_box_1022 .mode-btn1_1022{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1022 .mode-btn1_1022 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1022 .mode-btn2_1022{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1022 .mode-btn2_1022 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1022 .div-btn-title_main_1022{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1022 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1022 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1024 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1024 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1024 .background-img{
                border-radius:;
            }
        #medical_box_1024 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:right;line-height:33px;}#medical_box_1024:hover .new_medical_title{}
                #medical_box_1024 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1024 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_1024.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;}#medical_box_1024:hover{}#medical_box_1024 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:0px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_718:hover .new_medical_description{}
                #medical_box_1024 
            
            #medical_box_1024 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1024 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1024:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1024 .mode1-size_1024{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1024 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1024 > div{
               height:100%;
            }
            #medical_box_1024 .mode2-size_1024{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1024 .mode3-size_1024{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1024 .mode4-size_1024{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1024 .mode5-size_1024{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1024 .mode6-size_1024{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1024 .mode7-size_1024{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1024 .mode7-size_1024 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1024 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1024 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1024{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1024 span:hover{
                color:!important;
            }
            .custom2_1024{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1024 span:hover{
                color:;
            }
            #medical_box_1024 .mode-btn1_1024{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1024 .mode-btn1_1024 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1024 .mode-btn2_1024{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1024 .mode-btn2_1024 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1024 .div-btn-title_main_1024{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1024 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1024 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1027 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/icon/1613238320_01.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1027 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1027 .background-img{
                border-radius:;
            }
        
            #medical_box_1027 .new_medical_icon{
                
            }
        #medical_box_1027 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_719:hover .new_medical_title{}
                #medical_box_1027 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1027 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_719:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1027.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:dotted;border-color:#ffccc7;}#medical_box_794:hover{}#medical_box_1027 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1027 
            
            #medical_box_1027 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1027 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1027:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1027 .mode1-size_1027{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1027 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1027 > div{
               height:100%;
            }
            #medical_box_1027 .mode2-size_1027{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1027 .mode3-size_1027{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1027 .mode4-size_1027{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1027 .mode5-size_1027{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1027 .mode6-size_1027{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1027 .mode7-size_1027{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1027 .mode7-size_1027 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1027 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1027 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1027{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1027 span:hover{
                color:!important;
            }
            .custom2_1027{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1027 span:hover{
                color:;
            }
            #medical_box_1027 .mode-btn1_1027{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1027 .mode-btn1_1027 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1027 .mode-btn2_1027{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1027 .mode-btn2_1027 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1027 .div-btn-title_main_1027{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1027 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1027 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1026 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1026 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1026 .background-img{
                border-radius:25px;
            }
        #medical_box_1026 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1026.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:90px;border-radius:25px;border-style:none;border-color:#ffccc7;}#medical_box_720:hover{}
                #medical_box_1026:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1026 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1026 
            
            #medical_box_1026 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1026 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1026:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1026.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619589958_1.png");
                }
            
            #medical_box_1026 .mode1-size_1026{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1026 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1026 > div{
               height:100%;
            }
            #medical_box_1026 .mode2-size_1026{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1026 .mode3-size_1026{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1026 .mode4-size_1026{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1026 .mode5-size_1026{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1026 .mode6-size_1026{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1026 .mode7-size_1026{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1026 .mode7-size_1026 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1026 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1026 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1026{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1026 span:hover{
                color:!important;
            }
            .custom2_1026{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1026 span:hover{
                color:;
            }
            #medical_box_1026 .mode-btn1_1026{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1026 .mode-btn1_1026 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1026 .mode-btn2_1026{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1026 .mode-btn2_1026 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1026 .div-btn-title_main_1026{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1026 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1026 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1025 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/icon/1613238320_02.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1025 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1025 .background-img{
                border-radius:;
            }
        
            #medical_box_1025 .new_medical_icon{
                
            }
        #medical_box_1025 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_719:hover .new_medical_title{}
                #medical_box_1025 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1025 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_719:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1025.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_719:hover{}#medical_box_1025 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1025 
            
            #medical_box_1025 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1025 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1025:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1025 .mode1-size_1025{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1025 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1025 > div{
               height:100%;
            }
            #medical_box_1025 .mode2-size_1025{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1025 .mode3-size_1025{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1025 .mode4-size_1025{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1025 .mode5-size_1025{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1025 .mode6-size_1025{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1025 .mode7-size_1025{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1025 .mode7-size_1025 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1025 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1025 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1025{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1025 span:hover{
                color:!important;
            }
            .custom2_1025{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1025 span:hover{
                color:;
            }
            #medical_box_1025 .mode-btn1_1025{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1025 .mode-btn1_1025 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1025 .mode-btn2_1025{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1025 .mode-btn2_1025 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1025 .div-btn-title_main_1025{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1025 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1025 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1028 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1028 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1028 .background-img{
                border-radius:25px;
            }
        #medical_box_1028 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1028.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_795:hover{}
                #medical_box_1028:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1028 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1028 
            
            #medical_box_1028 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1028 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1028:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1028.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619592105_2.png");
                }
            
            #medical_box_1028 .mode1-size_1028{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1028 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1028 > div{
               height:100%;
            }
            #medical_box_1028 .mode2-size_1028{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1028 .mode3-size_1028{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1028 .mode4-size_1028{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1028 .mode5-size_1028{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1028 .mode6-size_1028{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1028 .mode7-size_1028{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1028 .mode7-size_1028 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1028 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1028 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1028{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1028 span:hover{
                color:!important;
            }
            .custom2_1028{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1028 span:hover{
                color:;
            }
            #medical_box_1028 .mode-btn1_1028{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1028 .mode-btn1_1028 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1028 .mode-btn2_1028{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1028 .mode-btn2_1028 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1028 .div-btn-title_main_1028{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1028 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1028 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1029 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/icon/1613238320_03.svg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1029 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1029 .background-img{
                border-radius:;
            }
        
            #medical_box_1029 .new_medical_icon{
                
            }
        #medical_box_1029 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;padding-left:5px;}#medical_box_796:hover .new_medical_title{}
                #medical_box_1029 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1029 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_796:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1029.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:25px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_796:hover{}#medical_box_1029 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-right:40px;border-style:solid;border-color:#555;}#medical_box_796:hover .new_medical_description{}
                #medical_box_1029 
            
            #medical_box_1029 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1029 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1029:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1029 .mode1-size_1029{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1029 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1029 > div{
               height:100%;
            }
            #medical_box_1029 .mode2-size_1029{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1029 .mode3-size_1029{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1029 .mode4-size_1029{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1029 .mode5-size_1029{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1029 .mode6-size_1029{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1029 .mode7-size_1029{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1029 .mode7-size_1029 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1029 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1029 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1029{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1029 span:hover{
                color:!important;
            }
            .custom2_1029{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1029 span:hover{
                color:;
            }
            #medical_box_1029 .mode-btn1_1029{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1029 .mode-btn1_1029 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1029 .mode-btn2_1029{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1029 .mode-btn2_1029 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1029 .div-btn-title_main_1029{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1029 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1029 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1030 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1030 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1030 .background-img{
                border-radius:25px;
            }
        #medical_box_1030 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1030.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_797:hover{}#medical_box_1030 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1030:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1030 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1030 
            
            #medical_box_1030 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1030 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1030:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1030.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619591993_3.png");
                }
            
            #medical_box_1030 .mode1-size_1030{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1030 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1030 > div{
               height:100%;
            }
            #medical_box_1030 .mode2-size_1030{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1030 .mode3-size_1030{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1030 .mode4-size_1030{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1030 .mode5-size_1030{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1030 .mode6-size_1030{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1030 .mode7-size_1030{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1030 .mode7-size_1030 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1030 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1030 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1030{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1030 span:hover{
                color:!important;
            }
            .custom2_1030{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1030 span:hover{
                color:;
            }
            #medical_box_1030 .mode-btn1_1030{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1030 .mode-btn1_1030 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1030 .mode-btn2_1030{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1030 .mode-btn2_1030 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1030 .div-btn-title_main_1030{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1030 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1030 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1568 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1568 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1568 .background-img{
                border-radius:;
            }
        
                #medical_box_1568 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #medical_box_1568 
            
            #medical_box_1568 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1568 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1568:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1568 .mode1-size_1568{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1568 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1568 > div{
               height:100%;
            }
            #medical_box_1568 .mode2-size_1568{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1568 .mode3-size_1568{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1568 .mode4-size_1568{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1568 .mode5-size_1568{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1568 .mode6-size_1568{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1568 .mode7-size_1568{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1568 .mode7-size_1568 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1568 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1568 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1568{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1568 span:hover{
                color:!important;
            }
            .custom2_1568{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1568 span:hover{
                color:;
            }
            #medical_box_1568 .mode-btn1_1568{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1568 .mode-btn1_1568 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1568 .mode-btn2_1568{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1568 .mode-btn2_1568 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1568 .div-btn-title_main_1568{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1568 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1568 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_242 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_242 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_242 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_242 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_242 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_242 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_242 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_242 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_242 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_242 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_242 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_242 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_242 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_242{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_242 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_242 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_242 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_242 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_242 .swiper-container{
                width:1200px;
            }
            #module_new_medical_242 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_242 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            .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_32 .ti_ma_h{
                width:1200px;
                text-align: center;
                margin: auto;
                padding: 0 10px;
                font-size:20px;
                line-height: 50px;
                color: ;
                background-color: ;
            }
            #description_32 .ti_ma_h a{color: ;}
            .pborder{
                border-right-width:4px;
                border-right-style: solid;
                border-right-color: ;
                padding-right:25px;
                font-weight: 600;
            }
            .pborder_title{
                line-height: 1.42857143;
                padding-right: 25px;
                font-size:1em;
            }
            .p_text_pic{
                width:100%;
                border-radius: 3px;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
                -webkit-transition: box-shadow 300ms 0s ease;
                -moz-transition: box-shadow 300ms 0s ease;
                -ms-transition: box-shadow 300ms 0s ease;
                -o-transition: box-shadow 300ms 0s ease;
                transition: box-shadow 300ms 0s ease;
                display:table;
                table-layout: fixed;
                }
            .p_text_pic:hover{
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            }
            .pl_text_pic{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                padding: 14px 28px;
                /*background-color: #f4f4f4;*/
                text-align: center;
            }
            .pl_text_pic2{
                width:29%;
                display: table-cell;
                vertical-align: middle;
                background-color: #f4f4f4;
                text-align: center;
            }
            .pr_text_pic{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 20px 65px 15px 20px;
                overflow: hidden;
            }
            .pr_text_pic2{
                width:70%;
                display: table-cell;
                vertical-align: middle;
                position: relative;
                padding: 10px 20px;
                overflow: hidden;
            }

        
                #description_32 .container_box_65{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                    .dLineH{line-height:2em;}
                
                #description_32 .font_title_box_0{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
                #description_32 .container_box_66{
                    background-color:transparent;
                    border-width:;;
                    border-style:none;
                    border-color:black;
                    border-radius:0px ;;
                    height:100%;
                    padding:1rem;
                }
            
                #description_32 .font_title_box_1{
                    font-size: 18px;
                    padding:0 1rem;
                    text-align:start;
                    line-height:3;
                }
            
            #description_32 .public_center{
                border-spacing:10px;
            }
        #description_32{
                  padding-top:50px;
                }#description_32{
                  padding-bottom:50px;
                }#description_32{
                        font-size:15px;
                }#description_32 .color_tem1{ /*range asli color ??? */
            color: ;
        }#description_32 .color_tem2{ /*range asli color ??? */
            color: ;
        }#description_32 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#description_32 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#description_32 .color_title{/*range title asli module*/
                            color: ;
                                }#description_32 .color_text{/*range text haye module  */
                            color:;
                                }#description_32 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#description_32 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#description_32 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#description_32 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#description_32 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#description_32 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#description_32 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#description_32 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='338']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='338']:hover{;}.module[data-id_page='338']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='338'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='338'] 
            
            .module[data-id_page='338'] .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='338'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='338']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_244 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_244 .content_str{
				width:100%;
			}
            #module_new_medical_244 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_244 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_244 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_244 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_244 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_244 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_244 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_244 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_244 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_244 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_244 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_244 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_244 .new_medical_description a,#module_new_medical_244 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_244 .new_medical_description a:hover,#module_new_medical_244 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_244 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_244 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1089 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1089 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1089 .background-img{
                border-radius:100px;
            }
        #medical_box_1089 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_717:hover .new_medical_title{}
                #medical_box_1089 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1089 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_1089.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_1089 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1089 
            
            #medical_box_1089 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1089 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1089:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1089 .mode1-size_1089{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1089 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1089 > div{
               height:100%;
            }
            #medical_box_1089 .mode2-size_1089{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1089 .mode3-size_1089{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1089 .mode4-size_1089{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1089 .mode5-size_1089{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1089 .mode6-size_1089{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1089 .mode7-size_1089{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1089 .mode7-size_1089 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1089 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1089 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1089{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1089 span:hover{
                color:!important;
            }
            .custom2_1089{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1089 span:hover{
                color:;
            }
            #medical_box_1089 .mode-btn1_1089{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1089 .mode-btn1_1089 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1089 .mode-btn2_1089{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1089 .mode-btn2_1089 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1089 .div-btn-title_main_1089{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1089 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1089 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1088 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1088 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1088 .background-img{
                border-radius:25px;
            }
        #medical_box_1088 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_1088.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_716:hover{}
                #medical_box_1088:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1088 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1088 
            
            #medical_box_1088 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1088 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1088:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1088.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619578682_بنر رژیم آنلاین.png");
                }
            
            #medical_box_1088 .mode1-size_1088{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1088 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1088 > div{
               height:100%;
            }
            #medical_box_1088 .mode2-size_1088{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1088 .mode3-size_1088{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1088 .mode4-size_1088{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1088 .mode5-size_1088{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1088 .mode6-size_1088{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1088 .mode7-size_1088{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1088 .mode7-size_1088 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1088 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1088 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1088{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1088 span:hover{
                color:!important;
            }
            .custom2_1088{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1088 span:hover{
                color:;
            }
            #medical_box_1088 .mode-btn1_1088{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1088 .mode-btn1_1088 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1088 .mode-btn2_1088{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1088 .mode-btn2_1088 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1088 .div-btn-title_main_1088{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1088 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1088 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1097 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1097 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1097 .background-img{
                border-radius:;
            }
        #medical_box_1097 .new_medical_title{color:#000;font-weight:bold;font-size:18px;text-align:right;line-height:33px;}#medical_box_1097:hover .new_medical_title{}
                #medical_box_1097 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1097 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_1097.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_1097:hover{}#medical_box_1097 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_799:hover .new_medical_description{}
                #medical_box_1097 
            
            #medical_box_1097 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1097 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1097:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1097 .mode1-size_1097{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1097 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1097 > div{
               height:100%;
            }
            #medical_box_1097 .mode2-size_1097{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1097 .mode3-size_1097{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1097 .mode4-size_1097{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1097 .mode5-size_1097{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1097 .mode6-size_1097{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1097 .mode7-size_1097{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1097 .mode7-size_1097 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1097 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1097 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1097{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1097 span:hover{
                color:!important;
            }
            .custom2_1097{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1097 span:hover{
                color:;
            }
            #medical_box_1097 .mode-btn1_1097{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1097 .mode-btn1_1097 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1097 .mode-btn2_1097{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1097 .mode-btn2_1097 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1097 .div-btn-title_main_1097{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1097 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1097 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1098 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1098 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1098 .background-img{
                border-radius:25px;
            }
        #medical_box_1098 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1098.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:600px;border-radius:25px;border-style:none;}#medical_box_800:hover{}#medical_box_1098 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1098:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1098 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1098 
            
            #medical_box_1098 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1098 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1098:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1098.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619602186_4.png");
                }
            
            #medical_box_1098 .mode1-size_1098{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1098 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1098 > div{
               height:100%;
            }
            #medical_box_1098 .mode2-size_1098{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1098 .mode3-size_1098{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1098 .mode4-size_1098{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1098 .mode5-size_1098{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1098 .mode6-size_1098{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1098 .mode7-size_1098{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1098 .mode7-size_1098 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1098 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1098 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1098{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1098 span:hover{
                color:!important;
            }
            .custom2_1098{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1098 span:hover{
                color:;
            }
            #medical_box_1098 .mode-btn1_1098{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1098 .mode-btn1_1098 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1098 .mode-btn2_1098{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1098 .mode-btn2_1098 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1098 .div-btn-title_main_1098{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1098 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1098 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_244 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_244 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_244 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_244 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_244 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_244 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_244 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_244 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_244 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_244 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_244 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_244 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_244 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_244{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_244 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_244 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_244 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_244 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_244 .swiper-container{
                width:1200px;
            }
            #module_new_medical_244 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_244 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_244 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_244 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='339']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='339']:hover{;}.module[data-id_page='339']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='339'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='339'] 
            
            .module[data-id_page='339'] .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='339'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='339']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_245 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_245 .content_str{
				width:100%;
			}
            #module_new_medical_245 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_245 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_245 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_245 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_245 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_245 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_245 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_245 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_245 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_245 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_245 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_245 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_245 .new_medical_description a,#module_new_medical_245 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_245 .new_medical_description a:hover,#module_new_medical_245 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_245 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_245 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_1122 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1122 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1122 .background-img{
                border-radius:100px;
            }
        #medical_box_1122 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_717:hover .new_medical_title{}
                #medical_box_1122 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1122 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_1122.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_1122 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_1122 
            
            #medical_box_1122 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1122 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1122:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1122 .mode1-size_1122{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1122 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1122 > div{
               height:100%;
            }
            #medical_box_1122 .mode2-size_1122{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1122 .mode3-size_1122{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1122 .mode4-size_1122{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1122 .mode5-size_1122{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1122 .mode6-size_1122{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1122 .mode7-size_1122{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1122 .mode7-size_1122 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1122 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1122 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1122{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1122 span:hover{
                color:!important;
            }
            .custom2_1122{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1122 span:hover{
                color:;
            }
            #medical_box_1122 .mode-btn1_1122{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1122 .mode-btn1_1122 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1122 .mode-btn2_1122{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1122 .mode-btn2_1122 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1122 .div-btn-title_main_1122{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1122 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1122 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1121 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1121 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1121 .background-img{
                border-radius:25px;
            }
        #medical_box_1121 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_1121.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_716:hover{}
                #medical_box_1121:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1121 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1121 
            
            #medical_box_1121 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1121 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1121:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1121.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619578682_بنر رژیم آنلاین.png");
                }
            
            #medical_box_1121 .mode1-size_1121{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1121 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1121 > div{
               height:100%;
            }
            #medical_box_1121 .mode2-size_1121{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1121 .mode3-size_1121{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1121 .mode4-size_1121{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1121 .mode5-size_1121{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1121 .mode6-size_1121{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1121 .mode7-size_1121{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1121 .mode7-size_1121 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1121 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1121 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1121{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1121 span:hover{
                color:!important;
            }
            .custom2_1121{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1121 span:hover{
                color:;
            }
            #medical_box_1121 .mode-btn1_1121{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1121 .mode-btn1_1121 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1121 .mode-btn2_1121{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1121 .mode-btn2_1121 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1121 .div-btn-title_main_1121{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1121 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1121 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1132 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1132 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1132 .background-img{
                border-radius:;
            }
        #medical_box_1132 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_296:hover .new_medical_title{}
                #medical_box_1132 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1132 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_1132.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_1132:hover{}#medical_box_1132 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_799:hover .new_medical_description{}
                #medical_box_1132 
            
            #medical_box_1132 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1132 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1132:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1132 .mode1-size_1132{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1132 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1132 > div{
               height:100%;
            }
            #medical_box_1132 .mode2-size_1132{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1132 .mode3-size_1132{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1132 .mode4-size_1132{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1132 .mode5-size_1132{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1132 .mode6-size_1132{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1132 .mode7-size_1132{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1132 .mode7-size_1132 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1132 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1132 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1132{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1132 span:hover{
                color:!important;
            }
            .custom2_1132{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1132 span:hover{
                color:;
            }
            #medical_box_1132 .mode-btn1_1132{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1132 .mode-btn1_1132 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1132 .mode-btn2_1132{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1132 .mode-btn2_1132 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1132 .div-btn-title_main_1132{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1132 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1132 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1134 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1134 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1134 .background-img{
                border-radius:;
            }
        #medical_box_1134 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;height:15px;line-height:33px;}#medical_box_803:hover .new_medical_title{}
                #medical_box_1134 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1134 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_1134.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#d9f7be;}#medical_box_803:hover{}#medical_box_1134 .new_medical_description{color:#000;font-weight:500;font-size:16px;line-height:30px;text-align:justify;padding-top:20px;padding-left:600px;border-style:solid;border-color:#555;}#medical_box_1134:hover .new_medical_description{}
                #medical_box_1134 
            
            #medical_box_1134 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1134 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1134:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1134 .mode1-size_1134{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1134 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1134 > div{
               height:100%;
            }
            #medical_box_1134 .mode2-size_1134{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1134 .mode3-size_1134{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1134 .mode4-size_1134{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1134 .mode5-size_1134{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1134 .mode6-size_1134{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1134 .mode7-size_1134{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1134 .mode7-size_1134 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1134 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1134 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1134{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1134 span:hover{
                color:!important;
            }
            .custom2_1134{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1134 span:hover{
                color:;
            }
            #medical_box_1134 .mode-btn1_1134{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1134 .mode-btn1_1134 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1134 .mode-btn2_1134{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1134 .mode-btn2_1134 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1134 .div-btn-title_main_1134{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1134 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1134 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1133 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1133 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1133 .background-img{
                border-radius:30px;
            }
        #medical_box_1133 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:15px;padding-right:250px;height:15px;}#medical_box_1133:hover .new_medical_title{}
                #medical_box_1133 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1133 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:25px;margin-top:15px;border-style:solid;border-color:#000;}#medical_box_1133:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1133.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:30px;border-style:dotted;border-color:#ffccc7;}#medical_box_339:hover{}#medical_box_1133 .new_medical_description{color:#000;font-weight:500;line-height:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_802:hover .new_medical_description{}
                #medical_box_1133 
            
            #medical_box_1133 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1133 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1133:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1133 .mode1-size_1133{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1133 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1133 > div{
               height:100%;
            }
            #medical_box_1133 .mode2-size_1133{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1133 .mode3-size_1133{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1133 .mode4-size_1133{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1133 .mode5-size_1133{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1133 .mode6-size_1133{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1133 .mode7-size_1133{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1133 .mode7-size_1133 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1133 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1133 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1133{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1133 span:hover{
                color:!important;
            }
            .custom2_1133{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1133 span:hover{
                color:;
            }
            #medical_box_1133 .mode-btn1_1133{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1133 .mode-btn1_1133 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1133 .mode-btn2_1133{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1133 .mode-btn2_1133 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1133 .div-btn-title_main_1133{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1133 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1133 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1135 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1135 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1135 .background-img{
                border-radius:;
            }
        #medical_box_1135 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:35px;}#medical_box_804:hover .new_medical_title{}
                #medical_box_1135 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1135 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1135.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_802:hover{}#medical_box_1135 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1135 
            
            #medical_box_1135 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1135 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1135:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1135 .mode1-size_1135{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1135 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1135 > div{
               height:100%;
            }
            #medical_box_1135 .mode2-size_1135{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1135 .mode3-size_1135{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1135 .mode4-size_1135{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1135 .mode5-size_1135{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1135 .mode6-size_1135{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1135 .mode7-size_1135{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1135 .mode7-size_1135 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1135 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1135 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1135{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1135 span:hover{
                color:!important;
            }
            .custom2_1135{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1135 span:hover{
                color:;
            }
            #medical_box_1135 .mode-btn1_1135{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1135 .mode-btn1_1135 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1135 .mode-btn2_1135{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1135 .mode-btn2_1135 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1135 .div-btn-title_main_1135{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1135 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1135 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1137 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1137 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1137 .background-img{
                border-radius:25px;
            }
        #medical_box_1137 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1137.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:450px;border-radius:25px;border-style:none;}#medical_box_806:hover{}#medical_box_1137 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1137:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1137 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1137 
            
            #medical_box_1137 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1137 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1137:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1137.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619747351_ثبت نام.png");
                }
            
            #medical_box_1137 .mode1-size_1137{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1137 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1137 > div{
               height:100%;
            }
            #medical_box_1137 .mode2-size_1137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1137 .mode3-size_1137{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1137 .mode4-size_1137{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1137 .mode5-size_1137{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1137 .mode6-size_1137{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1137 .mode7-size_1137{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1137 .mode7-size_1137 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1137 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1137 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1137 span:hover{
                color:!important;
            }
            .custom2_1137{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1137 span:hover{
                color:;
            }
            #medical_box_1137 .mode-btn1_1137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1137 .mode-btn1_1137 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1137 .mode-btn2_1137{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1137 .mode-btn2_1137 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1137 .div-btn-title_main_1137{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1137 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1137 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1140 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1140 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1140 .background-img{
                border-radius:;
            }
        #medical_box_1140 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1140 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1140 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1140.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:305px;padding-top:30px;border-style:none;border-color:#ffccc7;}#medical_box_805:hover{}#medical_box_1140 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1140:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1140 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1140 
            
            #medical_box_1140 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1140 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1140:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1140.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619747126_تناسب اندام.png");
                }
            
            #medical_box_1140 .mode1-size_1140{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1140 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1140 > div{
               height:100%;
            }
            #medical_box_1140 .mode2-size_1140{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1140 .mode3-size_1140{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1140 .mode4-size_1140{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1140 .mode5-size_1140{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1140 .mode6-size_1140{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1140 .mode7-size_1140{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1140 .mode7-size_1140 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1140 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1140 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1140{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1140 span:hover{
                color:!important;
            }
            .custom2_1140{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1140 span:hover{
                color:;
            }
            #medical_box_1140 .mode-btn1_1140{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1140 .mode-btn1_1140 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1140 .mode-btn2_1140{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1140 .mode-btn2_1140 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1140 .div-btn-title_main_1140{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1140 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1140 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1139 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1139 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1139 .background-img{
                border-radius:;
            }
        #medical_box_1139 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1139 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1139 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1139.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:545px;border-style:none;border-color:#ffccc7;}#medical_box_808:hover{}#medical_box_1139 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1139:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1139 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1139 
            
            #medical_box_1139 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1139 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1139:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1139.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619769211_انواع بیماری ها.png");
                }
            
            #medical_box_1139 .mode1-size_1139{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1139 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1139 > div{
               height:100%;
            }
            #medical_box_1139 .mode2-size_1139{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1139 .mode3-size_1139{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1139 .mode4-size_1139{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1139 .mode5-size_1139{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1139 .mode6-size_1139{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1139 .mode7-size_1139{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1139 .mode7-size_1139 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1139 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1139 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1139{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1139 span:hover{
                color:!important;
            }
            .custom2_1139{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1139 span:hover{
                color:;
            }
            #medical_box_1139 .mode-btn1_1139{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1139 .mode-btn1_1139 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1139 .mode-btn2_1139{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1139 .mode-btn2_1139 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1139 .div-btn-title_main_1139{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1139 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1139 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1136 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1136 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1136 .background-img{
                border-radius:;
            }
        #medical_box_1136 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1136 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1136 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_1136:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1136.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:390px;border-style:none;border-color:#ffccc7;}#medical_box_1136:hover{}#medical_box_1136 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1136:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1136 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1136 
            
            #medical_box_1136 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1136 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1136:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1136.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619767410_رژیم های خاص.png");
                }
            
            #medical_box_1136 .mode1-size_1136{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1136 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1136 > div{
               height:100%;
            }
            #medical_box_1136 .mode2-size_1136{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1136 .mode3-size_1136{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1136 .mode4-size_1136{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1136 .mode5-size_1136{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1136 .mode6-size_1136{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1136 .mode7-size_1136{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1136 .mode7-size_1136 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1136 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1136 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1136{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1136 span:hover{
                color:!important;
            }
            .custom2_1136{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1136 span:hover{
                color:;
            }
            #medical_box_1136 .mode-btn1_1136{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1136 .mode-btn1_1136 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1136 .mode-btn2_1136{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1136 .mode-btn2_1136 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1136 .div-btn-title_main_1136{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1136 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1136 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1141 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1141 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1141 .background-img{
                border-radius:;
            }
        #medical_box_1141 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1141 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1141 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1141.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:386px;padding-top:5px;border-style:none;border-color:#ffccc7;}#medical_box_810:hover{}#medical_box_1141 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1141:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1141 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1141 
            
            #medical_box_1141 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1141 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1141:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1141.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619789489_رژیم ورزشکاری.png");
                }
            
            #medical_box_1141 .mode1-size_1141{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1141 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1141 > div{
               height:100%;
            }
            #medical_box_1141 .mode2-size_1141{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1141 .mode3-size_1141{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1141 .mode4-size_1141{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1141 .mode5-size_1141{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1141 .mode6-size_1141{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1141 .mode7-size_1141{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1141 .mode7-size_1141 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1141 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1141 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1141{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1141 span:hover{
                color:!important;
            }
            .custom2_1141{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1141 span:hover{
                color:;
            }
            #medical_box_1141 .mode-btn1_1141{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1141 .mode-btn1_1141 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1141 .mode-btn2_1141{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1141 .mode-btn2_1141 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1141 .div-btn-title_main_1141{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1141 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1141 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1142 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1142 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1142 .background-img{
                border-radius:;
            }
        #medical_box_1142 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1142 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1142 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1142.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:321px;padding-top:7px;border-style:none;border-color:#ffccc7;}#medical_box_811:hover{}#medical_box_1142 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1142:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1142 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1142 
            
            #medical_box_1142 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1142 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1142:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1142.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619791117_دوران های زندگی.png");
                }
            
            #medical_box_1142 .mode1-size_1142{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1142 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1142 > div{
               height:100%;
            }
            #medical_box_1142 .mode2-size_1142{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1142 .mode3-size_1142{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1142 .mode4-size_1142{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1142 .mode5-size_1142{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1142 .mode6-size_1142{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1142 .mode7-size_1142{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1142 .mode7-size_1142 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1142 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1142 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1142{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1142 span:hover{
                color:!important;
            }
            .custom2_1142{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1142 span:hover{
                color:;
            }
            #medical_box_1142 .mode-btn1_1142{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1142 .mode-btn1_1142 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1142 .mode-btn2_1142{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1142 .mode-btn2_1142 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1142 .div-btn-title_main_1142{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1142 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1142 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1143 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1143 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1143 .background-img{
                border-radius:;
            }
        #medical_box_1143 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1143 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1143 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1143.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;padding-top:60px;border-style:none;border-color:#ffccc7;}#medical_box_812:hover{}#medical_box_1143 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1143:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1143 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1143 
            
            #medical_box_1143 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1143 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1143:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1143.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619792069_بارداری.png");
                }
            
            #medical_box_1143 .mode1-size_1143{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1143 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1143 > div{
               height:100%;
            }
            #medical_box_1143 .mode2-size_1143{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1143 .mode3-size_1143{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1143 .mode4-size_1143{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1143 .mode5-size_1143{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1143 .mode6-size_1143{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1143 .mode7-size_1143{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1143 .mode7-size_1143 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1143 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1143 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1143{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1143 span:hover{
                color:!important;
            }
            .custom2_1143{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1143 span:hover{
                color:;
            }
            #medical_box_1143 .mode-btn1_1143{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1143 .mode-btn1_1143 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1143 .mode-btn2_1143{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1143 .mode-btn2_1143 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1143 .div-btn-title_main_1143{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1143 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1143 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1144 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1144 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1144 .background-img{
                border-radius:;
            }
        #medical_box_1144 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1144 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1144 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1144.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:300px;padding-top:10px;border-style:none;border-color:#ffccc7;}#medical_box_813:hover{}#medical_box_1144 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1144:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1144 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1144 
            
            #medical_box_1144 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1144 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1144:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1144.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619793341_شیردهی.png");
                }
            
            #medical_box_1144 .mode1-size_1144{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1144 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1144 > div{
               height:100%;
            }
            #medical_box_1144 .mode2-size_1144{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1144 .mode3-size_1144{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1144 .mode4-size_1144{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1144 .mode5-size_1144{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1144 .mode6-size_1144{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1144 .mode7-size_1144{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1144 .mode7-size_1144 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1144 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1144 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1144{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1144 span:hover{
                color:!important;
            }
            .custom2_1144{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1144 span:hover{
                color:;
            }
            #medical_box_1144 .mode-btn1_1144{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1144 .mode-btn1_1144 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1144 .mode-btn2_1144{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1144 .mode-btn2_1144 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1144 .div-btn-title_main_1144{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1144 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1144 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1145 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1145 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1145 .background-img{
                border-radius:30px;
            }
        #medical_box_1145 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:15px;padding-right:150px;height:15px;}#medical_box_1145:hover .new_medical_title{}
                #medical_box_1145 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1145 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:25px;margin-top:15px;border-style:solid;border-color:#000;}#medical_box_1133:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1145.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:30px;border-style:dotted;border-color:#ffccc7;}#medical_box_339:hover{}#medical_box_1145 .new_medical_description{color:#000;font-weight:500;line-height:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_802:hover .new_medical_description{}
                #medical_box_1145 
            
            #medical_box_1145 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1145 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1145:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1145 .mode1-size_1145{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1145 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1145 > div{
               height:100%;
            }
            #medical_box_1145 .mode2-size_1145{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1145 .mode3-size_1145{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1145 .mode4-size_1145{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1145 .mode5-size_1145{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1145 .mode6-size_1145{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1145 .mode7-size_1145{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1145 .mode7-size_1145 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1145 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1145 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1145{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1145 span:hover{
                color:!important;
            }
            .custom2_1145{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1145 span:hover{
                color:;
            }
            #medical_box_1145 .mode-btn1_1145{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1145 .mode-btn1_1145 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1145 .mode-btn2_1145{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1145 .mode-btn2_1145 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1145 .div-btn-title_main_1145{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1145 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1145 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1138 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1138 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1138 .background-img{
                border-radius:;
            }
        #medical_box_1138 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_1138:hover .new_medical_title{}
                #medical_box_1138 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1138 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;border-style:solid;border-color:#000;}#medical_box_1138:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1138.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_1138:hover{}#medical_box_1138 .new_medical_description{color:#000;font-weight:500;font-size:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_1138:hover .new_medical_description{}
                #medical_box_1138 
            
            #medical_box_1138 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1138 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1138:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1138 .mode1-size_1138{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1138 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1138 > div{
               height:100%;
            }
            #medical_box_1138 .mode2-size_1138{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1138 .mode3-size_1138{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1138 .mode4-size_1138{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1138 .mode5-size_1138{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1138 .mode6-size_1138{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1138 .mode7-size_1138{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1138 .mode7-size_1138 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1138 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1138 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1138{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1138 span:hover{
                color:!important;
            }
            .custom2_1138{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1138 span:hover{
                color:;
            }
            #medical_box_1138 .mode-btn1_1138{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1138 .mode-btn1_1138 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1138 .mode-btn2_1138{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1138 .mode-btn2_1138 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1138 .div-btn-title_main_1138{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1138 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1138 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1146 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1146 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1146 .background-img{
                border-radius:25px;
            }
        #medical_box_1146 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1146.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:800px;padding-left:2px;border-radius:25px;border-style:none;}#medical_box_815:hover{}#medical_box_1146 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1146:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1146 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1146 
            
            #medical_box_1146 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1146 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1146:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1146.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619830172_مشخصات فردی.png");
                }
            
            #medical_box_1146 .mode1-size_1146{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1146 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1146 > div{
               height:100%;
            }
            #medical_box_1146 .mode2-size_1146{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1146 .mode3-size_1146{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1146 .mode4-size_1146{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1146 .mode5-size_1146{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1146 .mode6-size_1146{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1146 .mode7-size_1146{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1146 .mode7-size_1146 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1146 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1146 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1146{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1146 span:hover{
                color:!important;
            }
            .custom2_1146{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1146 span:hover{
                color:;
            }
            #medical_box_1146 .mode-btn1_1146{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1146 .mode-btn1_1146 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1146 .mode-btn2_1146{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1146 .mode-btn2_1146 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1146 .div-btn-title_main_1146{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1146 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1146 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1147 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1147 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1147 .background-img{
                border-radius:;
            }
        #medical_box_1147 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;}#medical_box_1147:hover .new_medical_title{}
                #medical_box_1147 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1147 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1147.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1147 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:30px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_816:hover .new_medical_description{}
                #medical_box_1147 
            
            #medical_box_1147 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1147 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1147:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1147 .mode1-size_1147{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1147 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1147 > div{
               height:100%;
            }
            #medical_box_1147 .mode2-size_1147{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1147 .mode3-size_1147{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1147 .mode4-size_1147{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1147 .mode5-size_1147{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1147 .mode6-size_1147{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1147 .mode7-size_1147{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1147 .mode7-size_1147 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1147 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1147 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1147{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1147 span:hover{
                color:!important;
            }
            .custom2_1147{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1147 span:hover{
                color:;
            }
            #medical_box_1147 .mode-btn1_1147{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1147 .mode-btn1_1147 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1147 .mode-btn2_1147{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1147 .mode-btn2_1147 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1147 .div-btn-title_main_1147{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1147 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1147 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1148 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1148 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1148 .background-img{
                border-radius:;
            }
        #medical_box_1148 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_816:hover .new_medical_title{}
                #medical_box_1148 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1148 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1148.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1148 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:30px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_816:hover .new_medical_description{}
                #medical_box_1148 
            
            #medical_box_1148 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1148 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1148:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1148 .mode1-size_1148{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1148 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1148 > div{
               height:100%;
            }
            #medical_box_1148 .mode2-size_1148{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1148 .mode3-size_1148{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1148 .mode4-size_1148{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1148 .mode5-size_1148{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1148 .mode6-size_1148{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1148 .mode7-size_1148{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1148 .mode7-size_1148 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1148 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1148 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1148{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1148 span:hover{
                color:!important;
            }
            .custom2_1148{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1148 span:hover{
                color:;
            }
            #medical_box_1148 .mode-btn1_1148{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1148 .mode-btn1_1148 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1148 .mode-btn2_1148{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1148 .mode-btn2_1148 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1148 .div-btn-title_main_1148{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1148 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1148 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1149 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1149 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1149 .background-img{
                border-radius:30px;
            }
        #medical_box_1149 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:15px;padding-right:100px;height:15px;}#medical_box_1149:hover .new_medical_title{}
                #medical_box_1149 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1149 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:25px;margin-top:15px;border-style:solid;border-color:#000;}#medical_box_1133:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1149.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;border-radius:30px;border-style:dotted;border-color:#ffccc7;}#medical_box_339:hover{}#medical_box_1149 .new_medical_description{color:#000;font-weight:500;line-height:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_802:hover .new_medical_description{}
                #medical_box_1149 
            
            #medical_box_1149 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1149 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1149:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1149 .mode1-size_1149{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1149 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1149 > div{
               height:100%;
            }
            #medical_box_1149 .mode2-size_1149{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1149 .mode3-size_1149{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1149 .mode4-size_1149{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1149 .mode5-size_1149{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1149 .mode6-size_1149{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1149 .mode7-size_1149{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1149 .mode7-size_1149 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1149 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1149 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1149{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1149 span:hover{
                color:!important;
            }
            .custom2_1149{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1149 span:hover{
                color:;
            }
            #medical_box_1149 .mode-btn1_1149{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1149 .mode-btn1_1149 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1149 .mode-btn2_1149{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1149 .mode-btn2_1149 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1149 .div-btn-title_main_1149{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1149 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1149 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1154 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1154 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1154 .background-img{
                border-radius:;
            }
        #medical_box_1154 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_1138:hover .new_medical_title{}
                #medical_box_1154 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1154 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;border-style:solid;border-color:#000;}#medical_box_1138:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1154.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_1138:hover{}#medical_box_1154 .new_medical_description{color:#000;font-weight:500;font-size:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_1138:hover .new_medical_description{}
                #medical_box_1154 
            
            #medical_box_1154 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1154 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1154:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1154 .mode1-size_1154{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1154 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1154 > div{
               height:100%;
            }
            #medical_box_1154 .mode2-size_1154{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1154 .mode3-size_1154{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1154 .mode4-size_1154{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1154 .mode5-size_1154{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1154 .mode6-size_1154{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1154 .mode7-size_1154{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1154 .mode7-size_1154 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1154 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1154 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1154{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1154 span:hover{
                color:!important;
            }
            .custom2_1154{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1154 span:hover{
                color:;
            }
            #medical_box_1154 .mode-btn1_1154{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1154 .mode-btn1_1154 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1154 .mode-btn2_1154{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1154 .mode-btn2_1154 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1154 .div-btn-title_main_1154{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1154 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1154 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1150 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1150 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1150 .background-img{
                border-radius:25px;
            }
        #medical_box_1150 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1150.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:600px;padding-left:2px;border-radius:25px;border-style:none;}#medical_box_819:hover{}#medical_box_1150 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1150:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1150 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1150 
            
            #medical_box_1150 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1150 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1150:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1150.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619848859_مشخصات جسمانی.png");
                }
            
            #medical_box_1150 .mode1-size_1150{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1150 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1150 > div{
               height:100%;
            }
            #medical_box_1150 .mode2-size_1150{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1150 .mode3-size_1150{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1150 .mode4-size_1150{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1150 .mode5-size_1150{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1150 .mode6-size_1150{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1150 .mode7-size_1150{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1150 .mode7-size_1150 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1150 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1150 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1150{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1150 span:hover{
                color:!important;
            }
            .custom2_1150{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1150 span:hover{
                color:;
            }
            #medical_box_1150 .mode-btn1_1150{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1150 .mode-btn1_1150 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1150 .mode-btn2_1150{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1150 .mode-btn2_1150 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1150 .div-btn-title_main_1150{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1150 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1150 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1151 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1151 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1151 .background-img{
                border-radius:;
            }
        #medical_box_1151 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:25px;margin-bottom:15px;padding-right:15px;height:15px;}#medical_box_818:hover .new_medical_title{}
                #medical_box_1151 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1151 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;margin-top:24px;border-style:solid;border-color:#000;}#medical_box_818:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1151.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1151 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:15px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_814:hover .new_medical_description{}
                #medical_box_1151 
            
            #medical_box_1151 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1151 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1151:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1151 .mode1-size_1151{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1151 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1151 > div{
               height:100%;
            }
            #medical_box_1151 .mode2-size_1151{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1151 .mode3-size_1151{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1151 .mode4-size_1151{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1151 .mode5-size_1151{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1151 .mode6-size_1151{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1151 .mode7-size_1151{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1151 .mode7-size_1151 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1151 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1151 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1151{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1151 span:hover{
                color:!important;
            }
            .custom2_1151{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1151 span:hover{
                color:;
            }
            #medical_box_1151 .mode-btn1_1151{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1151 .mode-btn1_1151 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1151 .mode-btn2_1151{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1151 .mode-btn2_1151 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1151 .div-btn-title_main_1151{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1151 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1151 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1155 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1155 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1155 .background-img{
                border-radius:;
            }
        #medical_box_1155 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:30px;line-height:35px;}#medical_box_1155:hover .new_medical_title{}
                #medical_box_1155 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1155 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;border-style:solid;border-color:#000;}#medical_box_1155:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1155.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1155 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:15px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_814:hover .new_medical_description{}
                #medical_box_1155 
            
            #medical_box_1155 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1155 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1155:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1155 .mode1-size_1155{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1155 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1155 > div{
               height:100%;
            }
            #medical_box_1155 .mode2-size_1155{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1155 .mode3-size_1155{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1155 .mode4-size_1155{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1155 .mode5-size_1155{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1155 .mode6-size_1155{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1155 .mode7-size_1155{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1155 .mode7-size_1155 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1155 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1155 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1155{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1155 span:hover{
                color:!important;
            }
            .custom2_1155{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1155 span:hover{
                color:;
            }
            #medical_box_1155 .mode-btn1_1155{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1155 .mode-btn1_1155 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1155 .mode-btn2_1155{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1155 .mode-btn2_1155 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1155 .div-btn-title_main_1155{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1155 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1155 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1152 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1152 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1152 .background-img{
                border-radius:;
            }
        #medical_box_1152 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:25px;margin-bottom:15px;padding-right:15px;height:15px;}#medical_box_818:hover .new_medical_title{}
                #medical_box_1152 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1152 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;border-style:solid;border-color:#000;}#medical_box_1152:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1152.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_822:hover{}#medical_box_1152 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:15px;border-style:solid;border-color:#555;}#medical_box_822:hover .new_medical_description{}
                #medical_box_1152 
            
            #medical_box_1152 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1152 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1152:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1152 .mode1-size_1152{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1152 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1152 > div{
               height:100%;
            }
            #medical_box_1152 .mode2-size_1152{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1152 .mode3-size_1152{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1152 .mode4-size_1152{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1152 .mode5-size_1152{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1152 .mode6-size_1152{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1152 .mode7-size_1152{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1152 .mode7-size_1152 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1152 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1152 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1152{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1152 span:hover{
                color:!important;
            }
            .custom2_1152{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1152 span:hover{
                color:;
            }
            #medical_box_1152 .mode-btn1_1152{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1152 .mode-btn1_1152 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1152 .mode-btn2_1152{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1152 .mode-btn2_1152 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1152 .div-btn-title_main_1152{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1152 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1152 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1161 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1161 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1161 .background-img{
                border-radius:25px;
            }
        #medical_box_1161 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1161.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:450px;border-radius:25px;border-style:none;}#medical_box_1161:hover{}#medical_box_1161 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1161:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1161 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1161 
            
            #medical_box_1161 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1161 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1161:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1161.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1621088732_دور کمر،ران.png");
                }
            
            #medical_box_1161 .mode1-size_1161{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1161 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1161 > div{
               height:100%;
            }
            #medical_box_1161 .mode2-size_1161{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1161 .mode3-size_1161{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1161 .mode4-size_1161{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1161 .mode5-size_1161{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1161 .mode6-size_1161{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1161 .mode7-size_1161{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1161 .mode7-size_1161 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1161 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1161 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1161{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1161 span:hover{
                color:!important;
            }
            .custom2_1161{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1161 span:hover{
                color:;
            }
            #medical_box_1161 .mode-btn1_1161{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1161 .mode-btn1_1161 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1161 .mode-btn2_1161{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1161 .mode-btn2_1161 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1161 .div-btn-title_main_1161{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1161 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1161 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1153 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1153 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1153 .background-img{
                border-radius:;
            }
        #medical_box_1153 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:15px;margin-bottom:15px;padding-right:15px;height:15px;}#medical_box_823:hover .new_medical_title{}
                #medical_box_1153 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1153 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;margin-top:15px;border-style:solid;border-color:#000;}#medical_box_823:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1153.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_823:hover{}#medical_box_1153 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-right:25px;padding-left:25px;border-style:solid;border-color:#555;}#medical_box_823:hover .new_medical_description{}
                #medical_box_1153:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1153 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1153 
            
            #medical_box_1153 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1153 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1153:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1153.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619933898_مشخصات جسمانی.png");
                }
            
            #medical_box_1153 .mode1-size_1153{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1153 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1153 > div{
               height:100%;
            }
            #medical_box_1153 .mode2-size_1153{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1153 .mode3-size_1153{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1153 .mode4-size_1153{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1153 .mode5-size_1153{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1153 .mode6-size_1153{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1153 .mode7-size_1153{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1153 .mode7-size_1153 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1153 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1153 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1153{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1153 span:hover{
                color:!important;
            }
            .custom2_1153{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1153 span:hover{
                color:;
            }
            #medical_box_1153 .mode-btn1_1153{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1153 .mode-btn1_1153 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1153 .mode-btn2_1153{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1153 .mode-btn2_1153 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1153 .div-btn-title_main_1153{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1153 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1153 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1156 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1156 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1156 .background-img{
                border-radius:;
            }
        #medical_box_1156 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:15px;margin-bottom:15px;padding-right:15px;height:15px;}#medical_box_823:hover .new_medical_title{}
                #medical_box_1156 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1156 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;margin-top:15px;border-style:solid;border-color:#000;}#medical_box_823:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1156.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_1156:hover{}#medical_box_1156 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-right:25px;padding-left:25px;border-style:solid;border-color:#555;}#medical_box_823:hover .new_medical_description{}
                #medical_box_1156:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1156 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1156 
            
            #medical_box_1156 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1156 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1156:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1156.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620356147_شیردهی - جسمانی.png");
                }
            
            #medical_box_1156 .mode1-size_1156{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1156 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1156 > div{
               height:100%;
            }
            #medical_box_1156 .mode2-size_1156{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1156 .mode3-size_1156{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1156 .mode4-size_1156{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1156 .mode5-size_1156{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1156 .mode6-size_1156{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1156 .mode7-size_1156{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1156 .mode7-size_1156 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1156 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1156 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1156{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1156 span:hover{
                color:!important;
            }
            .custom2_1156{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1156 span:hover{
                color:;
            }
            #medical_box_1156 .mode-btn1_1156{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1156 .mode-btn1_1156 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1156 .mode-btn2_1156{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1156 .mode-btn2_1156 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1156 .div-btn-title_main_1156{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1156 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1156 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_245 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_245 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_245 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_245 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_245 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_245 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_245 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_245 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_245 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_245 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_245 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_245 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_245 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_245{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_245 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_245 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_245 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_245 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_245 .swiper-container{
                width:1200px;
            }
            #module_new_medical_245 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_245 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_245 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_245 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='335']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='335']:hover{;}.module[data-id_page='335']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='335'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='335'] 
            
            .module[data-id_page='335'] .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='335'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='335']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_241 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_241 .content_str{
				width:100%;
			}
            #module_new_medical_241 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_241 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_241 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_241 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_241 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_241 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_241 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_241 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_241 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_241 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_241 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_241 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_241 .new_medical_description a,#module_new_medical_241 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_241 .new_medical_description a:hover,#module_new_medical_241 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_241 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_241 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_990 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_990 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_990 .background-img{
                border-radius:100px;
            }
        #medical_box_990 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_990:hover .new_medical_title{}
                #medical_box_990 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_990 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_990.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_990 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_990 
            
            #medical_box_990 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_990 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_990:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_990 .mode1-size_990{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_990 .new_medical_box > div{
                width:100%;
            }
             #medical_box_990 > div{
               height:100%;
            }
            #medical_box_990 .mode2-size_990{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_990 .mode3-size_990{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_990 .mode4-size_990{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_990 .mode5-size_990{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_990 .mode6-size_990{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_990 .mode7-size_990{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_990 .mode7-size_990 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_990 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_990 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_990{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_990 span:hover{
                color:!important;
            }
            .custom2_990{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_990 span:hover{
                color:;
            }
            #medical_box_990 .mode-btn1_990{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_990 .mode-btn1_990 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_990 .mode-btn2_990{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_990 .mode-btn2_990 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_990 .div-btn-title_main_990{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_990 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_990 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_989 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_989 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_989 .background-img{
                border-radius:25px;
            }
        #medical_box_989 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_989.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_716:hover{}
                #medical_box_989:hover .background-img {
                    filter:none;
                }
            
                #medical_box_989 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_989 
            
            #medical_box_989 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_989 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_989:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_989.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619578682_بنر رژیم آنلاین.png");
                }
            
            #medical_box_989 .mode1-size_989{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_989 .new_medical_box > div{
                width:100%;
            }
             #medical_box_989 > div{
               height:100%;
            }
            #medical_box_989 .mode2-size_989{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_989 .mode3-size_989{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_989 .mode4-size_989{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_989 .mode5-size_989{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_989 .mode6-size_989{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_989 .mode7-size_989{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_989 .mode7-size_989 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_989 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_989 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_989{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_989 span:hover{
                color:!important;
            }
            .custom2_989{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_989 span:hover{
                color:;
            }
            #medical_box_989 .mode-btn1_989{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_989 .mode-btn1_989 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_989 .mode-btn2_989{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_989 .mode-btn2_989 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_989 .div-btn-title_main_989{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_989 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_989 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1000 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1000 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1000 .background-img{
                border-radius:;
            }
        #medical_box_1000 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_296:hover .new_medical_title{}
                #medical_box_1000 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1000 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_1000.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_1000:hover{}#medical_box_1000 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_799:hover .new_medical_description{}
                #medical_box_1000 
            
            #medical_box_1000 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1000 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1000:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1000 .mode1-size_1000{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1000 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1000 > div{
               height:100%;
            }
            #medical_box_1000 .mode2-size_1000{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1000 .mode3-size_1000{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1000 .mode4-size_1000{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1000 .mode5-size_1000{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1000 .mode6-size_1000{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1000 .mode7-size_1000{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1000 .mode7-size_1000 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1000 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1000 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1000{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1000 span:hover{
                color:!important;
            }
            .custom2_1000{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1000 span:hover{
                color:;
            }
            #medical_box_1000 .mode-btn1_1000{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1000 .mode-btn1_1000 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1000 .mode-btn2_1000{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1000 .mode-btn2_1000 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1000 .div-btn-title_main_1000{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1000 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1000 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1001 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1001 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1001 .background-img{
                border-radius:30px;
            }
        #medical_box_1001 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:15px;padding-right:100px;height:15px;}#medical_box_1001:hover .new_medical_title{}
                #medical_box_1001 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1001 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;margin-top:15px;border-style:none;border-color:#000;}#medical_box_1001:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1001.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:30px;border-style:none;border-color:#ffccc7;}#medical_box_1001:hover{}#medical_box_1001 .new_medical_description{color:#000;font-weight:500;line-height:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_802:hover .new_medical_description{}
                #medical_box_1001 
            
            #medical_box_1001 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1001 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1001:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1001 .mode1-size_1001{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1001 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1001 > div{
               height:100%;
            }
            #medical_box_1001 .mode2-size_1001{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1001 .mode3-size_1001{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1001 .mode4-size_1001{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1001 .mode5-size_1001{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1001 .mode6-size_1001{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1001 .mode7-size_1001{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1001 .mode7-size_1001 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1001 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1001 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1001{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1001 span:hover{
                color:!important;
            }
            .custom2_1001{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1001 span:hover{
                color:;
            }
            #medical_box_1001 .mode-btn1_1001{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1001 .mode-btn1_1001 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1001 .mode-btn2_1001{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1001 .mode-btn2_1001 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1001 .div-btn-title_main_1001{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1001 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1001 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1003 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1003 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1003 .background-img{
                border-radius:;
            }
        #medical_box_1003 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;line-height:35px;}#medical_box_1003:hover .new_medical_title{}
                #medical_box_1003 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1003 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;border-style:none;border-color:#000;}#medical_box_1003:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1003.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_802:hover{}#medical_box_1003 .new_medical_description{color:#000;font-weight:500;height:0px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_1003:hover .new_medical_description{}
                #medical_box_1003 
            
            #medical_box_1003 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1003 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1003:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1003 .mode1-size_1003{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1003 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1003 > div{
               height:100%;
            }
            #medical_box_1003 .mode2-size_1003{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1003 .mode3-size_1003{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1003 .mode4-size_1003{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1003 .mode5-size_1003{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1003 .mode6-size_1003{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1003 .mode7-size_1003{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1003 .mode7-size_1003 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1003 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1003 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1003{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1003 span:hover{
                color:!important;
            }
            .custom2_1003{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1003 span:hover{
                color:;
            }
            #medical_box_1003 .mode-btn1_1003{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1003 .mode-btn1_1003 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1003 .mode-btn2_1003{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1003 .mode-btn2_1003 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1003 .div-btn-title_main_1003{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1003 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1003 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1005 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1005 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1005 .background-img{
                border-radius:25px;
            }
        #medical_box_1005 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1005.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:550px;border-radius:25px;border-style:none;}#medical_box_1005:hover{}#medical_box_1005 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1005:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1005 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1005 
            
            #medical_box_1005 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1005 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1005:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1005.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620556298_محدودیت ها.png");
                }
            
            #medical_box_1005 .mode1-size_1005{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1005 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1005 > div{
               height:100%;
            }
            #medical_box_1005 .mode2-size_1005{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1005 .mode3-size_1005{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1005 .mode4-size_1005{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1005 .mode5-size_1005{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1005 .mode6-size_1005{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1005 .mode7-size_1005{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1005 .mode7-size_1005 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1005 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1005 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1005{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1005 span:hover{
                color:!important;
            }
            .custom2_1005{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1005 span:hover{
                color:;
            }
            #medical_box_1005 .mode-btn1_1005{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1005 .mode-btn1_1005 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1005 .mode-btn2_1005{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1005 .mode-btn2_1005 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1005 .div-btn-title_main_1005{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1005 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1005 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1008 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1008 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1008 .background-img{
                border-radius:;
            }
        #medical_box_1008 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:35px;}#medical_box_1008:hover .new_medical_title{}
                #medical_box_1008 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1008 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1008.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:305px;padding-top:30px;border-style:none;border-color:#ffccc7;}#medical_box_805:hover{}#medical_box_1008 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_804:hover .new_medical_description{}
                #medical_box_1008 
            
            #medical_box_1008 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1008 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1008:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1008 .mode1-size_1008{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1008 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1008 > div{
               height:100%;
            }
            #medical_box_1008 .mode2-size_1008{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1008 .mode3-size_1008{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1008 .mode4-size_1008{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1008 .mode5-size_1008{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1008 .mode6-size_1008{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1008 .mode7-size_1008{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1008 .mode7-size_1008 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1008 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1008 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1008{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1008 span:hover{
                color:!important;
            }
            .custom2_1008{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1008 span:hover{
                color:;
            }
            #medical_box_1008 .mode-btn1_1008{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1008 .mode-btn1_1008 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1008 .mode-btn2_1008{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1008 .mode-btn2_1008 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1008 .div-btn-title_main_1008{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1008 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1008 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1007 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1007 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1007 .background-img{
                border-radius:;
            }
        #medical_box_1007 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1007 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1007 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1007.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:430px;padding-top:5px;padding-right:20px;padding-left:20px;border-style:none;border-color:#ffccc7;}#medical_box_1007:hover{}#medical_box_1007 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;padding-top:20px;padding-right:20px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_1007:hover .new_medical_description{}
                #medical_box_1007:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1007 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1007 
            
            #medical_box_1007 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1007 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1007:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1007.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620542915_رژیم درخواستی.png");
                }
            
            #medical_box_1007 .mode1-size_1007{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1007 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1007 > div{
               height:100%;
            }
            #medical_box_1007 .mode2-size_1007{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1007 .mode3-size_1007{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1007 .mode4-size_1007{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1007 .mode5-size_1007{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1007 .mode6-size_1007{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1007 .mode7-size_1007{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1007 .mode7-size_1007 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1007 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1007 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1007{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1007 span:hover{
                color:!important;
            }
            .custom2_1007{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1007 span:hover{
                color:;
            }
            #medical_box_1007 .mode-btn1_1007{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1007 .mode-btn1_1007 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1007 .mode-btn2_1007{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1007 .mode-btn2_1007 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1007 .div-btn-title_main_1007{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1007 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1007 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1004 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1004 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1004 .background-img{
                border-radius:;
            }
        #medical_box_1004 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1004 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1004 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1004.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:510px;padding-right:20px;padding-left:20px;border-style:none;border-color:#ffccc7;}#medical_box_1004:hover{}#medical_box_1004 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;padding-top:20px;padding-right:20px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_1007:hover .new_medical_description{}
                #medical_box_1004:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1004 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1004 
            
            #medical_box_1004 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1004 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1004:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1004.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620544319_طبع غذایی.png");
                }
            
            #medical_box_1004 .mode1-size_1004{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1004 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1004 > div{
               height:100%;
            }
            #medical_box_1004 .mode2-size_1004{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1004 .mode3-size_1004{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1004 .mode4-size_1004{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1004 .mode5-size_1004{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1004 .mode6-size_1004{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1004 .mode7-size_1004{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1004 .mode7-size_1004 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1004 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1004 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1004{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1004 span:hover{
                color:!important;
            }
            .custom2_1004{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1004 span:hover{
                color:;
            }
            #medical_box_1004 .mode-btn1_1004{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1004 .mode-btn1_1004 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1004 .mode-btn2_1004{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1004 .mode-btn2_1004 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1004 .div-btn-title_main_1004{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1004 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1004 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1009 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1009 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1009 .background-img{
                border-radius:;
            }
        #medical_box_1009 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;line-height:33px;}#medical_box_805:hover .new_medical_title{}
                #medical_box_1009 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1009 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1009.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:480px;padding-top:5px;padding-right:20px;padding-left:20px;border-style:none;border-color:#ffccc7;}#medical_box_1009:hover{}#medical_box_1009 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;padding-right:20px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_1009:hover .new_medical_description{}
                #medical_box_1009:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1009 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1009 
            
            #medical_box_1009 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1009 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1009:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1009.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620547521_وضعیت روحی.png");
                }
            
            #medical_box_1009 .mode1-size_1009{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1009 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1009 > div{
               height:100%;
            }
            #medical_box_1009 .mode2-size_1009{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1009 .mode3-size_1009{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1009 .mode4-size_1009{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1009 .mode5-size_1009{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1009 .mode6-size_1009{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1009 .mode7-size_1009{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1009 .mode7-size_1009 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1009 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1009 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1009{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1009 span:hover{
                color:!important;
            }
            .custom2_1009{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1009 span:hover{
                color:;
            }
            #medical_box_1009 .mode-btn1_1009{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1009 .mode-btn1_1009 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1009 .mode-btn2_1009{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1009 .mode-btn2_1009 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1009 .div-btn-title_main_1009{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1009 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1009 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1010 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1010 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1010 .background-img{
                border-radius:;
            }
        #medical_box_1010 .new_medical_title{color:#000;font-weight:500;font-size:19px;text-align:right;line-height:33px;}#medical_box_1010:hover .new_medical_title{}
                #medical_box_1010 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1010 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:25px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1010.new_medical_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:30px;padding-right:20px;padding-left:20px;border-style:none;border-color:#ffccc7;}#medical_box_1010:hover{}#medical_box_1010 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;padding-right:20px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_1010:hover .new_medical_description{}
                #medical_box_1010:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1010 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1010 
            
            #medical_box_1010 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1010 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1010:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1010.new_medical_module{
                    background-image:url("https://metodeman.ir/files/image/1612306442_metodeman-image.png");
                }
            
            #medical_box_1010 .mode1-size_1010{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1010 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1010 > div{
               height:100%;
            }
            #medical_box_1010 .mode2-size_1010{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1010 .mode3-size_1010{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1010 .mode4-size_1010{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1010 .mode5-size_1010{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1010 .mode6-size_1010{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1010 .mode7-size_1010{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1010 .mode7-size_1010 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1010 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1010 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1010{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1010 span:hover{
                color:!important;
            }
            .custom2_1010{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1010 span:hover{
                color:;
            }
            #medical_box_1010 .mode-btn1_1010{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1010 .mode-btn1_1010 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1010 .mode-btn2_1010{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1010 .mode-btn2_1010 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1010 .div-btn-title_main_1010{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1010 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1010 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1013 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1013 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1013 .background-img{
                border-radius:30px;
            }
        #medical_box_1013 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:15px;padding-right:115px;height:15px;}#medical_box_1013:hover .new_medical_title{}
                #medical_box_1013 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1013 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;margin-top:15px;border-style:none;border-color:#000;}#medical_box_1001:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1013.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:30px;border-style:none;border-color:#ffccc7;}#medical_box_1001:hover{}#medical_box_1013 .new_medical_description{color:#000;font-weight:500;line-height:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_802:hover .new_medical_description{}
                #medical_box_1013 
            
            #medical_box_1013 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1013 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1013:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1013 .mode1-size_1013{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1013 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1013 > div{
               height:100%;
            }
            #medical_box_1013 .mode2-size_1013{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1013 .mode3-size_1013{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1013 .mode4-size_1013{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1013 .mode5-size_1013{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1013 .mode6-size_1013{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1013 .mode7-size_1013{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1013 .mode7-size_1013 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1013 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1013 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1013{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1013 span:hover{
                color:!important;
            }
            .custom2_1013{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1013 span:hover{
                color:;
            }
            #medical_box_1013 .mode-btn1_1013{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1013 .mode-btn1_1013 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1013 .mode-btn2_1013{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1013 .mode-btn2_1013 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1013 .div-btn-title_main_1013{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1013 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1013 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1014 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1014 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1014 .background-img{
                border-radius:25px;
            }
        #medical_box_1014 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1014.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:500px;border-radius:25px;border-style:none;}#medical_box_1014:hover{}#medical_box_1014 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1014:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1014 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1014 
            
            #medical_box_1014 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1014 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1014:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1014.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620555976_فعالیت روزانه.png");
                }
            
            #medical_box_1014 .mode1-size_1014{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1014 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1014 > div{
               height:100%;
            }
            #medical_box_1014 .mode2-size_1014{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1014 .mode3-size_1014{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1014 .mode4-size_1014{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1014 .mode5-size_1014{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1014 .mode6-size_1014{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1014 .mode7-size_1014{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1014 .mode7-size_1014 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1014 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1014 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1014{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1014 span:hover{
                color:!important;
            }
            .custom2_1014{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1014 span:hover{
                color:;
            }
            #medical_box_1014 .mode-btn1_1014{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1014 .mode-btn1_1014 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1014 .mode-btn2_1014{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1014 .mode-btn2_1014 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1014 .div-btn-title_main_1014{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1014 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1014 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1015 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1015 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1015 .background-img{
                border-radius:;
            }
        #medical_box_1015 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;padding-right:40px;height:15px;}#medical_box_1015:hover .new_medical_title{}
                #medical_box_1015 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1015 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1015.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1015 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:30px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_816:hover .new_medical_description{}
                #medical_box_1015 
            
            #medical_box_1015 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1015 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1015:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1015 .mode1-size_1015{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1015 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1015 > div{
               height:100%;
            }
            #medical_box_1015 .mode2-size_1015{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1015 .mode3-size_1015{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1015 .mode4-size_1015{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1015 .mode5-size_1015{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1015 .mode6-size_1015{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1015 .mode7-size_1015{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1015 .mode7-size_1015 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1015 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1015 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1015{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1015 span:hover{
                color:!important;
            }
            .custom2_1015{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1015 span:hover{
                color:;
            }
            #medical_box_1015 .mode-btn1_1015{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1015 .mode-btn1_1015 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1015 .mode-btn2_1015{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1015 .mode-btn2_1015 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1015 .div-btn-title_main_1015{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1015 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1015 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1016 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1016 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1016 .background-img{
                border-radius:;
            }
        #medical_box_1016 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_816:hover .new_medical_title{}
                #medical_box_1016 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1016 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1016.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1016 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:30px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_816:hover .new_medical_description{}
                #medical_box_1016 
            
            #medical_box_1016 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1016 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1016:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1016 .mode1-size_1016{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1016 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1016 > div{
               height:100%;
            }
            #medical_box_1016 .mode2-size_1016{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1016 .mode3-size_1016{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1016 .mode4-size_1016{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1016 .mode5-size_1016{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1016 .mode6-size_1016{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1016 .mode7-size_1016{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1016 .mode7-size_1016 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1016 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1016 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1016{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1016 span:hover{
                color:!important;
            }
            .custom2_1016{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1016 span:hover{
                color:;
            }
            #medical_box_1016 .mode-btn1_1016{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1016 .mode-btn1_1016 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1016 .mode-btn2_1016{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1016 .mode-btn2_1016 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1016 .div-btn-title_main_1016{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1016 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1016 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1017 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1017 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1017 .background-img{
                border-radius:;
            }
        #medical_box_1017 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_1017:hover .new_medical_title{}
                #medical_box_1017 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1017 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1017.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_1017:hover{}#medical_box_1017 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:35px;padding-right:30px;padding-left:30px;border-style:none;border-color:#555;}#medical_box_1017:hover .new_medical_description{}
                #medical_box_1017:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1017 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1017 
            
            #medical_box_1017 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1017 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1017:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1017.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620730703_سطح فعالیت.png");
                }
            
            #medical_box_1017 .mode1-size_1017{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1017 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1017 > div{
               height:100%;
            }
            #medical_box_1017 .mode2-size_1017{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1017 .mode3-size_1017{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1017 .mode4-size_1017{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1017 .mode5-size_1017{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1017 .mode6-size_1017{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1017 .mode7-size_1017{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1017 .mode7-size_1017 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1017 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1017 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1017{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1017 span:hover{
                color:!important;
            }
            .custom2_1017{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1017 span:hover{
                color:;
            }
            #medical_box_1017 .mode-btn1_1017{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1017 .mode-btn1_1017 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1017 .mode-btn2_1017{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1017 .mode-btn2_1017 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1017 .div-btn-title_main_1017{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1017 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1017 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1157 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1157 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1157 .background-img{
                border-radius:;
            }
        #medical_box_1157 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_1017:hover .new_medical_title{}
                #medical_box_1157 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1157 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1157.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;border-style:none;border-color:#ffccc7;}#medical_box_1157:hover{}#medical_box_1157 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-bottom:20px;padding-top:35px;padding-right:30px;padding-left:30px;border-style:none;border-color:#555;}#medical_box_1017:hover .new_medical_description{}
                #medical_box_1157:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1157 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1157 
            
            #medical_box_1157 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1157 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1157:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1157.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620731870_نوع فعالیت.png");
                }
            
            #medical_box_1157 .mode1-size_1157{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1157 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1157 > div{
               height:100%;
            }
            #medical_box_1157 .mode2-size_1157{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1157 .mode3-size_1157{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1157 .mode4-size_1157{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1157 .mode5-size_1157{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1157 .mode6-size_1157{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1157 .mode7-size_1157{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1157 .mode7-size_1157 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1157 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1157 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1157{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1157 span:hover{
                color:!important;
            }
            .custom2_1157{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1157 span:hover{
                color:;
            }
            #medical_box_1157 .mode-btn1_1157{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1157 .mode-btn1_1157 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1157 .mode-btn2_1157{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1157 .mode-btn2_1157 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1157 .div-btn-title_main_1157{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1157 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1157 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1158 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1158 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1158 .background-img{
                border-radius:;
            }
        #medical_box_1158 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_1017:hover .new_medical_title{}
                #medical_box_1158 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1158 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1158.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;border-style:none;border-color:#ffccc7;}#medical_box_1158:hover{}#medical_box_1158 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-bottom:20px;padding-top:35px;padding-right:30px;padding-left:30px;border-style:none;border-color:#555;}#medical_box_1017:hover .new_medical_description{}
                #medical_box_1158:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1158 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1158 
            
            #medical_box_1158 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1158 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1158:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1158.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620800363_میزان فعالیت.png");
                }
            
            #medical_box_1158 .mode1-size_1158{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1158 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1158 > div{
               height:100%;
            }
            #medical_box_1158 .mode2-size_1158{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1158 .mode3-size_1158{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1158 .mode4-size_1158{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1158 .mode5-size_1158{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1158 .mode6-size_1158{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1158 .mode7-size_1158{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1158 .mode7-size_1158 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1158 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1158 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1158{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1158 span:hover{
                color:!important;
            }
            .custom2_1158{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1158 span:hover{
                color:;
            }
            #medical_box_1158 .mode-btn1_1158{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1158 .mode-btn1_1158 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1158 .mode-btn2_1158{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1158 .mode-btn2_1158 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1158 .div-btn-title_main_1158{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1158 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1158 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1159 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1159 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1159 .background-img{
                border-radius:30px;
            }
        #medical_box_1159 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_1017:hover .new_medical_title{}
                #medical_box_1159 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1159 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1159.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:30px;padding-bottom:10px;border-radius:30px;border-style:none;border-color:#ffccc7;}#medical_box_1159:hover{}#medical_box_1159 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-bottom:20px;padding-top:35px;padding-right:30px;padding-left:30px;border-style:none;border-color:#555;}#medical_box_1159:hover .new_medical_description{}
                #medical_box_1159:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1159 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1159 
            
            #medical_box_1159 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1159 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1159:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1159.new_medical_module{
                    background-image:url("https://metodeman.ir/files/banner/1612661801_an-Banermobile2.jpg");
                }
            
            #medical_box_1159 .mode1-size_1159{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1159 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1159 > div{
               height:100%;
            }
            #medical_box_1159 .mode2-size_1159{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1159 .mode3-size_1159{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1159 .mode4-size_1159{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1159 .mode5-size_1159{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1159 .mode6-size_1159{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1159 .mode7-size_1159{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1159 .mode7-size_1159 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1159 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1159 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1159{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1159 span:hover{
                color:!important;
            }
            .custom2_1159{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1159 span:hover{
                color:;
            }
            #medical_box_1159 .mode-btn1_1159{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1159 .mode-btn1_1159 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1159 .mode-btn2_1159{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1159 .mode-btn2_1159 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1159 .div-btn-title_main_1159{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1159 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1159 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1160 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1160 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1160 .background-img{
                border-radius:30px;
            }
        #medical_box_1160 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-top:15px;padding-right:120px;height:15px;}#medical_box_1160:hover .new_medical_title{}
                #medical_box_1160 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1160 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:15px;border-style:none;border-color:#000;}#medical_box_1160:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1160.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:30px;border-style:none;border-color:#ffccc7;}#medical_box_1160:hover{}#medical_box_1160 .new_medical_description{color:#000;font-weight:500;line-height:17px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_802:hover .new_medical_description{}
                #medical_box_1160 
            
            #medical_box_1160 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1160 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1160:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1160 .mode1-size_1160{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1160 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1160 > div{
               height:100%;
            }
            #medical_box_1160 .mode2-size_1160{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1160 .mode3-size_1160{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1160 .mode4-size_1160{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1160 .mode5-size_1160{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1160 .mode6-size_1160{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1160 .mode7-size_1160{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1160 .mode7-size_1160 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1160 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1160 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1160{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1160 span:hover{
                color:!important;
            }
            .custom2_1160{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1160 span:hover{
                color:;
            }
            #medical_box_1160 .mode-btn1_1160{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1160 .mode-btn1_1160 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1160 .mode-btn2_1160{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1160 .mode-btn2_1160 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1160 .div-btn-title_main_1160{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1160 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1160 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1018 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1018 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1018 .background-img{
                border-radius:25px;
            }
        #medical_box_1018 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_1018.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:800px;padding-left:2px;border-radius:25px;border-style:none;}#medical_box_1018:hover{}#medical_box_1018 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_1018:hover .background-img {
                    filter:none;
                }
            
                #medical_box_1018 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_1018 
            
            #medical_box_1018 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1018 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1018:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_1018.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620804955_بیماری ها.png");
                }
            
            #medical_box_1018 .mode1-size_1018{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1018 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1018 > div{
               height:100%;
            }
            #medical_box_1018 .mode2-size_1018{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1018 .mode3-size_1018{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1018 .mode4-size_1018{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1018 .mode5-size_1018{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1018 .mode6-size_1018{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1018 .mode7-size_1018{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1018 .mode7-size_1018 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1018 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1018 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1018{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1018 span:hover{
                color:!important;
            }
            .custom2_1018{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1018 span:hover{
                color:;
            }
            #medical_box_1018 .mode-btn1_1018{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1018 .mode-btn1_1018 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1018 .mode-btn2_1018{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1018 .mode-btn2_1018 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1018 .div-btn-title_main_1018{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1018 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1018 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1019 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1019 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1019 .background-img{
                border-radius:;
            }
        #medical_box_1019 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;line-height:35px;}#medical_box_1019:hover .new_medical_title{}
                #medical_box_1019 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1019 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;border-style:solid;border-color:#000;}#medical_box_1019:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1019.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_1019 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:center;margin-top:20px;border-style:solid;border-color:#555;}#medical_box_1019:hover .new_medical_description{}
                #medical_box_1019 
            
            #medical_box_1019 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1019 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1019:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1019 .mode1-size_1019{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1019 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1019 > div{
               height:100%;
            }
            #medical_box_1019 .mode2-size_1019{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1019 .mode3-size_1019{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1019 .mode4-size_1019{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1019 .mode5-size_1019{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1019 .mode6-size_1019{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1019 .mode7-size_1019{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1019 .mode7-size_1019 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1019 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1019 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1019{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1019 span:hover{
                color:!important;
            }
            .custom2_1019{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1019 span:hover{
                color:;
            }
            #medical_box_1019 .mode-btn1_1019{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1019 .mode-btn1_1019 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1019 .mode-btn2_1019{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1019 .mode-btn2_1019 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1019 .div-btn-title_main_1019{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1019 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1019 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1020 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1020 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1020 .background-img{
                border-radius:;
            }
        #medical_box_1020 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:center;line-height:35px;}#medical_box_1020:hover .new_medical_title{}
                #medical_box_1020 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1020 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:solid;border-color:#000;}#medical_box_1020:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1020.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_822:hover{}#medical_box_1020 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-top:20px;border-style:solid;border-color:#555;}#medical_box_1020:hover .new_medical_description{}
                #medical_box_1020 
            
            #medical_box_1020 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1020 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1020:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1020 .mode1-size_1020{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1020 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1020 > div{
               height:100%;
            }
            #medical_box_1020 .mode2-size_1020{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1020 .mode3-size_1020{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1020 .mode4-size_1020{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1020 .mode5-size_1020{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1020 .mode6-size_1020{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1020 .mode7-size_1020{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1020 .mode7-size_1020 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1020 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1020 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1020{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1020 span:hover{
                color:!important;
            }
            .custom2_1020{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1020 span:hover{
                color:;
            }
            #medical_box_1020 .mode-btn1_1020{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1020 .mode-btn1_1020 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1020 .mode-btn2_1020{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1020 .mode-btn2_1020 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1020 .div-btn-title_main_1020{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1020 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1020 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_1021 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_1021 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_1021 .background-img{
                border-radius:;
            }
        #medical_box_1021 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:15px;margin-bottom:15px;padding-right:15px;line-height:35px;}#medical_box_1021:hover .new_medical_title{}
                #medical_box_1021 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_1021 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;margin-top:15px;border-style:solid;border-color:#000;}#medical_box_823:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_1021.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:right;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_823:hover{}#medical_box_1021 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-right:25px;padding-left:25px;border-style:solid;border-color:#555;}#medical_box_823:hover .new_medical_description{}
                #medical_box_1021 
            
            #medical_box_1021 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_1021 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_1021:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_1021 .mode1-size_1021{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_1021 .new_medical_box > div{
                width:100%;
            }
             #medical_box_1021 > div{
               height:100%;
            }
            #medical_box_1021 .mode2-size_1021{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1021 .mode3-size_1021{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_1021 .mode4-size_1021{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_1021 .mode5-size_1021{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_1021 .mode6-size_1021{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_1021 .mode7-size_1021{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_1021 .mode7-size_1021 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_1021 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_1021 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_1021{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_1021 span:hover{
                color:!important;
            }
            .custom2_1021{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_1021 span:hover{
                color:;
            }
            #medical_box_1021 .mode-btn1_1021{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1021 .mode-btn1_1021 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_1021 .mode-btn2_1021{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_1021 .mode-btn2_1021 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_1021 .div-btn-title_main_1021{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_1021 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_1021 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_241 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_241 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_241 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_241 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_241 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_241 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_241 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_241 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_241 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_241 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_241 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_241 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_241 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_241{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_241 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_241 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_241 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_241 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_241 .swiper-container{
                width:1200px;
            }
            #module_new_medical_241 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_241 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_241 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_241 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='334']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='334']:hover{;}.module[data-id_page='334']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='334'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='334'] 
            
            .module[data-id_page='334'] .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='334'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='334']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_240 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_240 .content_str{
				width:100%;
			}
            #module_new_medical_240 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_240 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_240 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_240 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_240 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_240 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_240 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_240 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_240 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_240 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_240 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_240 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_240 .new_medical_description a,#module_new_medical_240 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_240 .new_medical_description a:hover,#module_new_medical_240 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_240 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_240 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_957 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_957 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_957 .background-img{
                border-radius:100px;
            }
        #medical_box_957 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_717:hover .new_medical_title{}
                #medical_box_957 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_957 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_957.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_957 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_957 
            
            #medical_box_957 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_957 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_957:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_957 .mode1-size_957{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_957 .new_medical_box > div{
                width:100%;
            }
             #medical_box_957 > div{
               height:100%;
            }
            #medical_box_957 .mode2-size_957{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_957 .mode3-size_957{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_957 .mode4-size_957{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_957 .mode5-size_957{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_957 .mode6-size_957{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_957 .mode7-size_957{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_957 .mode7-size_957 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_957 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_957 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_957{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_957 span:hover{
                color:!important;
            }
            .custom2_957{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_957 span:hover{
                color:;
            }
            #medical_box_957 .mode-btn1_957{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_957 .mode-btn1_957 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_957 .mode-btn2_957{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_957 .mode-btn2_957 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_957 .div-btn-title_main_957{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_957 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_957 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_956 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_956 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_956 .background-img{
                border-radius:25px;
            }
        #medical_box_956 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_956.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_716:hover{}
                #medical_box_956:hover .background-img {
                    filter:none;
                }
            
                #medical_box_956 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_956 
            
            #medical_box_956 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_956 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_956:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_956.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619578682_بنر رژیم آنلاین.png");
                }
            
            #medical_box_956 .mode1-size_956{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_956 .new_medical_box > div{
                width:100%;
            }
             #medical_box_956 > div{
               height:100%;
            }
            #medical_box_956 .mode2-size_956{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_956 .mode3-size_956{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_956 .mode4-size_956{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_956 .mode5-size_956{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_956 .mode6-size_956{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_956 .mode7-size_956{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_956 .mode7-size_956 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_956 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_956 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_956{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_956 span:hover{
                color:!important;
            }
            .custom2_956{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_956 span:hover{
                color:;
            }
            #medical_box_956 .mode-btn1_956{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_956 .mode-btn1_956 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_956 .mode-btn2_956{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_956 .mode-btn2_956 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_956 .div-btn-title_main_956{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_956 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_956 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_958 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_958 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_958 .background-img{
                border-radius:;
            }
        #medical_box_958 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_296:hover .new_medical_title{}
                #medical_box_958 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_958 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_958 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:0px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_718:hover .new_medical_description{}
                #medical_box_958 
            
            #medical_box_958 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_958 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_958:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_958 .mode1-size_958{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_958 .new_medical_box > div{
                width:100%;
            }
             #medical_box_958 > div{
               height:100%;
            }
            #medical_box_958 .mode2-size_958{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_958 .mode3-size_958{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_958 .mode4-size_958{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_958 .mode5-size_958{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_958 .mode6-size_958{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_958 .mode7-size_958{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_958 .mode7-size_958 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_958 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_958 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_958{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_958 span:hover{
                color:!important;
            }
            .custom2_958{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_958 span:hover{
                color:;
            }
            #medical_box_958 .mode-btn1_958{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_958 .mode-btn1_958 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_958 .mode-btn2_958{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_958 .mode-btn2_958 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_958 .div-btn-title_main_958{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_958 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_958 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_961 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_961 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_961 .background-img{
                border-radius:30px;
            }
        #medical_box_961 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;padding-right:20px;line-height:35px;}#medical_box_961:hover .new_medical_title{}
                #medical_box_961 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_961 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_961:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_961.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:5px;padding-bottom:5px;padding-right:100px;border-radius:30px;border-style:dotted;border-color:#ffccc7;}#medical_box_961:hover{}#medical_box_961 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_961 
            
            #medical_box_961 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_961 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_961:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_961 .mode1-size_961{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_961 .new_medical_box > div{
                width:100%;
            }
             #medical_box_961 > div{
               height:100%;
            }
            #medical_box_961 .mode2-size_961{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_961 .mode3-size_961{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_961 .mode4-size_961{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_961 .mode5-size_961{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_961 .mode6-size_961{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_961 .mode7-size_961{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_961 .mode7-size_961 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_961 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_961 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_961{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_961 span:hover{
                color:!important;
            }
            .custom2_961{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_961 span:hover{
                color:;
            }
            #medical_box_961 .mode-btn1_961{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_961 .mode-btn1_961 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_961 .mode-btn2_961{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_961 .mode-btn2_961 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_961 .div-btn-title_main_961{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_961 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_961 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_959 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_959 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_959 .background-img{
                border-radius:;
            }
        #medical_box_959 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;padding-right:20px;line-height:35px;}#medical_box_959:hover .new_medical_title{}
                #medical_box_959 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_959 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_959:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_959.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_719:hover{}#medical_box_959 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:15px;padding-right:20px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_959:hover .new_medical_description{}
                #medical_box_959 
            
            #medical_box_959 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_959 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_959:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_959 .mode1-size_959{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_959 .new_medical_box > div{
                width:100%;
            }
             #medical_box_959 > div{
               height:100%;
            }
            #medical_box_959 .mode2-size_959{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_959 .mode3-size_959{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_959 .mode4-size_959{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_959 .mode5-size_959{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_959 .mode6-size_959{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_959 .mode7-size_959{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_959 .mode7-size_959 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_959 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_959 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_959{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_959 span:hover{
                color:!important;
            }
            .custom2_959{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_959 span:hover{
                color:;
            }
            #medical_box_959 .mode-btn1_959{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_959 .mode-btn1_959 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_959 .mode-btn2_959{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_959 .mode-btn2_959 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_959 .div-btn-title_main_959{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_959 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_959 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_962 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_962 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_962 .background-img{
                border-radius:25px;
            }
        #medical_box_962 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_962.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:650px;border-radius:25px;border-style:none;}#medical_box_962:hover{}
                #medical_box_962:hover .background-img {
                    filter:none;
                }
            
                #medical_box_962 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_962 
            
            #medical_box_962 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_962 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_962:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_962.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620968939_توضیحات بیشتر.png");
                }
            
            #medical_box_962 .mode1-size_962{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_962 .new_medical_box > div{
                width:100%;
            }
             #medical_box_962 > div{
               height:100%;
            }
            #medical_box_962 .mode2-size_962{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_962 .mode3-size_962{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_962 .mode4-size_962{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_962 .mode5-size_962{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_962 .mode6-size_962{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_962 .mode7-size_962{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_962 .mode7-size_962 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_962 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_962 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_962{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_962 span:hover{
                color:!important;
            }
            .custom2_962{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_962 span:hover{
                color:;
            }
            #medical_box_962 .mode-btn1_962{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_962 .mode-btn1_962 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_962 .mode-btn2_962{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_962 .mode-btn2_962 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_962 .div-btn-title_main_962{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_962 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_962 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_963 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_963 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_963 .background-img{
                border-radius:;
            }
        #medical_box_963 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:20px;padding-left:5px;line-height:35px;}#medical_box_963:hover .new_medical_title{}
                #medical_box_963 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_963 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_963:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_963.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_963:hover{}#medical_box_963 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-right:40px;border-style:solid;border-color:#555;}#medical_box_796:hover .new_medical_description{}
                #medical_box_963 
            
            #medical_box_963 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_963 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_963:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_963 .mode1-size_963{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_963 .new_medical_box > div{
                width:100%;
            }
             #medical_box_963 > div{
               height:100%;
            }
            #medical_box_963 .mode2-size_963{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_963 .mode3-size_963{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_963 .mode4-size_963{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_963 .mode5-size_963{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_963 .mode6-size_963{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_963 .mode7-size_963{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_963 .mode7-size_963 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_963 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_963 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_963{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_963 span:hover{
                color:!important;
            }
            .custom2_963{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_963 span:hover{
                color:;
            }
            #medical_box_963 .mode-btn1_963{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_963 .mode-btn1_963 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_963 .mode-btn2_963{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_963 .mode-btn2_963 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_963 .div-btn-title_main_963{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_963 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_963 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_965 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_965 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_965 .background-img{
                border-radius:;
            }
        #medical_box_965 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_296:hover .new_medical_title{}
                #medical_box_965 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_965 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_965:hover .new_medical_icon{}#medical_box_965.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_965:hover{}#medical_box_965 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_965:hover .new_medical_description{}
                #medical_box_965 
            
            #medical_box_965 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_965 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_965:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_965 .mode1-size_965{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_965 .new_medical_box > div{
                width:100%;
            }
             #medical_box_965 > div{
               height:100%;
            }
            #medical_box_965 .mode2-size_965{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_965 .mode3-size_965{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_965 .mode4-size_965{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_965 .mode5-size_965{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_965 .mode6-size_965{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_965 .mode7-size_965{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_965 .mode7-size_965 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_965 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_965 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_965{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_965 span:hover{
                color:!important;
            }
            .custom2_965{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_965 span:hover{
                color:;
            }
            #medical_box_965 .mode-btn1_965{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_965 .mode-btn1_965 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_965 .mode-btn2_965{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_965 .mode-btn2_965 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_965 .div-btn-title_main_965{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_965 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_965 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_967 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_967 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_967 .background-img{
                border-radius:;
            }
        #medical_box_967 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;line-height:33px;}#medical_box_296:hover .new_medical_title{}
                #medical_box_967 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_967 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_967.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:20px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_967:hover{}#medical_box_967 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_799:hover .new_medical_description{}
                #medical_box_967 
            
            #medical_box_967 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_967 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_967:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_967 .mode1-size_967{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_967 .new_medical_box > div{
                width:100%;
            }
             #medical_box_967 > div{
               height:100%;
            }
            #medical_box_967 .mode2-size_967{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_967 .mode3-size_967{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_967 .mode4-size_967{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_967 .mode5-size_967{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_967 .mode6-size_967{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_967 .mode7-size_967{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_967 .mode7-size_967 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_967 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_967 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_967{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_967 span:hover{
                color:!important;
            }
            .custom2_967{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_967 span:hover{
                color:;
            }
            #medical_box_967 .mode-btn1_967{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_967 .mode-btn1_967 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_967 .mode-btn2_967{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_967 .mode-btn2_967 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_967 .div-btn-title_main_967{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_967 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_967 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_980 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_980 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_980 .background-img{
                border-radius:30px;
            }
        #medical_box_980 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;padding-right:20px;line-height:35px;}#medical_box_961:hover .new_medical_title{}
                #medical_box_980 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_980 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_961:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_980.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:5px;padding-bottom:5px;padding-right:150px;padding-left:150px;border-radius:30px;border-style:dotted;border-color:#ffccc7;}#medical_box_980:hover{}#medical_box_980 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_980 
            
            #medical_box_980 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_980 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_980:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_980 .mode1-size_980{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_980 .new_medical_box > div{
                width:100%;
            }
             #medical_box_980 > div{
               height:100%;
            }
            #medical_box_980 .mode2-size_980{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_980 .mode3-size_980{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_980 .mode4-size_980{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_980 .mode5-size_980{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_980 .mode6-size_980{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_980 .mode7-size_980{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_980 .mode7-size_980 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_980 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_980 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_980{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_980 span:hover{
                color:!important;
            }
            .custom2_980{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_980 span:hover{
                color:;
            }
            #medical_box_980 .mode-btn1_980{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_980 .mode-btn1_980 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_980 .mode-btn2_980{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_980 .mode-btn2_980 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_980 .div-btn-title_main_980{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_980 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_980 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_981 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_981 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_981 .background-img{
                border-radius:25px;
            }
        #medical_box_981 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_981.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:900px;padding-left:2px;border-radius:25px;border-style:none;}#medical_box_981:hover{}#medical_box_981 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_981:hover .background-img {
                    filter:none;
                }
            
                #medical_box_981 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_981 
            
            #medical_box_981 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_981 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_981:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_981.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620975509_ثبت غذایی.png");
                }
            
            #medical_box_981 .mode1-size_981{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_981 .new_medical_box > div{
                width:100%;
            }
             #medical_box_981 > div{
               height:100%;
            }
            #medical_box_981 .mode2-size_981{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_981 .mode3-size_981{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_981 .mode4-size_981{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_981 .mode5-size_981{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_981 .mode6-size_981{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_981 .mode7-size_981{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_981 .mode7-size_981 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_981 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_981 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_981{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_981 span:hover{
                color:!important;
            }
            .custom2_981{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_981 span:hover{
                color:;
            }
            #medical_box_981 .mode-btn1_981{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_981 .mode-btn1_981 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_981 .mode-btn2_981{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_981 .mode-btn2_981 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_981 .div-btn-title_main_981{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_981 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_981 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_982 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_982 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_982 .background-img{
                border-radius:;
            }
        #medical_box_982 .new_medical_title{color:#000;font-weight:500;font-size:17px;text-align:right;padding-right:40px;height:15px;}#medical_box_816:hover .new_medical_title{}
                #medical_box_982 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_982 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_982.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_982 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:30px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_816:hover .new_medical_description{}
                #medical_box_982 
            
            #medical_box_982 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_982 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_982:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_982 .mode1-size_982{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_982 .new_medical_box > div{
                width:100%;
            }
             #medical_box_982 > div{
               height:100%;
            }
            #medical_box_982 .mode2-size_982{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_982 .mode3-size_982{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_982 .mode4-size_982{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_982 .mode5-size_982{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_982 .mode6-size_982{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_982 .mode7-size_982{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_982 .mode7-size_982 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_982 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_982 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_982{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_982 span:hover{
                color:!important;
            }
            .custom2_982{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_982 span:hover{
                color:;
            }
            #medical_box_982 .mode-btn1_982{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_982 .mode-btn1_982 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_982 .mode-btn2_982{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_982 .mode-btn2_982 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_982 .div-btn-title_main_982{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_982 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_982 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_983 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_983 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_983 .background-img{
                border-radius:;
            }
        #medical_box_983 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;padding-right:40px;line-height:35px;}#medical_box_983:hover .new_medical_title{}
                #medical_box_983 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_983 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2%;height:24px;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_816:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_983.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_983 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_983:hover .new_medical_description{}
                #medical_box_983 
            
            #medical_box_983 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_983 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_983:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_983 .mode1-size_983{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_983 .new_medical_box > div{
                width:100%;
            }
             #medical_box_983 > div{
               height:100%;
            }
            #medical_box_983 .mode2-size_983{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_983 .mode3-size_983{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_983 .mode4-size_983{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_983 .mode5-size_983{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_983 .mode6-size_983{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_983 .mode7-size_983{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_983 .mode7-size_983 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_983 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_983 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_983{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_983 span:hover{
                color:!important;
            }
            .custom2_983{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_983 span:hover{
                color:;
            }
            #medical_box_983 .mode-btn1_983{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_983 .mode-btn1_983 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_983 .mode-btn2_983{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_983 .mode-btn2_983 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_983 .div-btn-title_main_983{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_983 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_983 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_984 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_984 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_984 .background-img{
                border-radius:30px;
            }
        #medical_box_984 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;padding-right:20px;line-height:35px;}#medical_box_961:hover .new_medical_title{}
                #medical_box_984 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_984 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_961:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_984.new_medical_module{background-color:#36cfc9;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:5px;padding-bottom:5px;padding-right:180px;padding-left:180px;border-radius:30px;border-style:dotted;border-color:#ffccc7;}#medical_box_984:hover{}#medical_box_984 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_984 
            
            #medical_box_984 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_984 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_984:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_984 .mode1-size_984{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_984 .new_medical_box > div{
                width:100%;
            }
             #medical_box_984 > div{
               height:100%;
            }
            #medical_box_984 .mode2-size_984{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_984 .mode3-size_984{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_984 .mode4-size_984{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_984 .mode5-size_984{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_984 .mode6-size_984{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_984 .mode7-size_984{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_984 .mode7-size_984 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_984 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_984 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_984{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_984 span:hover{
                color:!important;
            }
            .custom2_984{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_984 span:hover{
                color:;
            }
            #medical_box_984 .mode-btn1_984{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_984 .mode-btn1_984 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_984 .mode-btn2_984{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_984 .mode-btn2_984 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_984 .div-btn-title_main_984{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_984 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_984 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_985 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_985 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_985 .background-img{
                border-radius:25px;
            }
        #medical_box_985 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_720:hover .new_medical_icon{}#medical_box_985.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:1000px;padding-left:2px;border-radius:25px;border-style:none;}#medical_box_985:hover{}#medical_box_985 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_985:hover .background-img {
                    filter:none;
                }
            
                #medical_box_985 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_985 
            
            #medical_box_985 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_985 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_985:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_985.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1620983191_تایید نهایی.png");
                }
            
            #medical_box_985 .mode1-size_985{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_985 .new_medical_box > div{
                width:100%;
            }
             #medical_box_985 > div{
               height:100%;
            }
            #medical_box_985 .mode2-size_985{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_985 .mode3-size_985{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_985 .mode4-size_985{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_985 .mode5-size_985{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_985 .mode6-size_985{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_985 .mode7-size_985{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_985 .mode7-size_985 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_985 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_985 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_985{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_985 span:hover{
                color:!important;
            }
            .custom2_985{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_985 span:hover{
                color:;
            }
            #medical_box_985 .mode-btn1_985{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_985 .mode-btn1_985 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_985 .mode-btn2_985{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_985 .mode-btn2_985 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_985 .div-btn-title_main_985{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_985 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_985 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_986 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_986 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_986 .background-img{
                border-radius:;
            }
        #medical_box_986 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:25px;margin-bottom:15px;padding-right:15px;height:15px;}#medical_box_818:hover .new_medical_title{}
                #medical_box_986 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_986 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;margin-top:24px;border-style:solid;border-color:#000;}#medical_box_818:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_986.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_986 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:15px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_814:hover .new_medical_description{}
                #medical_box_986 
            
            #medical_box_986 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_986 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_986:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_986 .mode1-size_986{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_986 .new_medical_box > div{
                width:100%;
            }
             #medical_box_986 > div{
               height:100%;
            }
            #medical_box_986 .mode2-size_986{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_986 .mode3-size_986{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_986 .mode4-size_986{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_986 .mode5-size_986{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_986 .mode6-size_986{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_986 .mode7-size_986{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_986 .mode7-size_986 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_986 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_986 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_986{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_986 span:hover{
                color:!important;
            }
            .custom2_986{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_986 span:hover{
                color:;
            }
            #medical_box_986 .mode-btn1_986{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_986 .mode-btn1_986 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_986 .mode-btn2_986{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_986 .mode-btn2_986 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_986 .div-btn-title_main_986{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_986 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_986 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_987 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_987 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_987 .background-img{
                border-radius:;
            }
        #medical_box_987 .new_medical_title{color:#000;font-weight:500;font-size:18px;text-align:right;margin-top:25px;margin-bottom:15px;padding-right:15px;height:15px;}#medical_box_818:hover .new_medical_title{}
                #medical_box_987 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_987 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:2.6%;height:24px;margin-top:24px;border-style:solid;border-color:#000;}#medical_box_818:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_987.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;border-color:#ffccc7;}#medical_box_814:hover{}#medical_box_987 .new_medical_description{color:#000;font-weight:500;font-size:17px;line-height:35px;text-align:justify;padding-top:15px;padding-right:40px;padding-left:20px;border-style:solid;border-color:#555;}#medical_box_814:hover .new_medical_description{}
                #medical_box_987 
            
            #medical_box_987 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_987 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_987:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_987 .mode1-size_987{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_987 .new_medical_box > div{
                width:100%;
            }
             #medical_box_987 > div{
               height:100%;
            }
            #medical_box_987 .mode2-size_987{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_987 .mode3-size_987{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_987 .mode4-size_987{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_987 .mode5-size_987{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_987 .mode6-size_987{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_987 .mode7-size_987{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_987 .mode7-size_987 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_987 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_987 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_987{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_987 span:hover{
                color:!important;
            }
            .custom2_987{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_987 span:hover{
                color:;
            }
            #medical_box_987 .mode-btn1_987{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_987 .mode-btn1_987 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_987 .mode-btn2_987{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_987 .mode-btn2_987 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_987 .div-btn-title_main_987{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_987 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_987 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_240 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_240 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_240 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_240 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_240 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_240 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_240 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_240 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_240 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_240 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_240 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_240 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_240 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_240{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_240 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_240 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_240 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_240 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_240 .swiper-container{
                width:1200px;
            }
            #module_new_medical_240 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_240 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_240 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_240 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='333']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;margin-top:10px;margin-bottom:10px;padding-top:20px;padding-bottom:20px;border-style:solid;}.module[data-id_page='333']:hover{;}.module[data-id_page='333']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='333'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='333'] 
            
            .module[data-id_page='333'] .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='333'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='333']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_239 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_239 .content_str{
				width:100%;
			}
            #module_new_medical_239 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_239 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_239 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_239 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_239 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_239 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_239 .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_239 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_239 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_239 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_239 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_239 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_239 .new_medical_description a,#module_new_medical_239 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_239 .new_medical_description a:hover,#module_new_medical_239 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_239 .swiper-pagination{
                position: absolute;
                top: 90%;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_239 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_924 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_924 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_924 .background-img{
                border-radius:100px;
            }
        #medical_box_924 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;padding-right:20px;padding-left:20px;}#medical_box_717:hover .new_medical_title{}
                #medical_box_924 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_924 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_311:hover .new_medical_icon{}#medical_box_924.new_medical_module{background-color:#52c41a;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-radius:100px;border-style:none;}#medical_box_317:hover{}#medical_box_924 .new_medical_description{color:#000;font-weight:300;font-size:15px;line-height:30px;text-align:justify;margin-top:15px;border-style:solid;border-color:#555;}#medical_box_296:hover .new_medical_description{}
                #medical_box_924 
            
            #medical_box_924 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_924 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_924:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_924 .mode1-size_924{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_924 .new_medical_box > div{
                width:100%;
            }
             #medical_box_924 > div{
               height:100%;
            }
            #medical_box_924 .mode2-size_924{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_924 .mode3-size_924{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_924 .mode4-size_924{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_924 .mode5-size_924{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_924 .mode6-size_924{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_924 .mode7-size_924{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_924 .mode7-size_924 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_924 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_924 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_924{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_924 span:hover{
                color:!important;
            }
            .custom2_924{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_924 span:hover{
                color:;
            }
            #medical_box_924 .mode-btn1_924{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_924 .mode-btn1_924 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_924 .mode-btn2_924{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_924 .mode-btn2_924 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_924 .div-btn-title_main_924{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_924 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_924 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_923 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_923 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_923 .background-img{
                border-radius:25px;
            }
        #medical_box_923 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;min-width:40%;height:40px;border-style:none;border-color:#000;}#medical_box_262:hover .new_medical_icon{}#medical_box_923.new_medical_module{background-color:#fadb14;background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:400px;border-radius:25px;border-style:none;}#medical_box_716:hover{}
                #medical_box_923:hover .background-img {
                    filter:none;
                }
            
                #medical_box_923 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_923 
            
            #medical_box_923 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_923 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_923:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_923.new_medical_module{
                    background-image:url("https://metodeman.ir/files/online diet/guidance/1619578682_بنر رژیم آنلاین.png");
                }
            
            #medical_box_923 .mode1-size_923{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_923 .new_medical_box > div{
                width:100%;
            }
             #medical_box_923 > div{
               height:100%;
            }
            #medical_box_923 .mode2-size_923{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_923 .mode3-size_923{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_923 .mode4-size_923{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_923 .mode5-size_923{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_923 .mode6-size_923{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_923 .mode7-size_923{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_923 .mode7-size_923 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_923 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_923 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_923{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_923 span:hover{
                color:!important;
            }
            .custom2_923{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_923 span:hover{
                color:;
            }
            #medical_box_923 .mode-btn1_923{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_923 .mode-btn1_923 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_923 .mode-btn2_923{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_923 .mode-btn2_923 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_923 .div-btn-title_main_923{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_923 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_923 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_925 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_925 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_925 .background-img{
                border-radius:;
            }
        #medical_box_925 .new_medical_title{color:#000;font-weight:500;font-size:19px;text-align:right;line-height:33px;}#medical_box_925:hover .new_medical_title{}
                #medical_box_925 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_925 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_296:hover .new_medical_icon{}#medical_box_925.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-right:20px;padding-left:20px;border-style:none;}#medical_box_925:hover{}#medical_box_925 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;border-style:solid;border-color:#555;}#medical_box_925:hover .new_medical_description{}
                #medical_box_925 
            
            #medical_box_925 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_925 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_925:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_925 .mode1-size_925{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_925 .new_medical_box > div{
                width:100%;
            }
             #medical_box_925 > div{
               height:100%;
            }
            #medical_box_925 .mode2-size_925{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_925 .mode3-size_925{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_925 .mode4-size_925{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_925 .mode5-size_925{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_925 .mode6-size_925{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_925 .mode7-size_925{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_925 .mode7-size_925 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_925 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_925 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_925{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_925 span:hover{
                color:!important;
            }
            .custom2_925{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_925 span:hover{
                color:;
            }
            #medical_box_925 .mode-btn1_925{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_925 .mode-btn1_925 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_925 .mode-btn2_925{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_925 .mode-btn2_925 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_925 .div-btn-title_main_925{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_925 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_925 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_930 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_930 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_930 .background-img{
                border-radius:;
            }
        #medical_box_930 .new_medical_title{color:#000;font-weight:500;font-size:19px;text-align:right;padding-right:20px;padding-left:5px;}#medical_box_930:hover .new_medical_title{}
                #medical_box_930 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_930 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;margin-top:0px;border-style:solid;border-color:#000;}#medical_box_930:hover .new_medical_icon{border-color:#f5222d !important;}#medical_box_930.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:25px;border-style:none;border-top-width:4px;border-color:#d9f7be;}#medical_box_796:hover{}#medical_box_930 .new_medical_description{color:#000;font-weight:500;font-size:18px;line-height:35px;text-align:justify;padding-right:40px;border-style:solid;border-color:#555;}#medical_box_930:hover .new_medical_description{}
                #medical_box_930 
            
            #medical_box_930 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_930 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_930:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_930 .mode1-size_930{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_930 .new_medical_box > div{
                width:100%;
            }
             #medical_box_930 > div{
               height:100%;
            }
            #medical_box_930 .mode2-size_930{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_930 .mode3-size_930{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_930 .mode4-size_930{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_930 .mode5-size_930{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_930 .mode6-size_930{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_930 .mode7-size_930{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_930 .mode7-size_930 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_930 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_930 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_930{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_930 span:hover{
                color:!important;
            }
            .custom2_930{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_930 span:hover{
                color:;
            }
            #medical_box_930 .mode-btn1_930{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_930 .mode-btn1_930 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_930 .mode-btn2_930{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_930 .mode-btn2_930 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_930 .div-btn-title_main_930{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_930 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_930 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_931 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/online diet/guidance/1621140587_هد ، پروفایل.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_931 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_931 .background-img{
                border-radius:;
            }
        
            #medical_box_931 .new_medical_icon{
                
            }
        #medical_box_931 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;line-height:35px;}#medical_box_933:hover .new_medical_title{}
                #medical_box_931 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_931 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:100%;height:100px;border-style:none;border-color:#000;}#medical_box_931:hover .new_medical_icon{}#medical_box_931.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_932:hover{}#medical_box_931 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_931 
            
            #medical_box_931 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_931 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_931:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_931 .mode1-size_931{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_931 .new_medical_box > div{
                width:100%;
            }
             #medical_box_931 > div{
               height:100%;
            }
            #medical_box_931 .mode2-size_931{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_931 .mode3-size_931{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_931 .mode4-size_931{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_931 .mode5-size_931{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_931 .mode6-size_931{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_931 .mode7-size_931{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_931 .mode7-size_931 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_931 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_931 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_931{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_931 span:hover{
                color:!important;
            }
            .custom2_931{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_931 span:hover{
                color:;
            }
            #medical_box_931 .mode-btn1_931{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_931 .mode-btn1_931 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_931 .mode-btn2_931{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_931 .mode-btn2_931 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_931 .div-btn-title_main_931{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_931 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_931 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_932 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/online diet/guidance/1621141337_داشبورد کاربری.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_932 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_932 .background-img{
                border-radius:;
            }
        
            #medical_box_932 .new_medical_icon{
                
            }
        #medical_box_932 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-bottom:20px;line-height:35px;}#medical_box_932:hover .new_medical_title{}
                #medical_box_932 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_932 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:100%;height:800px;border-radius:30px;border-style:none;border-color:#000;}#medical_box_932:hover .new_medical_icon{}#medical_box_932.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_932:hover{}#medical_box_932 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_932 
            
            #medical_box_932 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_932 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_932:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_932 .mode1-size_932{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_932 .new_medical_box > div{
                width:100%;
            }
             #medical_box_932 > div{
               height:100%;
            }
            #medical_box_932 .mode2-size_932{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_932 .mode3-size_932{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_932 .mode4-size_932{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_932 .mode5-size_932{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_932 .mode6-size_932{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_932 .mode7-size_932{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_932 .mode7-size_932 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_932 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_932 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_932{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_932 span:hover{
                color:!important;
            }
            .custom2_932{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_932 span:hover{
                color:;
            }
            #medical_box_932 .mode-btn1_932{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_932 .mode-btn1_932 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_932 .mode-btn2_932{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_932 .mode-btn2_932 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_932 .div-btn-title_main_932{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_932 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_932 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_933 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/online diet/guidance/1621142687_پروفایل.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_933 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_933 .background-img{
                border-radius:;
            }
        
            #medical_box_933 .new_medical_icon{
                
            }
        #medical_box_933 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;line-height:35px;}#medical_box_933:hover .new_medical_title{}
                #medical_box_933 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_933 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:100%;height:800px;border-radius:30px;border-style:none;border-color:#000;}#medical_box_933:hover .new_medical_icon{}#medical_box_933.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_932:hover{}#medical_box_933 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_933 
            
            #medical_box_933 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_933 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_933:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_933 .mode1-size_933{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_933 .new_medical_box > div{
                width:100%;
            }
             #medical_box_933 > div{
               height:100%;
            }
            #medical_box_933 .mode2-size_933{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_933 .mode3-size_933{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_933 .mode4-size_933{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_933 .mode5-size_933{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_933 .mode6-size_933{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_933 .mode7-size_933{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_933 .mode7-size_933 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_933 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_933 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_933{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_933 span:hover{
                color:!important;
            }
            .custom2_933{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_933 span:hover{
                color:;
            }
            #medical_box_933 .mode-btn1_933{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_933 .mode-btn1_933 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_933 .mode-btn2_933{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_933 .mode-btn2_933 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_933 .div-btn-title_main_933{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_933 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_933 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_934 .new_medical_icon{
                background-image:url("https://metodeman.ir/files/online diet/guidance/1621143509_رژیم کاربر.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_934 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_934 .background-img{
                border-radius:;
            }
        
            #medical_box_934 .new_medical_icon{
                
            }
        #medical_box_934 .new_medical_title{color:#000;font-weight:500;font-size:20px;text-align:center;margin-top:20px;margin-bottom:20px;line-height:35px;}#medical_box_933:hover .new_medical_title{}
                #medical_box_934 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_934 .new_medical_icon{background-size:100% 100%;background-position:center;background-repeat:no-repeat;min-width:100%;height:800px;border-radius:30px;border-style:none;border-color:#000;}#medical_box_934:hover .new_medical_icon{}#medical_box_934.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_932:hover{}#medical_box_934 .new_medical_description{color:#000;font-weight:500;text-align:justify;border-style:solid;border-color:#555;}#medical_box_797:hover .new_medical_description{}
                #medical_box_934 
            
            #medical_box_934 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_934 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_934:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_934 .mode1-size_934{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_934 .new_medical_box > div{
                width:100%;
            }
             #medical_box_934 > div{
               height:100%;
            }
            #medical_box_934 .mode2-size_934{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_934 .mode3-size_934{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_934 .mode4-size_934{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_934 .mode5-size_934{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_934 .mode6-size_934{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_934 .mode7-size_934{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_934 .mode7-size_934 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_934 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_934 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_934{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_934 span:hover{
                color:!important;
            }
            .custom2_934{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_934 span:hover{
                color:;
            }
            #medical_box_934 .mode-btn1_934{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_934 .mode-btn1_934 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_934 .mode-btn2_934{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_934 .mode-btn2_934 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_934 .div-btn-title_main_934{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_934 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_934 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_239 .new_medical_title_main{color:#000;font-weight:bold;font-size:20px;justify-content:center;text-align:center;margin-top:20px;line-height:60px;}.module[data-id_page='262']:hover .new_medical_title_main{}#module_new_medical_239 .new_medical_box_main{background-color:#fff;display:flex;flex-wrap:wrap;visibility:visible;padding-top:30px;padding-bottom:30px;padding-right:50px;padding-left:50px;border-radius:20px;border-style:solid;border-top-width:4px;border-right-width:4px;border-bottom-width:4px;border-left-width:4px;border-color:#d9f7be;}.module[data-id_page='262']:hover .new_medical_box_main{}
            #module_new_medical_239 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_239 .new_medical_module{
                    width:1100px;
                    position:relative;
                    overflow:hidden;
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_239 .medical_box_main_animation_trigger{
                    margin-left:px;
                    margin-bottom:20px;
                }
                #module_new_medical_239 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_239 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_239 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_239 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_239 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_239 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_239 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_239 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_239{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_239 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_239 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_239 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_239 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_239 .swiper-container{
                width:1200px;
            }
            #module_new_medical_239 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_239 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_239 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_239 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='401']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:50px;border-style:none;}.module[data-id_page='401']:hover{;}.module[data-id_page='401']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='401'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='401'] 
            
            .module[data-id_page='401'] .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='401'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='401']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #module_new_comment_12 .new_comment_title{color:#000;font-weight:500;font-size:18px;text-align:center;margin-bottom:30px;width:1200px;line-height:33px;}.module[data-id_page='251']:hover .new_comment_title{}
                #module_new_comment_12 .new_comment_title span{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
            #pagination_product{
                padding: 5px;
                border: 1px solid #e8e8e8;
                border-radius: 3px;
                justify-content: space-between;
                margin: 15px 0;
                display: flex;
                width: 100%;
                height: 50px;
                height: max-content;
                height: fit-content;
            }
            #pagination_product > div {
                display: flex;
            }
            #pagination_product > div > *{
                margin: 0 10px;
            }
            #pagination_product span,#pagination_product a,#pagination_product label{
                text-align: center;
                flex-direction: column;
                display: flex;
                justify-content: center;
                border: 1px solid #bababa;
                border-radius: 50%;
            }
            #pagination_product a,#pagination_product label{
                background-color: #ffffff;
                color: #0f0f0f;
                width: 30px;
                height: 30px;
                cursor: pointer;
            }
            #pagination_product span{
                background-color: #e8e8e8;
                color: #5e5e5e;
                opacity: .8;
                width: 32px;
                height: 32px;
            }
            #pagination_product i{
                font-size: 23px;
                margin-bottom: 1px;
            }
            #pagination_product .fa-caret-right{
                margin-left: 4px;
            }
            #pagination_product .fa-caret-left{
                margin-right: 4px;
            }
            #pagination_product label:after{
                content:"" !important;
            }
            #pagination_product_button{
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }
            .pagination_product_button_load_more{
                padding: 5px;
                border: 1px solid #e8e8e8;
                border-radius: 3px;
                margin: 15px 0;
                width: calc(100% - 50px);
                height: fit-content;
                text-align: center;
                color: #333;
                cursor: pointer;
            }
        
            .fw500{
                font-weight: 500;
            }
            .parent_input_box{
                background-color: #e8e8e8;
                padding: 0;
                border-radius: 3px;
                margin: 5px 0;
            }
            .parent_input_box:first-child{
                margin-top: 0;
            }
            .parent_input_box > div:first-child{
                width: 10%;
                text-align: center;
                color: #555;
            }
            
            .new_color_tag{
                color: #00AFEF !important;
            }
            .flex1{
                flex: 1 0;
            }
            .module_new_comment12 .input_box{
                background-color: #e8e8e8;
                padding: 5px 10px;
                border: 2px solid transparent;
                border-radius: 5px;
                width: 100%;
            }
            .module_new_comment .input_box:focus{
                border-color: #6ac7ff;
            }
            .module_new_comment .input_box.error{
                border-color: #f4b3b3;
            }
            .module_new_comment textarea{
                min-height: 140px;
                width: 100%;
                resize: vertical;
            }
            .module_new_comment input{
                width: 318px;
            }
            .module_new_comment12 button{
                padding: 9px 0;
                border: none;
                width: 100%;
                background-color: green;
                color: #FFFFFF;
                margin-top:3px;
                max-width: 250px;
                border-radius: 3px;
                cursor: pointer;
                -webkit-box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
                -moz-box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
                box-shadow:0 14px 26px -12px #afafaf, 0 4px 23px 0 #f7fff7, 0 8px 10px -5px #003700;
            }
            .module_new_comment12 button:hover{
                -webkit-box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
                -moz-box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
                box-shadow: 0 14px 26px -12px #417a41, 0 4px 23px 0 #ffffff, 0 8px 10px -5px #0c510a;
            }
            #new_comment_popup .module_new_comment{
                display: block;
                width: 600px;
            }
            #new_comment_popup .input_box{
                border-radius: 1px;
            }
            #new_comment_popup .parent_input_box{
                width: 49%;
                margin: 0;
            }
            #new_comment_popup .parent_input_box input{
                width: 265px;
            }
            .module_new_comment .result-msg{
                height:50px;
                line-height: 50px;
                padding: 0 20px;
                border: 2px solid;
                border-radius: 4px;
                font-weight: 300;
                margin: 10px 0;
                font-size: 14px;
            }
            .module_new_comment .result-msg.accept-send-msg{
                color: #054012;
                background-color: #a6edbb;
                border-color: #93e2ab;
            }
            .module_new_comment .result-msg.error-send-msg{    
                color: #570b10;
                background-color: #f8c3c3;
                border-color: #f4b3b3;
            }
            .parent-comment-box{
                background-color: #fff;
                padding: 30px 10px;
                font-size: 14px;
                border-bottom: 1px solid #eee;
                color: #2F425C;
                text-align: justify;
            }
            .parent-answer-box{
                background-color: #eee;
                padding: 10px;
                width: 98%;
                margin: 15px auto;
                position:relative;
                border: 1px solid #ddd;
                border-radius: 2px;
            }
            .parent-answer-box:before{
                content: "";
                border: 8px solid;
                position: absolute;
                right: 30px;
                bottom: 100%;
                border-color: transparent transparent #ddd transparent;
                z-index: 9;
            }
            .answer-comment-btn span{
                color: #c71b0c;
                font-weight: 500;
                margin-right: 5px;
                font-size: 15px;
            }
            .answer-comment-btn i{
                color: #c71b0c;
            }
            .parent-score{
                padding: 0 10px;
                margin: 0 3px;
                border: 1px solid #e0e0e0;
                border-radius: 2px;
            }
            .parent-score i{
                margin-right: 5px;
                cursor: pointer;
            }
            .like-score.chooses{
                color: #05810b;
            }
            .dis-like-score.chooses{
                color: #c71b0c;
            }
            .favorite-score i{
                cursor: pointer;
            }
            .favorite-score .like-score.chooses{
                color: #c71b0c;
            }
            .txtd-left{
                direction: ltr;
                text-align: left;
            }
            .txtd-right{
                direction: rtl;
                text-align: right;
            }
            .placeholder-right:-moz-placeholder{
                text-align: right !important;
            }
            .placeholder-right:-ms-input-placeholder{
                text-align: right !important;
            }
            .placeholder-right::-webkit-input-placeholder{
                text-align: right !important;
            }
            .placeholder-left:-moz-placeholder{
                text-align: left !important;
            }
            .placeholder-left:-ms-input-placeholder{
                text-align: left !important;
            }
            .placeholder-left::-webkit-input-placeholder{
                text-align: left !important;
            }
            #result_send_msg{
                text-align: center;
                padding: 0.5rem 0;
                color: red;
            }
        
                .subArrow{
                    color: !important;
                    padding-right: 5px;
                    vertical-align: middle;
                    font-size: 12px;
                    margin-top: 2px;
                }
                .lngBtn{
                    width: 24px;
                    height: 24px;
                    line-height: 21px;
                    color: #585757;
                    background-color: #ccc9c9;
                    font-size: 13px;
                    border-radius: 4px;
                    box-shadow: 2px 1px 2px #aaaaaa;
                    cursor:pointer;
                    border: 1px solid #ccc9c9;
                }
                .lngBtn.langActive{background-color: #f0f0fb;border-color:#cacaca;}
                .lngBtn>img{
                    width:100%;
                    height:100%;
                    object-fit:cover;
                }
                .lngBtn:hover{
                    background-color: #f0f0fb;
                    border-color: #d1d1d4;
                    color: gray;
                }
                .su_sub_menu{
                    right: 100%;
                    display:none;
                    position:absolute;
                    padding:0;
                    background: #ffffff;
                    z-index: 1000;
                    top: 0;
                     -webkit-transition: opacity,.3s ease-in-out;
                    -moz-transition: opacity,.3s ease-in-out;
                    -o-transition: opacity,.3s ease-in-out;
                    transition: opacity,.3s ease-in-out;
                    min-width: 120%;
                    cursor: pointer;
                    }
                .s_sub_sub_title {font-size:13px !important;font-weight:normal !important;white-space: nowrap;}
                .sub-nav li:hover .su_sub_menu,.sub-nav li ul li:hover .su_sub_menu{
                    display:block;
                }
                .su_sub_menu li:hover .s_sub_sub_title, .su_sub_menuEn li:hover .s_sub_sub_title{
                     color: !important;
                }
                .sub-nav li:hover .s_sub_title, .sub-navEn li:hover .s_sub_title{
                    color: !important;
                }
                .s_sub_title{display:inline-block;}
                .sub-nav li:hover .sub_arrow{
                    content: "";
                    background-image: url(https://metodeman.ir/files/main/main/img/icons/arrow-hi.png);
                    background-size:contain;
                    background-repeat:no-repeat;
                }
                .sub_arrow{width:5%;height:10px;}
                .sub_arrow.rotate{transform:rotate(180deg);}

                .m_title{width:92%;}
            
        .medical_main_content.fixed{
            position: fixed !important;
            top: 0 !important;
            height: 61px;
            z-index: 400 !important;
            top: 0;
            left: 0;
            right: 0;
            background-color:#FFFFFF;
            border-bottom: 1px #B5B5BB solid;
            box-shadow: 0 2px 4px rgba(51,51,51,0.20);
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
       }
       #header_menu_container>.co_main_content{
           height: 61px;
           background-color:#FFFFFF;
       }
        .st-box-w0{width:10%;}
        .st-box-w1{width:60%;}
        .st-box-w2{width:28%;}
       #s_breadCrump{
            width: 1200px;
            margin: auto;
            height: 60px;
            line-height:60px;
        }
        #s_breadCrump span,#s_breadCrump a{display:inline-block;padding: 0px 10px;}
        #div_profile_picture{vertical-align:middle;}
        .lineHeight{line-height:2;}
            #header{
                width:100%;
                position:relative;
                z-index:999;
            }
            #header_top_bg{
                width:100%;
                height:40px;
                background-color:#F1F1F1;
            }
            #tellNum{font-size:20px;}
            #tellRow{width:100%;}
            #header_top_container{
                width:1200px;
                margin:auto;
                padding:5px 0;
            }
            #header_center_container{
                width:1200px;
                height: 110px;
                line-height:110px;
                margin:auto;
                position:relative;
                z-index:102;
                background:#FFFFFF;
            }
            #leftSideBox{
                width:600px;
            }
            .subDiv{
                width:49%;display:inline-block;vertical-align:top;
            }
            #tellBox{
                text-align:left;
            }
            #header_menu_container{
                width:100%;
                border: .5px solid #eeeeee;
                position: relative;
                z-index: 10;
                background: #ffffff;
            }
            #fixed_header_menu_container{
                width:100%;
                border: .5px solid #eeeeee;
                position:fixed;
                top:-100px;
                z-index: 1000;
                background: #fff;
                opacity:0;

            }
            .sub-nav{
                width: max-content;
                right: 0px;
                visibility: hidden;
                opacity: 0;
                background: #ffffff;
                position: absolute;
                z-index: 1000;
                top: 100%;
                 -webkit-transition: opacity,.3s ease-in-out;
                 -moz-transition: opacity,.3s ease-in-out;
                 -o-transition: opacity,.3s ease-in-out;
                 transition: opacity,.3s ease-in-out;
                cursor:pointer;
                box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.32);
                min-width:120%;
            }
            .s_sub_title {
                font-size:14px !important;
                font-weight:normal !important;
                white-space:nowrap;
                cursor:pointer;
            }
            .sub-nav li {
                position: relative;
                display: block;
                padding: 5px 10px 0;
                box-sizing: border-box;
                line-height: 40px;
                z-index:100000;
                text-align:right;
            }

            .menu_items:hover .sub-nav{
                visibility: visible;
                opacity:1;
            }
            .sub-nav li:hover{background:;}
            #navigation{
                width:1200px;
                margin:auto;
                -webkit-flex-grow: 10;
                -moz-flex-grow: 10;
                -ms-flex-positive: 10;
                display: flex;
                -ms-flex-grow: 10;
                flex-grow: 10;
                -webkit-justify-content: flex-start;
                -moz-justify-content: flex-start;
                -ms-justify-content: flex-start;
                justify-content: flex-start;
                -ms-flex-pack: justify;
            }
            #fixed_navigation{
                width:1200px;
                margin:auto;
            }
            .active_g{
                border-top:2px solid  !important;
            }
            .activeTxt{color:;}
            #logoBox{width:600px;text-align:right;}
            #st_address{width:345px;
                text-align: right;}
            #st_gap{width:265px;}
            #st_tell{width:210px;
                text-align: left;}
            .header_center_box{
                display:table-cell;
            }
            .st-address{
                display:table-cell;
                vertical-align:middle;
            }
            #tellIcon{
                width:22px;
                background-image:url(https://metodeman.ir/files/1/tell.png);
                background-size:contain;
                background-repeat:no-repeat;
            }
            #addressIcon{
                width:10%;

            }
            .menu_items{
                display: flex;
                -webkit-flex-grow: 0;
                -moz-flex-grow: 0;
                -ms-flex-positive: 0;
                -ms-flex-grow: 0;
                flex-grow: 0;
                -webkit-justify-content: center;
                -moz-justify-content: center;
                -ms-flex-pack: center;
                -ms-justify-content: center;
                justify-content: center;

                height: 60px;
               /* display: table-cell;*/
                line-height: 20px;
                text-align: center;
                border: .5px solid #eeeeee;
                position: relative;
                padding:18px 20px 8px 20px;
            }
            .menu_items a,.menu_items span{
                font-size: 14px;
                font-weight: bold;
            }
            #img-logo{
               height:80px;
               object-fit: cover;
               max-height: 110px;
            }
            .st-box{
                display:inline-block;
                line-height:30px;
                vertical-align: top;
            }
            #lngBox{
               width:10%;
               display:inline-block;
               line-height:30px;
               vertical-align: top;
               text-align: center;
            }
            #st-txtRight{
                text-align:right;
            }
            .st-txtRight{
                text-align:right;
            }
            #st-txtLeft{
                text-align:left;
            }
            .st-icons{
                width:26px;
                height:26px;
            }
            .st-txtLeft{
                display:inline-block;
            }
            #en-fa{
                width:26px;
                height:26px;
            }
            .rightItems{
                display:inline-block;
                margin-left:20px;
           }
           .leftItems{
                display:inline-block;
                margin-left:10px;
           }
           #mailIcon{
                width:19px;
                height:22px;
                background-image:url(https://metodeman.ir/files/1/email.png);
                background-size:contain;
                background-repeat:no-repeat;
           }
           .st-mail{
                display: inline-block;
                vertical-align: middle;
                font-size:14px;
                color:#898989;
           }
           .address_box{
                padding:10px;
           }
           #address_txt{width:88%;font-size:14px;}
           #contactUsLink{
                font-size: 14px;
                color: #898989;
                text-decoration: underline;
           }

        #module_footer_section_4{
;
width:90%;
padding-top:1.2vw;
padding-right:5%;
padding-left:5%;
border-style:none;
}#module_footer_column_5{
;
width:30%;
padding-bottom:6px;
border-style:none;
}#module_footer_items_14{
;
cursor:default;
width:50vw;
height:8vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_14:hover{
;
}#module_footer_column_6{
;
width:20%;
padding-left:2vw;
border-style:none;
}#module_footer_items_15{
;
cursor:default;
color:#E6E6E6;
font-weight:bold;
font-size:1.45vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:0px;
padding-top:80px;
}#module_footer_items_15:hover{
;
}#module_footer_column_7{
;
width:20%;
border-style:none;
}#module_footer_row_9{
;
margin-right:30px;
border-style:none;
}#module_footer_items_16{
;
cursor:default;
color:#E6E6E6;
font-weight:bold;
font-size:1.45vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
padding-top:80px;
}#module_footer_items_16:hover{
;
}#module_footer_column_8{
;
width:20%;
border-style:none;
}#module_footer_items_17{
;
cursor:default;
color:#E6E6E6;
font-weight:bold;
font-size:1.45vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_17:hover{
;
}#module_footer_section_5{
;
width:90%;
padding-top:-1px;
padding-right:5%;
padding-left:5%;
border-style:none;
}#module_footer_column_9{
;
width:30%;
margin-top:0px;
border-style:none;
}#module_footer_items_18{
;
cursor:default;
text-align:justify;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_18:hover{
;
}#module_footer_row_12{
;
padding-top:3vw;
border-style:none;
}#module_footer_items_19{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_19:hover{
;
opacity:.75;
}#module_footer_items_20{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_20:hover{
;
}#module_footer_items_21{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_21:hover{
;
}#module_footer_items_117{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_117:hover{
;
}#module_footer_items_136{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_136:hover{
;
}#module_footer_column_10{
;
width:24%;
margin-top:0px;
padding-left:2vw;
border-style:none;
}#module_footer_items_23{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_23:hover{
;
}#module_footer_items_24{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_24:hover{
;
color:#1890ff;
}#module_footer_row_14{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_112{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_112:hover{
;
}#module_footer_items_113{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_113:hover{
;
}#module_footer_row_15{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_27{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_27:hover{
;
}#module_footer_items_28{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_28:hover{
;
color:#1890ff;
}#module_footer_row_16{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_29{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_29:hover{
;
}#module_footer_items_30{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_30:hover{
;
color:#1890ff;
}#module_footer_row_17{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_31{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_31:hover{
;
}#module_footer_items_32{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_32:hover{
;
color:#1890ff;
}#module_footer_row_18{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_33{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_33:hover{
;
}#module_footer_items_34{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_34:hover{
;
color:#1890ff;
}#module_footer_row_66{
;
padding-top:.35px;
border-style:none;
}#module_footer_items_127{
;
cursor:default;
width:0.45vw;
height:0.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:0.5vw;
margin-right:1.25vw;
}#module_footer_items_127:hover{
;
}#module_footer_items_128{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:0.5vw;
}#module_footer_items_128:hover{
;
color:#1890ff;
}#module_footer_column_11{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_row_19{
;
padding-top:.35px;
border-style:none;
}#module_footer_items_35{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_35:hover{
;
}#module_footer_items_36{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_36:hover{
;
color:#096dd9;
}#module_footer_row_20{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_37{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_37:hover{
;
}#module_footer_items_38{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_38:hover{
;
color:#096dd9;
}#module_footer_row_21{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_39{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_39:hover{
;
}#module_footer_items_40{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_40:hover{
;
color:#096dd9;
}#module_footer_row_22{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_41{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_41:hover{
;
}#module_footer_items_42{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_42:hover{
;
color:#096dd9;
}#module_footer_row_23{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_43{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_43:hover{
;
}#module_footer_items_44{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_44:hover{
;
color:#096dd9;
}#module_footer_row_24{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_45{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_45:hover{
;
}#module_footer_items_46{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:.5vw;
}#module_footer_items_46:hover{
;
color:#096dd9;
}#module_footer_row_67{
;
padding-top:.35vw;
border-style:none;
}#module_footer_items_125{
;
cursor:default;
width:.45vw;
height:.65vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:.5vw;
margin-right:1.25vw;
}#module_footer_items_125:hover{
;
}#module_footer_items_126{
;
cursor:default;
line-height:2vw;
color:#E6E6E6;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-right:0.5vw;
}#module_footer_items_126:hover{
;
color:#096dd9;
}#module_footer_column_12{
;
width:20%;
margin-top:0px;
border-style:none;
}#module_footer_row_60{
;
justify-content:center;
border-style:none;
}#module_footer_items_109{
;
cursor:pointer;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_109:hover{
;
}#module_footer_items_110{
;
cursor:default;
width:11vw;
height:11vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_110:hover{
;
}#module_footer_row_61{
;
justify-content:center;
padding-top:2vw;
border-style:none;
}#module_footer_items_111{
;
cursor:default;
width:14vw;
height:7vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_111:hover{
;
}#module_footer_section_11{
;
width:90%;
justify-content:flex-start;
padding-top:1vw;
padding-right:5%;
padding-bottom:1vw;
padding-left:5%;
border-style:none;
}#module_footer_column_24{
;
width:85%;
border-style:none;
}#module_footer_items_105{
;
cursor:default;
line-height:2vw;
color:#ffffff;
font-weight:500;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_105:hover{
;
}#module_footer_column_25{
;
width:15%;
border-style:none;
}#module_footer_items_106{
;
cursor:default;
color:#ffffff;
font-weight:500;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_106:hover{
;
}#public_footer_main_2{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_2:hover{;}#public_footer_main_2 .new_admin_layer{;}#public_footer_main_2:hover .new_admin_layer{;}
                #public_footer_main_2{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_2 > div{
                    position:relative;
                    z-index:12;
                }
                
                #public_footer_main_2:hover .background-img {
                    filter:none;
                }
            
                #public_footer_main_2 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #public_footer_main_2 #public_footer_main_2 .new_admin_layer{;}#public_footer_main_2:hover .new_admin_layer{;}
            
            #public_footer_main_2 .new_admin_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #public_footer_main_2 .layer_first_child {
                width: 100%;
            }
        
            #public_footer_main_2:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                    #public_footer_main_2{
                        background-image:url("https://metodeman.ir/files/banner/1612203271_01.jpg") !important;
                    }
                
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

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

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

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

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

            #msg_footer .close_msg:hover,
            #msg_footer_complete .close_msg:hover{
                color: #000;
            }
            
            .border_red{
                border: 1px solid #e20000;
            }
            footer a{
                color: inherit;
            }
        .dno{display:none!important;}
            #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;}