/**
 * 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;
}
            
            .txt_on_img_right{
                right: 0px;
            }
            .txt_on_img_left{
                left: 0px;
            }
            .txt_on_img{

                top: 0;
                width: 35%;
                height: 100%;
                padding: 10% 7%;
            }
            .txt_on_img div{
                margin-top: 30px;
            }
            .txt_on_img p{
                line-height: 2em;
            }
            .txt_on_img a{
                border: 2px solid;
            }
            .txt_on_img .slider_link2{
                padding: 5px 20px;
                transition: all  0.2s;
            }
            .txt_on_img .slider_link2:hover{
                background-color: ;
                border-color:;
                color:white !important;
            }
            .slidersimple {
                overflow: hidden;
                position: relative;
                background: #f5f5f5;
                width: 100%;
                text-align: center;
            }
            .slidersimple_r-img-item img{
                width:100%;
                height:100%;
                object-fit: fill;
            }
            .slidersimple_rBulletBox{
                width:100%;
                position: absolute;
                bottom:0;
            }
        
            
            .slider_link{
                position: absolute;
                right: 0;
                width: 100%;
                height: 100%;
            }

            .slidersimple> .slidersimple_r-arrow.left{
                z-index: 9;
                left:0px;
                transform: scaleX(-1);
            }
            .slidersimple> .slidersimple_r-arrow.right{
                -moz-transform: scaleX(-1);
                -o-transform: scaleX(-1);
                -webkit-transform: scaleX(-1);
                transform: scaleX(1);
                filter: FlipH;
                -ms-filter: "FlipH";
                right: 0px;
                top:0;
            }
            .slidersimple> .slidersimple_r-arrow{
                display:inline-block;
                background:url(https://noroweb.com/demo-c118/files/main/main/img/icons/flesh.svg) no-repeat center;
                background-size:contain;
                cursor:pointer;
                background-size: 50%;
                width: 40px;
                height:100%;
                position: absolute;

            }
            .slidersimple>.slidersimple_r-mask{width:100%;height:100%; display:inline-block;overflow:hidden;position:relative;}
            .slidersimple_r-img-item{right:0;width:100%;height:100%;margin:auto;position:absolute;text-align:center;}


            /*.slidersimple_rBullet:hover{background:}*/

            .slidersimple_rBullet.slidersimple_rSelected{background:;}
            .slidersimple_rSelected{
                /*padding-top: 5px;*/
                opacity: 1;
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rSelected img{
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }
            .slidersimple_rBullet{width:13px; height:13px; background:transparent; border-radius:20px;display:inline-block;border: 1px solid ;
                        margin:3px; -webkit-transition: background .15s ease-in-out;
                 -moz-transition: background .15s ease-in-out;
                 -o-transition: background .15s ease-in-out;
                 transition: background .15s ease-in-out;}
        #slidersimple2{
                        font-size:0px;
                }#slidersimple2 .color_tem1{ /*range asli color ??? */
            color: ;
        }#slidersimple2 .color_tem2{ /*range asli color ??? */
            color: ;
        }#slidersimple2 .color_tem1_bg{/*range back box  */
            background-color: ;
        }#slidersimple2 .color_tem2_bg{/*range back box if gradient*/
            background-color: ;
        }#slidersimple2 .color_title{/*range title asli module*/
                            color: ;
                                }#slidersimple2 .color_text{/*range text haye module  */
                            color:;
                                }#slidersimple2 .color_link{/*range linki ke matni bashe btn nabshe */
                            color:;
                                }#slidersimple2 .color_link_hover:hover{/*range  text link hover*/
                            color: ;
                                }#slidersimple2 .color_b_text{/*range link button manand range matnesh*/
                            color: ;
                                }#slidersimple2 .color_b_bg{/*range button i ke link shode backgroundesh! */
                            background-color: ;
                                }#slidersimple2 .color_b_h_text:hover{/*range hover text az button i ke link hast */
                            color: ;
                                }#slidersimple2 .color_b_h_bg:hover{/*range hover background un button e ke link shode*/
                            background-color: ;
                                }#slidersimple2 .color_box_text{/*range text dakhele box ha! */
                            color: ;
                                }#slidersimple2 .color_box_title{/*range title dakhele box ha!*/
                            color: ;
                                }.module[data-id_page='1217']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='1217']:hover{;}.module[data-id_page='1217']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1217'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1217'] 
            
            .module[data-id_page='1217'] .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='1217'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1217']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_232 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_232 .content_str{
				width:100%;
			}
            #module_new_medical_232 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_232 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_232 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_232 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_232 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_232 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_232 .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_232 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_232 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_232 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_232 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_232 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_232 .new_medical_description a,#module_new_medical_232 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_232 .new_medical_description a:hover,#module_new_medical_232 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_232 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_232 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_819 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164492_1f4b_1648897081.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_819 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_819 .background-img{
                border-radius:;
            }
        
            #medical_box_819 .new_medical_icon{
                
            }
        #medical_box_819 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_819:hover .new_medical_title{}
                #medical_box_819 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_819 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_819:hover .new_medical_icon{}#medical_box_819 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_819 
            
            #medical_box_819 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_819 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_819:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_819 .mode1-size_819{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_819 .new_medical_box > div{
                width:100%;
            }
             #medical_box_819 > div{
               height:100%;
            }
            #medical_box_819 .mode2-size_819{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_819 .mode3-size_819{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_819 .mode4-size_819{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_819 .mode5-size_819{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_819 .mode6-size_819{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_819 .mode7-size_819{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_819 .mode7-size_819 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_819 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_819 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_819{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_819 span:hover{
                color:!important;
            }
            .custom2_819{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_819 span:hover{
                color:;
            }
            #medical_box_819 .mode-btn1_819{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_819 .mode-btn1_819 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_819 .mode-btn2_819{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_819 .mode-btn2_819 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_819 .div-btn-title_main_819{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_819 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_819 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_818 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164562_155d_1658329987.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_818 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_818 .background-img{
                border-radius:;
            }
        
            #medical_box_818 .new_medical_icon{
                
            }
        #medical_box_818 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_818:hover .new_medical_title{}
                #medical_box_818 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_818 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_818:hover .new_medical_icon{}#medical_box_818 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_818 
            
            #medical_box_818 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_818 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_818:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_818 .mode1-size_818{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_818 .new_medical_box > div{
                width:100%;
            }
             #medical_box_818 > div{
               height:100%;
            }
            #medical_box_818 .mode2-size_818{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_818 .mode3-size_818{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_818 .mode4-size_818{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_818 .mode5-size_818{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_818 .mode6-size_818{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_818 .mode7-size_818{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_818 .mode7-size_818 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_818 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_818 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_818{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_818 span:hover{
                color:!important;
            }
            .custom2_818{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_818 span:hover{
                color:;
            }
            #medical_box_818 .mode-btn1_818{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_818 .mode-btn1_818 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_818 .mode-btn2_818{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_818 .mode-btn2_818 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_818 .div-btn-title_main_818{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_818 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_818 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_817 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164592_d460_1648898393.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_817 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_817 .background-img{
                border-radius:;
            }
        
            #medical_box_817 .new_medical_icon{
                
            }
        #medical_box_817 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_817:hover .new_medical_title{}
                #medical_box_817 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_817 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_817:hover .new_medical_icon{}#medical_box_817 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_817 
            
            #medical_box_817 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_817 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_817:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_817 .mode1-size_817{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_817 .new_medical_box > div{
                width:100%;
            }
             #medical_box_817 > div{
               height:100%;
            }
            #medical_box_817 .mode2-size_817{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_817 .mode3-size_817{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_817 .mode4-size_817{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_817 .mode5-size_817{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_817 .mode6-size_817{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_817 .mode7-size_817{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_817 .mode7-size_817 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_817 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_817 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_817{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_817 span:hover{
                color:!important;
            }
            .custom2_817{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_817 span:hover{
                color:;
            }
            #medical_box_817 .mode-btn1_817{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_817 .mode-btn1_817 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_817 .mode-btn2_817{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_817 .mode-btn2_817 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_817 .div-btn-title_main_817{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_817 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_817 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_775 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164699_faf9_1657628308.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_775 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_775 .background-img{
                border-radius:;
            }
        
            #medical_box_775 .new_medical_icon{
                
            }
        #medical_box_775 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_775:hover .new_medical_title{}
                #medical_box_775 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_775 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_775:hover .new_medical_icon{}#medical_box_775 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_775 
            
            #medical_box_775 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_775 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_775:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_775 .mode1-size_775{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_775 .new_medical_box > div{
                width:100%;
            }
             #medical_box_775 > div{
               height:100%;
            }
            #medical_box_775 .mode2-size_775{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_775 .mode3-size_775{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_775 .mode4-size_775{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_775 .mode5-size_775{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_775 .mode6-size_775{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_775 .mode7-size_775{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_775 .mode7-size_775 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_775 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_775 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_775{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_775 span:hover{
                color:!important;
            }
            .custom2_775{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_775 span:hover{
                color:;
            }
            #medical_box_775 .mode-btn1_775{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_775 .mode-btn1_775 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_775 .mode-btn2_775{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_775 .mode-btn2_775 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_775 .div-btn-title_main_775{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_775 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_775 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_774 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164761_6bd1_1648897133.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_774 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_774 .background-img{
                border-radius:;
            }
        
            #medical_box_774 .new_medical_icon{
                
            }
        #medical_box_774 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_774:hover .new_medical_title{}
                #medical_box_774 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_774 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_774:hover .new_medical_icon{}#medical_box_774 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_774 
            
            #medical_box_774 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_774 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_774:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_774 .mode1-size_774{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_774 .new_medical_box > div{
                width:100%;
            }
             #medical_box_774 > div{
               height:100%;
            }
            #medical_box_774 .mode2-size_774{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_774 .mode3-size_774{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_774 .mode4-size_774{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_774 .mode5-size_774{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_774 .mode6-size_774{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_774 .mode7-size_774{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_774 .mode7-size_774 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_774 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_774 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_774{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_774 span:hover{
                color:!important;
            }
            .custom2_774{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_774 span:hover{
                color:;
            }
            #medical_box_774 .mode-btn1_774{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_774 .mode-btn1_774 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_774 .mode-btn2_774{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_774 .mode-btn2_774 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_774 .div-btn-title_main_774{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_774 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_774 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_773 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164826_4660_1655015357.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_773 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_773 .background-img{
                border-radius:;
            }
        
            #medical_box_773 .new_medical_icon{
                
            }
        #medical_box_773 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_773:hover .new_medical_title{}
                #medical_box_773 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_773 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_773:hover .new_medical_icon{}#medical_box_773 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_773 
            
            #medical_box_773 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_773 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_773:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_773 .mode1-size_773{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_773 .new_medical_box > div{
                width:100%;
            }
             #medical_box_773 > div{
               height:100%;
            }
            #medical_box_773 .mode2-size_773{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_773 .mode3-size_773{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_773 .mode4-size_773{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_773 .mode5-size_773{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_773 .mode6-size_773{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_773 .mode7-size_773{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_773 .mode7-size_773 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_773 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_773 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_773{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_773 span:hover{
                color:!important;
            }
            .custom2_773{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_773 span:hover{
                color:;
            }
            #medical_box_773 .mode-btn1_773{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_773 .mode-btn1_773 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_773 .mode-btn2_773{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_773 .mode-btn2_773 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_773 .div-btn-title_main_773{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_773 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_773 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_772 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659164870_3a31_1648897095.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_772 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_772 .background-img{
                border-radius:;
            }
        
            #medical_box_772 .new_medical_icon{
                
            }
        #medical_box_772 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_772:hover .new_medical_title{}
                #medical_box_772 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_772 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_772:hover .new_medical_icon{}#medical_box_772 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_772 
            
            #medical_box_772 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_772 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_772:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_772 .mode1-size_772{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_772 .new_medical_box > div{
                width:100%;
            }
             #medical_box_772 > div{
               height:100%;
            }
            #medical_box_772 .mode2-size_772{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_772 .mode3-size_772{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_772 .mode4-size_772{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_772 .mode5-size_772{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_772 .mode6-size_772{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_772 .mode7-size_772{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_772 .mode7-size_772 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_772 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_772 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_772{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_772 span:hover{
                color:!important;
            }
            .custom2_772{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_772 span:hover{
                color:;
            }
            #medical_box_772 .mode-btn1_772{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_772 .mode-btn1_772 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_772 .mode-btn2_772{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_772 .mode-btn2_772 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_772 .div-btn-title_main_772{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_772 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_772 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_771 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/icon/1644825499_3a31_1642802102.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_771 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_771 .background-img{
                border-radius:;
            }
        
            #medical_box_771 .new_medical_icon{
                
            }
        #medical_box_771 .new_medical_title{color: #424750;font-weight:500;font-size:14px;text-align:center;margin-top:8px;line-height:28px;}#medical_box_771:hover .new_medical_title{}
                #medical_box_771 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_771 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:50px;border-style:none;border-color:#000;}#medical_box_771:hover .new_medical_icon{}#medical_box_771 .new_medical_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#medical_box_775:hover .new_medical_description{}
                #medical_box_771 
            
            #medical_box_771 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_771 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_771:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_771 .mode1-size_771{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_771 .new_medical_box > div{
                width:100%;
            }
             #medical_box_771 > div{
               height:100%;
            }
            #medical_box_771 .mode2-size_771{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_771 .mode3-size_771{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_771 .mode4-size_771{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_771 .mode5-size_771{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_771 .mode6-size_771{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_771 .mode7-size_771{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_771 .mode7-size_771 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_771 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_771 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_771{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_771 span:hover{
                color:!important;
            }
            .custom2_771{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_771 span:hover{
                color:;
            }
            #medical_box_771 .mode-btn1_771{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_771 .mode-btn1_771 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_771 .mode-btn2_771{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_771 .mode-btn2_771 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_771 .div-btn-title_main_771{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_771 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_771 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_232 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='1217']:hover .new_medical_box_main{}
            #module_new_medical_232 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_232 .new_medical_module{
                    width:136px;
                    position:relative;
                    overflow:hidden;
                    margin-left:16px;
                    margin-bottom:0px;
                }
                #module_new_medical_232 .medical_box_main_animation_trigger{
                    margin-left:16px;
                    margin-bottom:0px;
                }
                #module_new_medical_232 .new_medical_module:nth-child(8n){
                    margin-left:0;
                }
                #module_new_medical_232 .medical_box_main_animation_trigger:nth-child(8n){
                    margin-left:0;
                }
                #module_new_medical_232 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_232 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_232 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_232 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_232 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_232 .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_232{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_232 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_232 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_232 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_232 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_232 .swiper-container{
                width:1200px;
            }
            #module_new_medical_232 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_232 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_232 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_232 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        
            .toastify{
                position: fixed;
                top: 10px;
                right: -100vw;
                border-radius: 3px;
                padding: 0.8rem;
                overflow: hidden;
                z-index: 999999;
                transition: 400ms cubic-bezier(.47,1.64,.41,.8);
                  
            min-width: 350px;
            width: max-content;
        
            }
            .times-tostify{
                flex: 0 0 max-content;
                width: 100%;
                max-width: max-content;
            }
            .times-tostify svg{
                width: 20px;
                height: 20px;
                fill: #fff;
            }
            .head-toastify svg{
                fill: #fff;
            }
            #message_toastify{
                padding-top: 0.5rem;
                color: #fff;
            }
            .error-toastify{
                background-color: #dc3545;    
                box-shadow: 0 1px 20px 1px #dc3545;
            }
            .success-toastify{
                background-color: #28a745;
                box-shadow: 0 1px 20px 1px #28a745;
            }
            .warning-toastify{
                background-color: #ffc107;
                box-shadow: 0 1px 20px 1px #ffc107;
            }
            .info-toastify{
                background-color: #007bff;
                box-shadow: 0 1px 20px 1px #007bff;
            }
            .error-toastify .error-icon,
            .success-toastify .success-icon,
            .info-toastify .info-icon,
            .warning-toastify .warning-icon{
                display: flex !important;
            }
            .error-icon,.success-icon,.warning-icon,.info-icon{
                display: none;
            }
        
            .module_shop_simplesub_7 .email {
                border: 2px solid red;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_7 .email:hover {
                border: 2px solid red;
                background:red;
            }
            .module_shop_simplesub_7 .email:hover .path-email{
                fill:white;
            }
            .module_shop_simplesub_7 .path-email{
                fill: red;
            }
            .module_shop_simplesub_7 .copyclipboard-path {
                fill:#df7964;
            }
            .module_shop_simplesub_7 .copyclipboard {
                border: 2px solid #df7964;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .copyclipboard:hover{
                background:#df7964;
                cursor:pointer;
            }
            .module_shop_simplesub_7 .copyclipboard:hover .copyclipboard-path{
                fill:white;
            }
            .module_shop_simplesub_7 .path-whatsapp{
                fill:green;
            }
            .module_shop_simplesub_7 .title-icon-for-swiper{
                width:px;
                height:px;
                
                
            }
            .module_shop_simplesub_7 .text-title-sub-main{
                
                color:#000;
                background-color:#e8e8e8!important;
            }
            
            .module_shop_simplesub_7 .title-icon-for-swiper-img{
                object-fit: contain;
                width:px;
                height:px;
                
            }
            .module_shop_simplesub_7 .whatsapp {
                border: 2px solid green;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .whatsapp:hover{
                background:green;
            } 
            .module_shop_simplesub_7 .whatsapp:hover .path-whatsapp {
                fill:white;
            }  
            .module_shop_simplesub_7 .telegram {
                border: 2px solid dodgerblue;
                transition:all 0.2s;
            }
            .module_shop_simplesub_7 .telegram:hover .path-telegram{
                fill:white;
            }
            .module_shop_simplesub_7 .telegram:hover {
                background:dodgerblue;
            }
            .module_shop_simplesub_7 .image_share {
                margin: 10px;
                width: 64px;
                height: 64px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 100%;
            }
            .module_shop_simplesub_7 .avatar{
                width: 30px;
                height: 30px;
            }
            .module_shop_simplesub_7 .path-telegram {
                fill: dodgerblue;
            }
            .module_shop_simplesub_7 .back_modal {
                background-color: rgba(0, 0, 0, 0.8);
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                z-index: 1000;
            } 
            .module_shop_simplesub_7 .close_social_network {
                width: 23px;
                height: 23px;
                position: absolute;
                right: 14px;
                cursor: pointer;
                fill: gray;
                top: 10px;
                z-index: 100;
                transition:all 0.2s ease-in-out;
            }
            .module_shop_simplesub_7 .close_social_network:hover {
                width: 21px;
                height: 21px;
            }
            .module_shop_simplesub_7 .title_share_modal {
                font-size: 1.25rem;
                width: 100px;
                height: 20px;
                position: absolute;
                right: 195px;
                cursor: pointer;
                color: gray;
                top: 50px;
                z-index: 100;
            }
            .module_shop_simplesub_7 .modal_body{
                height: 100%;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-top: 30px;
            }  
            .module_shop_simplesub_7 .modal {
                width:500px;
                max-width:500px;
                height:250px;
                background:white;
                position:absolute;
                left:50%;
                top:50%;
                transform:translate(-50%,-50%);
                border-radius:10px;
            } 
            
                .module_shop_simplesub_7 .border-bottom-left{
                    border-bottom-left-radius:0px;
                }
                .module_shop_simplesub_7 .border-bottom-right{
                    border-bottom-right-radius:0px;
                }
                .module_shop_simplesub_7 .link-img{
                    height:100%!important;
                    border-radius:0px;
                }
                .module_shop_simplesub_7 .div-title a{
                    color:#333!important;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .module_shop_simplesub_7{
                    background-color:none;
                    background-image:url(https://noroweb.com/demo-c118/files/);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: left;
                    padding-top:2rem;
                    padding-bottom:4rem;
                    margin-top:0rem;
                    margin-bottom:0rem;
                    z-index:0;
                }
                .module_shop_simplesub_7 .price-center{
                    color:#839AA8;
                    width: 100%;
                    display: flex;
                    justify-content: center; 
                } 
                .module_shop_simplesub_7 .img-price-center{
                    width:30px;
                    height:30px;
                    margin-right:0.5rem; 
                }
                .module_shop_simplesub_7 .box-img-price{
                    width:30px;
                    height:30px;
                    margin-left:2rem;
                } 
                .module_shop_simplesub_7 .div-price-center{
                    width: 100%;
                    display: flex;
                    justify-content: center;
                } 
                .module_shop_simplesub_7 .div-title label{
                    font-size:1em;
                }
                .module_shop_simplesub_7  .div-offer{
                    width:18%;
                    height:8%;
                    background-color: #ff5722;
                    color:#fff;
                    font-weight: bold;
                    position: absolute;
                    left: 6%;
                    top: 6.2%;
                    border-radius: 3px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size:15px;
                }
                .module_shop_simplesub_7 .img-price{
                    width: 100%;
                    object-fit: contain;
                    height: 100%;
                    
                } 
                .module_shop_simplesub_7 .title-for-swiper{
                    display:flex;
                    justify-content:center;
                    align-items: center;
                    margin:0rem auto 0rem auto;
                    width:1200px;
                    max-width:1200px;
                    overflow:hidden;
                    font-size:22em;
                    height:50px;
                    color:#000;
                    background-color:#e8e8e8!important;
                    padding:0.5rem;
                }
                .module_shop_simplesub_7 .container{
                    width:1200px;
                    max-width:1200px;
                    margin:auto auto auto auto;
                    overflow:hidden;
                    border:0px  white;
                }
                .module_shop_simplesub_7 .card-box-type1{
                    border:1px solid #dddddd;
                    background:;
                    border-radius:0px;
                }
                .module_shop_simplesub_7 .swiper-slide{
                    display: flex;
                    flex-direction: column;
                }
                .module_shop_simplesub_7 .height-content {
                    height:max-content;
                }
                .module_shop_simplesub_7 .btn-next{
                    margin-top: 18px;
                    z-index: 1;
                    background:#fff;
                    height: 36px;
                    width: 36px;
                    position: absolute;
                    top:175px;
                    right:0.6%;
                    -webkit-transition: all .2s linear;
                    transition: all .2s linear;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                }
                .module_shop_simplesub_7 .btn-prev:hover{
                    background:#fff;
                }
                .module_shop_simplesub_7 .btn-next:hover{
                    background:#fff;
                }
                .module_shop_simplesub_7 .btn-prev{
                    background:#fff;
                    height: 36px;
                    width: 36px;
                    position: absolute;
                    top:175px;
                    left:0.6%;
                    margin-top: 18px;
                    z-index: 1;
                    -webkit-transition: all .2s linear;
                    transition: all .2s linear;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                }
                .module_shop_simplesub_7 .svg_next{
                    width:13px;
                    fill:#333;
                }
                .module_shop_simplesub_7 .svg_next:hover{
                    fill:#333;
                }
                .module_shop_simplesub_7 .svg_prev{
                    width:13px;
                    fill:#333;
                    transform:rotate(180deg);
                }
                .module_shop_simplesub_7 .svg_prev:hover{
                    fill:#333;
                }
                .module_shop_simplesub_7 .card{
                    padding:0.5rem;
                    display: flex;
                    justify-content: center;
                }
                .module_shop_simplesub_7 .div-box-img{
                    width:100%;
                    height:300px!important;
                    padding:0rem;
                }
                .module_shop_simplesub_7 .div-box-img img{
                    width:100%;
                    height:100%;
                    object-fit:contain;
                }
                .module_shop_simplesub_7 .div-title{
                    width: 100%;
                    height: 45px;
                    font-weight:500;
                    line-height:1.5;
                    padding:0 0.5rem;
                    overflow:hidden;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    font-size:1em;
                }
                .module_shop_simplesub_7 .div-title span{
                    color:#333;    
                }
                .module_shop_simplesub_7 .div-title span:hover{
                    color:#03a9f5;
                    cursor:pointer;   
                }
                .module_shop_simplesub_7 .div-price-discount{
                    width: 100%;
                    height: 60px;
                    line-height:1.5;
                    padding:0 0.5rem;
                    overflow:hidden;
                    display:flex;
                    justify-content:center;
                    margin-bottom:0.7rem;
                    align-items:baseline;
                    flex-direction:column;
                    flex-wrap:wrap;
                }
                .module_shop_simplesub_7 .price{
                    width:65%;
                    display: flex;
                    align-items: center;
                    font-size:18px;
                    font-weight:200;
                    justify-content: end;
                    color:#839AA8;
                }
                .module_shop_simplesub_7 .price-center{
                    display: flex;
                    align-items: center;
                    font-size:19px;
                    font-weight:bold;
                    justify-content: center;
                    color:#839AA8;
                }
                .module_shop_simplesub_7 .discount{
                    display: flex;
                    align-items: center;
                    font-size: 15px;
                    font-weight: 200;
                    width: 64%;
                    text-decoration: line-through;
                    color: #999999;
                    padding-right:0.5rem;
                    justify-content: end;
                }
                .module_shop_simplesub_7 .svg_tooman{
                    width: 35px;
                    padding-right: 0.2rem;
                    fill:red!important;
                }
                .module_shop_simplesub_7 .svg_tooman_discount{
                    width: 35px;
                    padding-right: 0.2rem;
                    fill:#999999!important;
                }
                .module_shop_simplesub_7 .div-add-share{
                    width:100%;
                    height:45px;
                    display:flex;
                    border-top: 1px solid #dddddd;
                    cursor:pointer;
                    flex-direction: row;
                }
                .module_shop_simplesub_7 .add-shop{
                    width: 20%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow:hidden;
                    background:#333;
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .svgHeart{ 
                    height: 100%;
                }
                .module_shop_simplesub_7 .svgShare{ 
                    height: 100%;
                }
                .module_shop_simplesub_7 .animate-share{
                    bottom: 50%;
                    transition: 0.2s bottom ease-in-out;
                }
                .module_shop_simplesub_7 .animate-heart{
                    bottom: 50%;
                    transition: 0.2s bottom ease-in-out;
                }
                .module_shop_simplesub_7 .add-shop span{
                    font-size: 15px;
                    font-weight: 700;
                    color:skyblue;
                    z-index:10;
                }
                .module_shop_simplesub_7 .add-shop .link-card{
                    font-size: 15px;
                    font-weight: 700;
                    color:skyblue;
                    z-index:10;
                }
                .module_shop_simplesub_7 .grow{
                    flex-grow:2;
                }
                .module_shop_simplesub_7 .svg_heart{
                    width:15px;;
                    fill:#999999;
                    z-index:10;
                    transition: fill 1s;
                    height: 44px;
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .svg_share{
                    width: 15px;
                    fill: #999999;
                    z-index: 10;
                    transition: fill 1s;
                    height: 44px;
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .animate-blue .span{
                    cursor:pointer;
                }
                .module_shop_simplesub_7 .svgHeart:first-child .svg_heart{
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .svgHeart:first-child {
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .svgShare:first-child .svg_share{
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .svgShare:first-child {
                    fill: #fff !important;
                }
                .module_shop_simplesub_7 .animate-blue{
                    position:absolute;
                    top:0;
                    left:-100%;
                    bottom:0;
                    width:100%;
                    background:#bfbfbf;
                    transition: left 0.4s;
                }
                .module_shop_simplesub_7 .add-shop:hover .animate-blue{
                    left:0;
                }
                .module_shop_simplesub_7 .add-shop:hover span{
                    color:white;
                }
                .module_shop_simplesub_7 .add-shop:hover .link-card{
                    color:white;
                }
                .module_shop_simplesub_7 .add-shop:hover .animate-heart{
                    bottom: -50%; 
                }
                .module_shop_simplesub_7 .add-shop:hover .animate-share{
                    bottom: -50%; 
                }
            
            .link-card{
                cursor: pointer;
            }
        .module[data-id_page='1221']{;background-color:#f0f0f0;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='1221']:hover{;}.module[data-id_page='1221']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1221'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1221'] 
            
            .module[data-id_page='1221'] .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='1221'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1221']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_234 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_234 .content_str{
				width:100%;
			}
            #module_new_medical_234 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_234 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_234 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_234 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_234 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_234 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_234 .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_234 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_234 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_234 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_234 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_234 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_234 .new_medical_description a,#module_new_medical_234 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_234 .new_medical_description a:hover,#module_new_medical_234 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_234 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_234 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_780 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_780 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_780 .background-img{
                border-radius:8px;
            }
        #medical_box_780.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_780:hover{}
                #medical_box_780:hover .background-img {
                    filter:none;
                }
            
                #medical_box_780 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_780 
            
            #medical_box_780 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_780 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_780:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_780.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/1659166379_022d_1658927995.jpg");
                }
            
            #medical_box_780 .mode1-size_780{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_780 .new_medical_box > div{
                width:100%;
            }
             #medical_box_780 > div{
               height:100%;
            }
            #medical_box_780 .mode2-size_780{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_780 .mode3-size_780{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_780 .mode4-size_780{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_780 .mode5-size_780{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_780 .mode6-size_780{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_780 .mode7-size_780{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_780 .mode7-size_780 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_780 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_780 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_780{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_780 span:hover{
                color:!important;
            }
            .custom2_780{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_780 span:hover{
                color:;
            }
            #medical_box_780 .mode-btn1_780{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_780 .mode-btn1_780 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_780 .mode-btn2_780{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_780 .mode-btn2_780 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_780 .div-btn-title_main_780{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_780 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_780 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_779 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_779 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_779 .background-img{
                border-radius:8px;
            }
        #medical_box_779.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_779:hover{}
                #medical_box_779:hover .background-img {
                    filter:none;
                }
            
                #medical_box_779 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_779 
            
            #medical_box_779 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_779 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_779:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_779.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/1659166516_00a9_1658931528.jpg");
                }
            
            #medical_box_779 .mode1-size_779{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_779 .new_medical_box > div{
                width:100%;
            }
             #medical_box_779 > div{
               height:100%;
            }
            #medical_box_779 .mode2-size_779{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_779 .mode3-size_779{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_779 .mode4-size_779{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_779 .mode5-size_779{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_779 .mode6-size_779{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_779 .mode7-size_779{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_779 .mode7-size_779 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_779 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_779 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_779{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_779 span:hover{
                color:!important;
            }
            .custom2_779{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_779 span:hover{
                color:;
            }
            #medical_box_779 .mode-btn1_779{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_779 .mode-btn1_779 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_779 .mode-btn2_779{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_779 .mode-btn2_779 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_779 .div-btn-title_main_779{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_779 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_779 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_778 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_778 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_778 .background-img{
                border-radius:8px;
            }
        #medical_box_778.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_778:hover{}
                #medical_box_778:hover .background-img {
                    filter:none;
                }
            
                #medical_box_778 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_778 
            
            #medical_box_778 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_778 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_778:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_778.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/1659166552__1658923264 (1).jpg");
                }
            
            #medical_box_778 .mode1-size_778{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_778 .new_medical_box > div{
                width:100%;
            }
             #medical_box_778 > div{
               height:100%;
            }
            #medical_box_778 .mode2-size_778{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_778 .mode3-size_778{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_778 .mode4-size_778{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_778 .mode5-size_778{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_778 .mode6-size_778{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_778 .mode7-size_778{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_778 .mode7-size_778 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_778 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_778 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_778{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_778 span:hover{
                color:!important;
            }
            .custom2_778{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_778 span:hover{
                color:;
            }
            #medical_box_778 .mode-btn1_778{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_778 .mode-btn1_778 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_778 .mode-btn2_778{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_778 .mode-btn2_778 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_778 .div-btn-title_main_778{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_778 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_778 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_777 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_777 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_777 .background-img{
                border-radius:8px;
            }
        #medical_box_777.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_777:hover{}
                #medical_box_777:hover .background-img {
                    filter:none;
                }
            
                #medical_box_777 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_777 
            
            #medical_box_777 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_777 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_777:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_777.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/1659166590__1659112492 (1).jpg");
                }
            
            #medical_box_777 .mode1-size_777{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_777 .new_medical_box > div{
                width:100%;
            }
             #medical_box_777 > div{
               height:100%;
            }
            #medical_box_777 .mode2-size_777{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_777 .mode3-size_777{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_777 .mode4-size_777{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_777 .mode5-size_777{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_777 .mode6-size_777{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_777 .mode7-size_777{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_777 .mode7-size_777 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_777 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_777 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_777{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_777 span:hover{
                color:!important;
            }
            .custom2_777{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_777 span:hover{
                color:;
            }
            #medical_box_777 .mode-btn1_777{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_777 .mode-btn1_777 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_777 .mode-btn2_777{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_777 .mode-btn2_777 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_777 .div-btn-title_main_777{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_777 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_777 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_234 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='1221']:hover .new_medical_box_main{}
            #module_new_medical_234 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_234 .new_medical_module{
                    width:276px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_234 .medical_box_main_animation_trigger{
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_234 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_234 .medical_box_main_animation_trigger:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_234 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_234 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_234 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_234 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_234 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_234 .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_234{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_234 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_234 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_234 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_234 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_234 .swiper-container{
                width:1200px;
            }
            #module_new_medical_234 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_234 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_234 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_234 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1222']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='1222']:hover{;}.module[data-id_page='1222']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1222'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1222'] 
            
            .module[data-id_page='1222'] .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='1222'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1222']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_235 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_235 .content_str{
				width:100%;
			}
            #module_new_medical_235 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_235 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_235 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_235 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_235 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_235 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_235 .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_235 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_235 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_235 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_235 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_235 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_235 .new_medical_description a,#module_new_medical_235 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_235 .new_medical_description a:hover,#module_new_medical_235 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_235 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_235 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_830 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167070_15b6_1656161174.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_830 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_830 .background-img{
                border-radius:;
            }
        
            #medical_box_830 .new_medical_icon{
                
            }
        #medical_box_830 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_830 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_830 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_785:hover .new_medical_icon{}#medical_box_830.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_785:hover{}
                #medical_box_830 
            
            #medical_box_830 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_830 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_830:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_830 .mode1-size_830{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_830 .new_medical_box > div{
                width:100%;
            }
             #medical_box_830 > div{
               height:100%;
            }
            #medical_box_830 .mode2-size_830{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_830 .mode3-size_830{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_830 .mode4-size_830{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_830 .mode5-size_830{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_830 .mode6-size_830{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_830 .mode7-size_830{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_830 .mode7-size_830 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_830 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_830 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_830{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_830 span:hover{
                color:!important;
            }
            .custom2_830{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_830 span:hover{
                color:;
            }
            #medical_box_830 .mode-btn1_830{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_830 .mode-btn1_830 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_830 .mode-btn2_830{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_830 .mode-btn2_830 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_830 .div-btn-title_main_830{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_830 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_830 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_829 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167171__1656161158 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_829 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_829 .background-img{
                border-radius:;
            }
        
            #medical_box_829 .new_medical_icon{
                
            }
        #medical_box_829 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_829 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_829 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_781:hover .new_medical_icon{}#medical_box_829.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_781:hover{}
                #medical_box_829 
            
            #medical_box_829 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_829 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_829:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_829 .mode1-size_829{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_829 .new_medical_box > div{
                width:100%;
            }
             #medical_box_829 > div{
               height:100%;
            }
            #medical_box_829 .mode2-size_829{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_829 .mode3-size_829{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_829 .mode4-size_829{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_829 .mode5-size_829{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_829 .mode6-size_829{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_829 .mode7-size_829{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_829 .mode7-size_829 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_829 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_829 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_829{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_829 span:hover{
                color:!important;
            }
            .custom2_829{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_829 span:hover{
                color:;
            }
            #medical_box_829 .mode-btn1_829{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_829 .mode-btn1_829 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_829 .mode-btn2_829{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_829 .mode-btn2_829 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_829 .div-btn-title_main_829{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_829 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_829 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_790 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659166759_83bf_1656160881.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_790 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_790 .background-img{
                border-radius:;
            }
        
            #medical_box_790 .new_medical_icon{
                
            }
        #medical_box_790 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_790 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_790 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;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%;border-style:none;}#medical_box_790:hover{}
                #medical_box_790 
            
            #medical_box_790 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_790 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_790:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_790 .mode1-size_790{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_790 .new_medical_box > div{
                width:100%;
            }
             #medical_box_790 > div{
               height:100%;
            }
            #medical_box_790 .mode2-size_790{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_790 .mode3-size_790{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_790 .mode4-size_790{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_790 .mode5-size_790{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_790 .mode6-size_790{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_790 .mode7-size_790{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_790 .mode7-size_790 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_790 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_790 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_790{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_790 span:hover{
                color:!important;
            }
            .custom2_790{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_790 span:hover{
                color:;
            }
            #medical_box_790 .mode-btn1_790{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_790 .mode-btn1_790 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_790 .mode-btn2_790{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_790 .mode-btn2_790 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_790 .div-btn-title_main_790{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_790 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_790 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_789 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659166797_db4a_1656160904.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_789 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_789 .background-img{
                border-radius:;
            }
        
            #medical_box_789 .new_medical_icon{
                
            }
        #medical_box_789 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_789 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_789 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;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%;border-style:none;}#medical_box_789:hover{}
                #medical_box_789 
            
            #medical_box_789 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_789 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_789:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_789 .mode1-size_789{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_789 .new_medical_box > div{
                width:100%;
            }
             #medical_box_789 > div{
               height:100%;
            }
            #medical_box_789 .mode2-size_789{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_789 .mode3-size_789{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_789 .mode4-size_789{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_789 .mode5-size_789{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_789 .mode6-size_789{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_789 .mode7-size_789{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_789 .mode7-size_789 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_789 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_789 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_789{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_789 span:hover{
                color:!important;
            }
            .custom2_789{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_789 span:hover{
                color:;
            }
            #medical_box_789 .mode-btn1_789{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_789 .mode-btn1_789 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_789 .mode-btn2_789{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_789 .mode-btn2_789 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_789 .div-btn-title_main_789{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_789 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_789 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_788 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659166901_e38f_1656160928.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_788 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_788 .background-img{
                border-radius:;
            }
        
            #medical_box_788 .new_medical_icon{
                
            }
        #medical_box_788 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_788 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_788 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_788: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%;border-style:none;}#medical_box_788:hover{}
                #medical_box_788 
            
            #medical_box_788 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_788 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_788:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_788 .mode1-size_788{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_788 .new_medical_box > div{
                width:100%;
            }
             #medical_box_788 > div{
               height:100%;
            }
            #medical_box_788 .mode2-size_788{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_788 .mode3-size_788{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_788 .mode4-size_788{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_788 .mode5-size_788{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_788 .mode6-size_788{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_788 .mode7-size_788{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_788 .mode7-size_788 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_788 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_788 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_788{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_788 span:hover{
                color:!important;
            }
            .custom2_788{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_788 span:hover{
                color:;
            }
            #medical_box_788 .mode-btn1_788{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_788 .mode-btn1_788 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_788 .mode-btn2_788{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_788 .mode-btn2_788 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_788 .div-btn-title_main_788{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_788 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_788 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_787 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659166924_253e_1656161034.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_787 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_787 .background-img{
                border-radius:;
            }
        
            #medical_box_787 .new_medical_icon{
                
            }
        #medical_box_787 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_787 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_787 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_787: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%;border-style:none;}#medical_box_787:hover{}
                #medical_box_787 
            
            #medical_box_787 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_787 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_787:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_787 .mode1-size_787{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_787 .new_medical_box > div{
                width:100%;
            }
             #medical_box_787 > div{
               height:100%;
            }
            #medical_box_787 .mode2-size_787{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_787 .mode3-size_787{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_787 .mode4-size_787{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_787 .mode5-size_787{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_787 .mode6-size_787{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_787 .mode7-size_787{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_787 .mode7-size_787 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_787 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_787 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_787{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_787 span:hover{
                color:!important;
            }
            .custom2_787{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_787 span:hover{
                color:;
            }
            #medical_box_787 .mode-btn1_787{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_787 .mode-btn1_787 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_787 .mode-btn2_787{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_787 .mode-btn2_787 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_787 .div-btn-title_main_787{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_787 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_787 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_786 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659166972_d39e_1656160976.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_786 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_786 .background-img{
                border-radius:;
            }
        
            #medical_box_786 .new_medical_icon{
                
            }
        #medical_box_786 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_786 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_786 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_786: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%;border-style:none;}#medical_box_786:hover{}
                #medical_box_786 
            
            #medical_box_786 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_786 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_786:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_786 .mode1-size_786{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_786 .new_medical_box > div{
                width:100%;
            }
             #medical_box_786 > div{
               height:100%;
            }
            #medical_box_786 .mode2-size_786{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_786 .mode3-size_786{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_786 .mode4-size_786{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_786 .mode5-size_786{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_786 .mode6-size_786{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_786 .mode7-size_786{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_786 .mode7-size_786 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_786 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_786 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_786{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_786 span:hover{
                color:!important;
            }
            .custom2_786{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_786 span:hover{
                color:;
            }
            #medical_box_786 .mode-btn1_786{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_786 .mode-btn1_786 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_786 .mode-btn2_786{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_786 .mode-btn2_786 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_786 .div-btn-title_main_786{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_786 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_786 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_785 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167070_15b6_1656161174.png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_785 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_785 .background-img{
                border-radius:;
            }
        
            #medical_box_785 .new_medical_icon{
                
            }
        #medical_box_785 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_785 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_785 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_785:hover .new_medical_icon{}#medical_box_785.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_785:hover{}
                #medical_box_785 
            
            #medical_box_785 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_785 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_785:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_785 .mode1-size_785{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_785 .new_medical_box > div{
                width:100%;
            }
             #medical_box_785 > div{
               height:100%;
            }
            #medical_box_785 .mode2-size_785{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_785 .mode3-size_785{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_785 .mode4-size_785{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_785 .mode5-size_785{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_785 .mode6-size_785{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_785 .mode7-size_785{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_785 .mode7-size_785 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_785 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_785 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_785{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_785 span:hover{
                color:!important;
            }
            .custom2_785{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_785 span:hover{
                color:;
            }
            #medical_box_785 .mode-btn1_785{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_785 .mode-btn1_785 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_785 .mode-btn2_785{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_785 .mode-btn2_785 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_785 .div-btn-title_main_785{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_785 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_785 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_784 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167137__1656161101 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_784 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_784 .background-img{
                border-radius:;
            }
        
            #medical_box_784 .new_medical_icon{
                
            }
        #medical_box_784 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_784 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_784 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_784:hover .new_medical_icon{}#medical_box_784.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_784:hover{}
                #medical_box_784 
            
            #medical_box_784 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_784 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_784:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_784 .mode1-size_784{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_784 .new_medical_box > div{
                width:100%;
            }
             #medical_box_784 > div{
               height:100%;
            }
            #medical_box_784 .mode2-size_784{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_784 .mode3-size_784{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_784 .mode4-size_784{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_784 .mode5-size_784{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_784 .mode6-size_784{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_784 .mode7-size_784{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_784 .mode7-size_784 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_784 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_784 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_784{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_784 span:hover{
                color:!important;
            }
            .custom2_784{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_784 span:hover{
                color:;
            }
            #medical_box_784 .mode-btn1_784{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_784 .mode-btn1_784 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_784 .mode-btn2_784{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_784 .mode-btn2_784 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_784 .div-btn-title_main_784{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_784 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_784 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_783 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167103__1656161119 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_783 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_783 .background-img{
                border-radius:;
            }
        
            #medical_box_783 .new_medical_icon{
                
            }
        #medical_box_783 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_783 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_783 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_783:hover .new_medical_icon{}#medical_box_783.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_783:hover{}
                #medical_box_783 
            
            #medical_box_783 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_783 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_783:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_783 .mode1-size_783{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_783 .new_medical_box > div{
                width:100%;
            }
             #medical_box_783 > div{
               height:100%;
            }
            #medical_box_783 .mode2-size_783{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_783 .mode3-size_783{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_783 .mode4-size_783{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_783 .mode5-size_783{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_783 .mode6-size_783{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_783 .mode7-size_783{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_783 .mode7-size_783 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_783 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_783 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_783{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_783 span:hover{
                color:!important;
            }
            .custom2_783{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_783 span:hover{
                color:;
            }
            #medical_box_783 .mode-btn1_783{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_783 .mode-btn1_783 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_783 .mode-btn2_783{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_783 .mode-btn2_783 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_783 .div-btn-title_main_783{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_783 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_783 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_782 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167137__1656161101 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_782 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_782 .background-img{
                border-radius:;
            }
        
            #medical_box_782 .new_medical_icon{
                
            }
        #medical_box_782 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_782 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_782 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_784:hover .new_medical_icon{}#medical_box_782.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_784:hover{}
                #medical_box_782 
            
            #medical_box_782 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_782 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_782:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_782 .mode1-size_782{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_782 .new_medical_box > div{
                width:100%;
            }
             #medical_box_782 > div{
               height:100%;
            }
            #medical_box_782 .mode2-size_782{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_782 .mode3-size_782{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_782 .mode4-size_782{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_782 .mode5-size_782{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_782 .mode6-size_782{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_782 .mode7-size_782{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_782 .mode7-size_782 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_782 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_782 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_782{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_782 span:hover{
                color:!important;
            }
            .custom2_782{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_782 span:hover{
                color:;
            }
            #medical_box_782 .mode-btn1_782{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_782 .mode-btn1_782 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_782 .mode-btn2_782{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_782 .mode-btn2_782 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_782 .div-btn-title_main_782{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_782 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_782 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_781 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659167171__1656161158 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_781 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_781 .background-img{
                border-radius:;
            }
        
            #medical_box_781 .new_medical_icon{
                
            }
        #medical_box_781 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_781 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_781 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:170px;border-style:none;border-color:#000;}#medical_box_781:hover .new_medical_icon{}#medical_box_781.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_781:hover{}
                #medical_box_781 
            
            #medical_box_781 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_781 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_781:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_781 .mode1-size_781{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_781 .new_medical_box > div{
                width:100%;
            }
             #medical_box_781 > div{
               height:100%;
            }
            #medical_box_781 .mode2-size_781{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_781 .mode3-size_781{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_781 .mode4-size_781{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_781 .mode5-size_781{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_781 .mode6-size_781{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_781 .mode7-size_781{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_781 .mode7-size_781 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_781 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_781 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_781{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_781 span:hover{
                color:!important;
            }
            .custom2_781{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_781 span:hover{
                color:;
            }
            #medical_box_781 .mode-btn1_781{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_781 .mode-btn1_781 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_781 .mode-btn2_781{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_781 .mode-btn2_781 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_781 .div-btn-title_main_781{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_781 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_781 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_235 .new_medical_title_main{color:#424750;font-weight:bold;font-size:18px;justify-content:flex-start;text-align:right;margin-top:64px;line-height:32px;}.module[data-id_page='1222']:hover .new_medical_title_main{}#module_new_medical_235 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;border-style:none;}.module[data-id_page='1222']:hover .new_medical_box_main{}
            #module_new_medical_235 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_235 .new_medical_module{
                    width:173px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_235 .medical_box_main_animation_trigger{
                    margin-left:32px;
                    margin-bottom:32px;
                }
                #module_new_medical_235 .new_medical_module:nth-child(6n){
                    margin-left:0;
                }
                #module_new_medical_235 .medical_box_main_animation_trigger:nth-child(6n){
                    margin-left:0;
                }
                #module_new_medical_235 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_235 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_235 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_235 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_235 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_235 .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_235{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_235 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_235 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_235 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_235 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_235 .swiper-container{
                width:1200px;
            }
            #module_new_medical_235 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_235 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_235 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_235 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1223']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}.module[data-id_page='1223']:hover{;}.module[data-id_page='1223']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1223'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1223'] 
            
            .module[data-id_page='1223'] .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='1223'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1223']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_236 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_236 .content_str{
				width:100%;
			}
            #module_new_medical_236 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_236 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_236 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_236 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_236 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_236 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_236 .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_236 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_236 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_236 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_236 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_236 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_236 .new_medical_description a,#module_new_medical_236 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_236 .new_medical_description a:hover,#module_new_medical_236 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_236 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_236 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_794 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_794 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_794 .background-img{
                border-radius:8px;
            }
        #medical_box_794 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_794:hover .new_medical_icon{}#medical_box_794.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_794:hover{}
                #medical_box_794:hover .background-img {
                    filter:none;
                }
            
                #medical_box_794 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_794 
            
            #medical_box_794 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_794 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_794:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_794.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/1659169435_fb3b_1658925188.jpg");
                }
            
            #medical_box_794 .mode1-size_794{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_794 .new_medical_box > div{
                width:100%;
            }
             #medical_box_794 > div{
               height:100%;
            }
            #medical_box_794 .mode2-size_794{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_794 .mode3-size_794{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_794 .mode4-size_794{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_794 .mode5-size_794{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_794 .mode6-size_794{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_794 .mode7-size_794{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_794 .mode7-size_794 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_794 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_794 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_794{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_794 span:hover{
                color:!important;
            }
            .custom2_794{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_794 span:hover{
                color:;
            }
            #medical_box_794 .mode-btn1_794{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_794 .mode-btn1_794 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_794 .mode-btn2_794{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_794 .mode-btn2_794 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_794 .div-btn-title_main_794{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_794 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_794 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_793 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 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:8px;
            }
        #medical_box_793.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_793:hover{}
                #medical_box_793:hover .background-img {
                    filter:none;
                }
            
                #medical_box_793 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_793 
            
            #medical_box_793 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_793 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_793:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_793.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/1659169505_d7d23a5b.jpg");
                }
            
            #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_236 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;padding-bottom:64px;border-style:none;}.module[data-id_page='1223']:hover .new_medical_box_main{}
            #module_new_medical_236 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_236 .new_medical_module{
                    width:584px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_236 .medical_box_main_animation_trigger{
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_236 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_236 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_236 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_236 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_236 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_236 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_236 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_236 .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_236{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_236 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_236 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_236 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_236 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_236 .swiper-container{
                width:1200px;
            }
            #module_new_medical_236 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_236 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_236 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_236 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1224']{;background-color:#f0f0f0;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-bottom:32px;border-style:none;}.module[data-id_page='1224']:hover{;}.module[data-id_page='1224']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1224'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1224'] 
            
            .module[data-id_page='1224'] .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='1224'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1224']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_237 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_237 .content_str{
				width:100%;
			}
            #module_new_medical_237 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_237 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_237 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_237 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_237 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_237 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_237 .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_237 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_237 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_237 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_237 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_237 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_237 .new_medical_description a,#module_new_medical_237 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_237 .new_medical_description a:hover,#module_new_medical_237 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_237 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_237 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_804 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169646_d3dd_1649056488.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_804 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_804 .background-img{
                border-radius:8px;
            }
        
            #medical_box_804 .new_medical_icon{
                
            }
        #medical_box_804 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_804 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_804 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_804:hover .new_medical_icon{}#medical_box_804.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_804 
            
            #medical_box_804 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_804 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_804:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_804 .mode1-size_804{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_804 .new_medical_box > div{
                width:100%;
            }
             #medical_box_804 > div{
               height:100%;
            }
            #medical_box_804 .mode2-size_804{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_804 .mode3-size_804{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_804 .mode4-size_804{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_804 .mode5-size_804{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_804 .mode6-size_804{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_804 .mode7-size_804{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_804 .mode7-size_804 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_804 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_804 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_804{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_804 span:hover{
                color:!important;
            }
            .custom2_804{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_804 span:hover{
                color:;
            }
            #medical_box_804 .mode-btn1_804{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_804 .mode-btn1_804 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_804 .mode-btn2_804{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_804 .mode-btn2_804 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_804 .div-btn-title_main_804{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_804 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_804 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_803 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169675_8d68_1620202335.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_803 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_803 .background-img{
                border-radius:8px;
            }
        
            #medical_box_803 .new_medical_icon{
                
            }
        #medical_box_803 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_803 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_803 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_803:hover .new_medical_icon{}#medical_box_803.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_803:hover{}
                #medical_box_803 
            
            #medical_box_803 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_803 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_803:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_803 .mode1-size_803{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_803 .new_medical_box > div{
                width:100%;
            }
             #medical_box_803 > div{
               height:100%;
            }
            #medical_box_803 .mode2-size_803{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_803 .mode3-size_803{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_803 .mode4-size_803{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_803 .mode5-size_803{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_803 .mode6-size_803{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_803 .mode7-size_803{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_803 .mode7-size_803 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_803 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_803 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_803{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_803 span:hover{
                color:!important;
            }
            .custom2_803{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_803 span:hover{
                color:;
            }
            #medical_box_803 .mode-btn1_803{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_803 .mode-btn1_803 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_803 .mode-btn2_803{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_803 .mode-btn2_803 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_803 .div-btn-title_main_803{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_803 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_803 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_802 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169700_456a_1656370706.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_802 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_802 .background-img{
                border-radius:8px;
            }
        
            #medical_box_802 .new_medical_icon{
                
            }
        #medical_box_802 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_802 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_802 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_802:hover .new_medical_icon{}#medical_box_802.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_802 
            
            #medical_box_802 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_802 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_802:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_802 .mode1-size_802{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_802 .new_medical_box > div{
                width:100%;
            }
             #medical_box_802 > div{
               height:100%;
            }
            #medical_box_802 .mode2-size_802{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_802 .mode3-size_802{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_802 .mode4-size_802{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_802 .mode5-size_802{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_802 .mode6-size_802{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_802 .mode7-size_802{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_802 .mode7-size_802 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_802 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_802 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_802{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_802 span:hover{
                color:!important;
            }
            .custom2_802{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_802 span:hover{
                color:;
            }
            #medical_box_802 .mode-btn1_802{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_802 .mode-btn1_802 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_802 .mode-btn2_802{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_802 .mode-btn2_802 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_802 .div-btn-title_main_802{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_802 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_802 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_801 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169726_34d9_1646424924.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_801 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_801 .background-img{
                border-radius:8px;
            }
        
            #medical_box_801 .new_medical_icon{
                
            }
        #medical_box_801 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_801 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_801 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_801:hover .new_medical_icon{}#medical_box_801.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_801 
            
            #medical_box_801 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_801 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_801:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_801 .mode1-size_801{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_801 .new_medical_box > div{
                width:100%;
            }
             #medical_box_801 > div{
               height:100%;
            }
            #medical_box_801 .mode2-size_801{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_801 .mode3-size_801{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_801 .mode4-size_801{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_801 .mode5-size_801{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_801 .mode6-size_801{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_801 .mode7-size_801{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_801 .mode7-size_801 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_801 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_801 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_801{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_801 span:hover{
                color:!important;
            }
            .custom2_801{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_801 span:hover{
                color:;
            }
            #medical_box_801 .mode-btn1_801{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_801 .mode-btn1_801 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_801 .mode-btn2_801{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_801 .mode-btn2_801 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_801 .div-btn-title_main_801{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_801 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_801 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_800 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169761_2b26_1641303563.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_800 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_800 .background-img{
                border-radius:8px;
            }
        
            #medical_box_800 .new_medical_icon{
                
            }
        #medical_box_800 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_800 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_800 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_800:hover .new_medical_icon{}#medical_box_800.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_800 
            
            #medical_box_800 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_800 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_800:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_800 .mode1-size_800{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_800 .new_medical_box > div{
                width:100%;
            }
             #medical_box_800 > div{
               height:100%;
            }
            #medical_box_800 .mode2-size_800{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_800 .mode3-size_800{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_800 .mode4-size_800{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_800 .mode5-size_800{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_800 .mode6-size_800{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_800 .mode7-size_800{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_800 .mode7-size_800 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_800 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_800 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_800{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_800 span:hover{
                color:!important;
            }
            .custom2_800{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_800 span:hover{
                color:;
            }
            #medical_box_800 .mode-btn1_800{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_800 .mode-btn1_800 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_800 .mode-btn2_800{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_800 .mode-btn2_800 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_800 .div-btn-title_main_800{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_800 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_800 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_799 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169805_cfd1_1642944542.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_799 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_799 .background-img{
                border-radius:8px;
            }
        
            #medical_box_799 .new_medical_icon{
                
            }
        #medical_box_799 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_799 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_799 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_799:hover .new_medical_icon{}#medical_box_799.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_799 
            
            #medical_box_799 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_799 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_799:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_799 .mode1-size_799{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_799 .new_medical_box > div{
                width:100%;
            }
             #medical_box_799 > div{
               height:100%;
            }
            #medical_box_799 .mode2-size_799{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_799 .mode3-size_799{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_799 .mode4-size_799{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_799 .mode5-size_799{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_799 .mode6-size_799{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_799 .mode7-size_799{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_799 .mode7-size_799 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_799 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_799 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_799{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_799 span:hover{
                color:!important;
            }
            .custom2_799{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_799 span:hover{
                color:;
            }
            #medical_box_799 .mode-btn1_799{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_799 .mode-btn1_799 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_799 .mode-btn2_799{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_799 .mode-btn2_799 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_799 .div-btn-title_main_799{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_799 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_799 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_798 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169843_bb3f_1644699068.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_798 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_798 .background-img{
                border-radius:8px;
            }
        
            #medical_box_798 .new_medical_icon{
                
            }
        #medical_box_798 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_798 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_798 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_798:hover .new_medical_icon{}#medical_box_798.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_798 
            
            #medical_box_798 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_798 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_798:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_798 .mode1-size_798{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_798 .new_medical_box > div{
                width:100%;
            }
             #medical_box_798 > div{
               height:100%;
            }
            #medical_box_798 .mode2-size_798{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_798 .mode3-size_798{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_798 .mode4-size_798{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_798 .mode5-size_798{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_798 .mode6-size_798{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_798 .mode7-size_798{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_798 .mode7-size_798 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_798 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_798 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_798{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_798 span:hover{
                color:!important;
            }
            .custom2_798{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_798 span:hover{
                color:;
            }
            #medical_box_798 .mode-btn1_798{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_798 .mode-btn1_798 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_798 .mode-btn2_798{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_798 .mode-btn2_798 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_798 .div-btn-title_main_798{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_798 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_798 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_797 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169880_cc31_1641017827.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_797 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_797 .background-img{
                border-radius:8px;
            }
        
            #medical_box_797 .new_medical_icon{
                
            }
        #medical_box_797 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_797 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_797 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_797:hover .new_medical_icon{}#medical_box_797.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_797 
            
            #medical_box_797 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_797 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_797:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_797 .mode1-size_797{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_797 .new_medical_box > div{
                width:100%;
            }
             #medical_box_797 > div{
               height:100%;
            }
            #medical_box_797 .mode2-size_797{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_797 .mode3-size_797{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_797 .mode4-size_797{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_797 .mode5-size_797{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_797 .mode6-size_797{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_797 .mode7-size_797{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_797 .mode7-size_797 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_797 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_797 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_797{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_797 span:hover{
                color:!important;
            }
            .custom2_797{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_797 span:hover{
                color:;
            }
            #medical_box_797 .mode-btn1_797{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_797 .mode-btn1_797 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_797 .mode-btn2_797{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_797 .mode-btn2_797 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_797 .div-btn-title_main_797{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_797 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_797 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_796 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659169970_e651_1656936354.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_796 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_796 .background-img{
                border-radius:8px;
            }
        
            #medical_box_796 .new_medical_icon{
                
            }
        #medical_box_796 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_796 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_796 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_796:hover .new_medical_icon{}#medical_box_796.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_796 
            
            #medical_box_796 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_796 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_796:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_796 .mode1-size_796{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_796 .new_medical_box > div{
                width:100%;
            }
             #medical_box_796 > div{
               height:100%;
            }
            #medical_box_796 .mode2-size_796{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_796 .mode3-size_796{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_796 .mode4-size_796{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_796 .mode5-size_796{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_796 .mode6-size_796{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_796 .mode7-size_796{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_796 .mode7-size_796 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_796 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_796 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_796{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_796 span:hover{
                color:!important;
            }
            .custom2_796{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_796 span:hover{
                color:;
            }
            #medical_box_796 .mode-btn1_796{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_796 .mode-btn1_796 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_796 .mode-btn2_796{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_796 .mode-btn2_796 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_796 .div-btn-title_main_796{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_796 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_796 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_795 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170013_fc50_1642950786.jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_795 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_795 .background-img{
                border-radius:8px;
            }
        
            #medical_box_795 .new_medical_icon{
                
            }
        #medical_box_795 .new_medical_title{color:#424750;font-weight:bold;font-size:14px;text-align:center;margin-top:8px;line-height:32px;}#medical_box_790:hover .new_medical_title{}
                #medical_box_795 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_795 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_795:hover .new_medical_icon{}#medical_box_795.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_804:hover{}
                #medical_box_795 
            
            #medical_box_795 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_795 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_795:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_795 .mode1-size_795{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_795 .new_medical_box > div{
                width:100%;
            }
             #medical_box_795 > div{
               height:100%;
            }
            #medical_box_795 .mode2-size_795{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_795 .mode3-size_795{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_795 .mode4-size_795{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_795 .mode5-size_795{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_795 .mode6-size_795{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_795 .mode7-size_795{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_795 .mode7-size_795 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_795 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_795 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_795{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_795 span:hover{
                color:!important;
            }
            .custom2_795{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_795 span:hover{
                color:;
            }
            #medical_box_795 .mode-btn1_795{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_795 .mode-btn1_795 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_795 .mode-btn2_795{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_795 .mode-btn2_795 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_795 .div-btn-title_main_795{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_795 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_795 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_237 .new_medical_title_main{color:#424750;font-weight:bold;font-size:18px;justify-content:flex-start;text-align:right;margin-top:64px;line-height:32px;}.module[data-id_page='1224']:hover .new_medical_title_main{}#module_new_medical_237 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:32px;padding-bottom:64px;border-radius:8px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}.module[data-id_page='1224']:hover .new_medical_box_main{}
            #module_new_medical_237 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_237 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_237 .new_medical_description{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_237 .new_medical_description >a{
                    color:#00AFEF!important;
                }
                #module_new_medical_237 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_237 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_237 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_237 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

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

            
            #module_new_medical_237 .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_237{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_237 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_237 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_237 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_237 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_237 .swiper-container{
                width:1200px;
            }
            #module_new_medical_237 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_237 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_237 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_237 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1225']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='1225']:hover{;}.module[data-id_page='1225']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1225'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1225'] 
            
            .module[data-id_page='1225'] .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='1225'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1225']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_238 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_238 .content_str{
				width:100%;
			}
            #module_new_medical_238 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_238 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_238 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_238 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_238 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_238 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_238 .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_238 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_238 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_238 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_238 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_238 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_238 .new_medical_description a,#module_new_medical_238 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_238 .new_medical_description a:hover,#module_new_medical_238 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_238 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_238 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_806 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_806 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_806 .background-img{
                border-radius:8px;
            }
        #medical_box_806.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_794:hover{}
                #medical_box_806:hover .background-img {
                    filter:none;
                }
            
                #medical_box_806 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_806 
            
            #medical_box_806 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_806 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_806:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_806.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/image/1644824986_06a3_1644782721.jpg");
                }
            
            #medical_box_806 .mode1-size_806{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_806 .new_medical_box > div{
                width:100%;
            }
             #medical_box_806 > div{
               height:100%;
            }
            #medical_box_806 .mode2-size_806{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_806 .mode3-size_806{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_806 .mode4-size_806{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_806 .mode5-size_806{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_806 .mode6-size_806{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_806 .mode7-size_806{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_806 .mode7-size_806 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_806 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_806 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_806{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_806 span:hover{
                color:!important;
            }
            .custom2_806{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_806 span:hover{
                color:;
            }
            #medical_box_806 .mode-btn1_806{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_806 .mode-btn1_806 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_806 .mode-btn2_806{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_806 .mode-btn2_806 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_806 .div-btn-title_main_806{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_806 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_806 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_805 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_805 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_805 .background-img{
                border-radius:8px;
            }
        #medical_box_805.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:200px;border-radius:8px;border-style:none;}#medical_box_793:hover{}
                #medical_box_805:hover .background-img {
                    filter:none;
                }
            
                #medical_box_805 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_805 
            
            #medical_box_805 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_805 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_805:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_805.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/image/1644824985_70c2_1644493167.jpg");
                }
            
            #medical_box_805 .mode1-size_805{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_805 .new_medical_box > div{
                width:100%;
            }
             #medical_box_805 > div{
               height:100%;
            }
            #medical_box_805 .mode2-size_805{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_805 .mode3-size_805{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_805 .mode4-size_805{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_805 .mode5-size_805{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_805 .mode6-size_805{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_805 .mode7-size_805{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_805 .mode7-size_805 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_805 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_805 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_805{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_805 span:hover{
                color:!important;
            }
            .custom2_805{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_805 span:hover{
                color:;
            }
            #medical_box_805 .mode-btn1_805{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_805 .mode-btn1_805 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_805 .mode-btn2_805{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_805 .mode-btn2_805 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_805 .div-btn-title_main_805{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_805 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_805 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_238 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;padding-top:64px;border-style:none;}.module[data-id_page='1225']:hover .new_medical_box_main{}
            #module_new_medical_238 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_238 .new_medical_module{
                    width:584px;
                    position:relative;
                    overflow:hidden;
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_238 .medical_box_main_animation_trigger{
                    margin-left:32px;
                    margin-bottom:0px;
                }
                #module_new_medical_238 .new_medical_module:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_238 .medical_box_main_animation_trigger:nth-child(2n){
                    margin-left:0;
                }
                #module_new_medical_238 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_238 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_238 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_238 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_238 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_238 .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_238{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_238 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_238 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_238 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_238 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_238 .swiper-container{
                width:1200px;
            }
            #module_new_medical_238 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_238 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_238 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_238 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1226']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:23px;padding-bottom:32px;border-style:none;}.module[data-id_page='1226']:hover{;}.module[data-id_page='1226']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1226'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1226'] 
            
            .module[data-id_page='1226'] .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='1226'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1226']: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;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_239 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_816 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170231__1649498016 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_816 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_816 .background-img{
                border-radius:;
            }
        
            #medical_box_816 .new_medical_icon{
                
            }
        #medical_box_816 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_816:hover .new_medical_icon{}#medical_box_816.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_816 
            
            #medical_box_816 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_816 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_816:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_816 .mode1-size_816{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_816 .new_medical_box > div{
                width:100%;
            }
             #medical_box_816 > div{
               height:100%;
            }
            #medical_box_816 .mode2-size_816{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_816 .mode3-size_816{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_816 .mode4-size_816{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_816 .mode5-size_816{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_816 .mode6-size_816{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_816 .mode7-size_816{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_816 .mode7-size_816 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_816 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_816 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_816{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_816 span:hover{
                color:!important;
            }
            .custom2_816{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_816 span:hover{
                color:;
            }
            #medical_box_816 .mode-btn1_816{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_816 .mode-btn1_816 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_816 .mode-btn2_816{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_816 .mode-btn2_816 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_816 .div-btn-title_main_816{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_816 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_816 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_815 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170257__1649498033 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_815 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_815 .background-img{
                border-radius:;
            }
        
            #medical_box_815 .new_medical_icon{
                
            }
        #medical_box_815 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_815:hover .new_medical_icon{}#medical_box_815.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_815 
            
            #medical_box_815 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_815 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_815:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_815 .mode1-size_815{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_815 .new_medical_box > div{
                width:100%;
            }
             #medical_box_815 > div{
               height:100%;
            }
            #medical_box_815 .mode2-size_815{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_815 .mode3-size_815{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_815 .mode4-size_815{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_815 .mode5-size_815{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_815 .mode6-size_815{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_815 .mode7-size_815{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_815 .mode7-size_815 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_815 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_815 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_815{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_815 span:hover{
                color:!important;
            }
            .custom2_815{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_815 span:hover{
                color:;
            }
            #medical_box_815 .mode-btn1_815{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_815 .mode-btn1_815 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_815 .mode-btn2_815{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_815 .mode-btn2_815 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_815 .div-btn-title_main_815{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_815 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_815 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_814 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170289_6091 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_814 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_814 .background-img{
                border-radius:;
            }
        
            #medical_box_814 .new_medical_icon{
                
            }
        #medical_box_814 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_814:hover .new_medical_icon{}#medical_box_814.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_814 
            
            #medical_box_814 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_814 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_814:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_814 .mode1-size_814{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_814 .new_medical_box > div{
                width:100%;
            }
             #medical_box_814 > div{
               height:100%;
            }
            #medical_box_814 .mode2-size_814{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_814 .mode3-size_814{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_814 .mode4-size_814{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_814 .mode5-size_814{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_814 .mode6-size_814{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_814 .mode7-size_814{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_814 .mode7-size_814 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_814 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_814 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_814{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_814 span:hover{
                color:!important;
            }
            .custom2_814{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_814 span:hover{
                color:;
            }
            #medical_box_814 .mode-btn1_814{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_814 .mode-btn1_814 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_814 .mode-btn2_814{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_814 .mode-btn2_814 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_814 .div-btn-title_main_814{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_814 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_814 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_813 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170327_3518 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_813 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_813 .background-img{
                border-radius:;
            }
        
            #medical_box_813 .new_medical_icon{
                
            }
        #medical_box_813 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_813:hover .new_medical_icon{}#medical_box_813.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_813 
            
            #medical_box_813 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_813 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_813:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_813 .mode1-size_813{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_813 .new_medical_box > div{
                width:100%;
            }
             #medical_box_813 > div{
               height:100%;
            }
            #medical_box_813 .mode2-size_813{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_813 .mode3-size_813{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_813 .mode4-size_813{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_813 .mode5-size_813{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_813 .mode6-size_813{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_813 .mode7-size_813{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_813 .mode7-size_813 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_813 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_813 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_813{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_813 span:hover{
                color:!important;
            }
            .custom2_813{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_813 span:hover{
                color:;
            }
            #medical_box_813 .mode-btn1_813{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_813 .mode-btn1_813 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_813 .mode-btn2_813{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_813 .mode-btn2_813 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_813 .div-btn-title_main_813{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_813 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_813 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_812 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170373__1619269008 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_812 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_812 .background-img{
                border-radius:;
            }
        
            #medical_box_812 .new_medical_icon{
                
            }
        #medical_box_812 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_812:hover .new_medical_icon{}#medical_box_812.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_812 
            
            #medical_box_812 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_812 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_812:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_812 .mode1-size_812{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_812 .new_medical_box > div{
                width:100%;
            }
             #medical_box_812 > div{
               height:100%;
            }
            #medical_box_812 .mode2-size_812{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_812 .mode3-size_812{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_812 .mode4-size_812{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_812 .mode5-size_812{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_812 .mode6-size_812{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_812 .mode7-size_812{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_812 .mode7-size_812 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_812 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_812 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_812{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_812 span:hover{
                color:!important;
            }
            .custom2_812{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_812 span:hover{
                color:;
            }
            #medical_box_812 .mode-btn1_812{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_812 .mode-btn1_812 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_812 .mode-btn2_812{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_812 .mode-btn2_812 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_812 .div-btn-title_main_812{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_812 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_812 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_811 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170407_100010929 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_811 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_811 .background-img{
                border-radius:;
            }
        
            #medical_box_811 .new_medical_icon{
                
            }
        #medical_box_811 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_811:hover .new_medical_icon{}#medical_box_811.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_811 
            
            #medical_box_811 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_811 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_811:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_811 .mode1-size_811{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_811 .new_medical_box > div{
                width:100%;
            }
             #medical_box_811 > div{
               height:100%;
            }
            #medical_box_811 .mode2-size_811{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_811 .mode3-size_811{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_811 .mode4-size_811{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_811 .mode5-size_811{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_811 .mode6-size_811{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_811 .mode7-size_811{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_811 .mode7-size_811 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_811 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_811 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_811{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_811 span:hover{
                color:!important;
            }
            .custom2_811{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_811 span:hover{
                color:;
            }
            #medical_box_811 .mode-btn1_811{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_811 .mode-btn1_811 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_811 .mode-btn2_811{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_811 .mode-btn2_811 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_811 .div-btn-title_main_811{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_811 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_811 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_810 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170438__1632226328 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_810 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_810 .background-img{
                border-radius:;
            }
        
            #medical_box_810 .new_medical_icon{
                
            }
        #medical_box_810 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_810:hover .new_medical_icon{}#medical_box_810.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_810 
            
            #medical_box_810 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_810 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_810:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_810 .mode1-size_810{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_810 .new_medical_box > div{
                width:100%;
            }
             #medical_box_810 > div{
               height:100%;
            }
            #medical_box_810 .mode2-size_810{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_810 .mode3-size_810{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_810 .mode4-size_810{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_810 .mode5-size_810{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_810 .mode6-size_810{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_810 .mode7-size_810{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_810 .mode7-size_810 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_810 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_810 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_810{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_810 span:hover{
                color:!important;
            }
            .custom2_810{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_810 span:hover{
                color:;
            }
            #medical_box_810 .mode-btn1_810{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_810 .mode-btn1_810 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_810 .mode-btn2_810{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_810 .mode-btn2_810 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_810 .div-btn-title_main_810{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_810 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_810 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_809 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170463_3960 (1).jpg");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_809 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_809 .background-img{
                border-radius:;
            }
        
            #medical_box_809 .new_medical_icon{
                
            }
        #medical_box_809 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_809:hover .new_medical_icon{}#medical_box_809.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_809 
            
            #medical_box_809 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_809 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_809:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_809 .mode1-size_809{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_809 .new_medical_box > div{
                width:100%;
            }
             #medical_box_809 > div{
               height:100%;
            }
            #medical_box_809 .mode2-size_809{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_809 .mode3-size_809{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_809 .mode4-size_809{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_809 .mode5-size_809{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_809 .mode6-size_809{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_809 .mode7-size_809{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_809 .mode7-size_809 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_809 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_809 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_809{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_809 span:hover{
                color:!important;
            }
            .custom2_809{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_809 span:hover{
                color:;
            }
            #medical_box_809 .mode-btn1_809{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_809 .mode-btn1_809 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_809 .mode-btn2_809{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_809 .mode-btn2_809 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_809 .div-btn-title_main_809{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_809 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_809 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_808 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/1659170494_2994 (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_808 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_808 .background-img{
                border-radius:;
            }
        
            #medical_box_808 .new_medical_icon{
                
            }
        #medical_box_808 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:100%;height:92px;border-style:none;border-color:#000;}#medical_box_808:hover .new_medical_icon{}#medical_box_808.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#medical_box_816:hover{}
                #medical_box_808 
            
            #medical_box_808 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_808 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_808:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_808 .mode1-size_808{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_808 .new_medical_box > div{
                width:100%;
            }
             #medical_box_808 > div{
               height:100%;
            }
            #medical_box_808 .mode2-size_808{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_808 .mode3-size_808{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_808 .mode4-size_808{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_808 .mode5-size_808{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_808 .mode6-size_808{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_808 .mode7-size_808{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_808 .mode7-size_808 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_808 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_808 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_808{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_808 span:hover{
                color:!important;
            }
            .custom2_808{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_808 span:hover{
                color:;
            }
            #medical_box_808 .mode-btn1_808{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_808 .mode-btn1_808 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_808 .mode-btn2_808{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_808 .mode-btn2_808 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_808 .div-btn-title_main_808{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_808 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_808 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_239 .new_medical_title_main{color:#236872;font-weight:bold;font-size:18px;justify-content:flex-start;text-align:right;line-height:32px;}.module[data-id_page='1226']:hover .new_medical_title_main{}#module_new_medical_239 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;margin-top:32px;border-radius:8px;border-style:none;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#35a7ba;}.module[data-id_page='1226']:hover .new_medical_box_main{border-color:#c8513c !important;}
            #module_new_medical_239 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_239 .prev-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 55%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .next-btn-bottom-center{
                    position: absolute;
                    top: 98%;
                    left: 45%;
                    transform: translate(-50%, -50%);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .prev-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .next-btn-top-right{
                    position: absolute;
                    /* top: 0; */
                    right: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .prev-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .next-btn-top-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    top: -3%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .prev-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .next-btn-bottom-right{
                    position: absolute;
                    /* top: 0; */
                    right:2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .prev-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 2%;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .next-btn-bottom-left{
                    position: absolute;
                    /* top: 0; */
                    left: 0;
                    /* bottom: 1.5%; */
                    bottom:1.5%;
                    /* width: 50px; */
                    /* height: 100%; */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    z-index: 100;
                    width: max-content;
                }
                #module_new_medical_239 .new_medical_description{
                    height:0px;
                    padding:0 0.7rem;
                    overflow-y:auto;
                    overflow-x:hidden;
                }
                #module_new_medical_239 .new_medical_description >a{
                    color:#00AFEF!important;
                }
                #module_new_medical_239 .swiper-button-prev{
                   all:unset;
                }
                #module_new_medical_239 .swiper-button-next{
                   all:unset;
                }
                #module_new_medical_239 .next-btn{
                    position: absolute;
                    top: 0;
                    right:auto;
                    left:-55px;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    z-index:100;
                }
                #module_new_medical_239 .prev-btn{
                    position: absolute;
                    top: 0;
                    right:-55px;
                    left:auto;
                    width:50px;
                    height:100%;
                    display:flex;
                    justify-content: center;
                    align-items: center;
                    cursor:pointer;
                    z-index:100;

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

            
            #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='1227']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:64px;border-style:none;}.module[data-id_page='1227']:hover{;}.module[data-id_page='1227']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1227'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1227'] 
            
            .module[data-id_page='1227'] .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='1227'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1227']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layout_box_78.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:9;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_78:hover{}#layout_box_78 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_78 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_78 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_78 
            
            #layout_box_78 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_78 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_78:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_78 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_78 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_78.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_77.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:8;grid-column-end:9;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_77:hover{}
                #layout_box_77:hover .background-img {
                    filter:none;
                }
            
                #layout_box_77 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243964_e4af_1656933772.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_77 
            
            #layout_box_77 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_77 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_77:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_77 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_77 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_77.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_76.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:8;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_76:hover{}
                #layout_box_76:hover .background-img {
                    filter:none;
                }
            
                #layout_box_76 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243869_7f90_1656931870.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_76 
            
            #layout_box_76 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_76 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_76:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_76 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_76 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_76.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_75.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:8;grid-column-end:9;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_75:hover{}
                #layout_box_75:hover .background-img {
                    filter:none;
                }
            
                #layout_box_75 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243920_567a_1656936550.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_75 
            
            #layout_box_75 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_75 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_75:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_75 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_75 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_75.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_74.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:8;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_74:hover{}
                #layout_box_74:hover .background-img {
                    filter:none;
                }
            
                #layout_box_74 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243883__1656936354 (1).jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_74 
            
            #layout_box_74 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_74 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_74:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_74 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_74 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_74.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_73.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:9;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_73:hover{}#layout_box_73 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_73 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_73 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_73 
            
            #layout_box_73 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_73 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_73:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_73 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_73 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_73.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_72.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:7;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_72:hover{}#layout_box_72 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_72 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_72 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_72 
            
            #layout_box_72 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_72 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_72:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_72 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_72 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_72.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_71.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:6;grid-column-end:7;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_71:hover{}
                #layout_box_71:hover .background-img {
                    filter:none;
                }
            
                #layout_box_71 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243835_efaa_1611640692.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_71 
            
            #layout_box_71 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_71 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_71:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_71 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_71 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_71.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_70.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:6;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_70:hover{}
                #layout_box_70:hover .background-img {
                    filter:none;
                }
            
                #layout_box_70 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243800_81e6_1645277490.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_70 
            
            #layout_box_70 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_70 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_70:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_70 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_70 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_70.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_69.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:6;grid-column-end:7;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_69:hover{}
                #layout_box_69:hover .background-img {
                    filter:none;
                }
            
                #layout_box_69 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243766_cde7_1653190890.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_69 
            
            #layout_box_69 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_69 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_69:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_69 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_69 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_69.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_68.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:6;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_68:hover{}
                #layout_box_68:hover .background-img {
                    filter:none;
                }
            
                #layout_box_68 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243714__1620202335 (1).jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_68 
            
            #layout_box_68 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_68 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_68:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_68 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_68 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_68.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_67.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:7;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_67:hover{}#layout_box_67 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_67 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_67 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_67 
            
            #layout_box_67 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_67 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_67:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_67 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_67 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_67.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_66.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_66:hover{}#layout_box_66 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_66 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_66 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_66 
            
            #layout_box_66 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_66 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_66:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_66 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_66 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_66.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_65.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_65:hover{}
                #layout_box_65:hover .background-img {
                    filter:none;
                }
            
                #layout_box_65 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243464_0b6b_1644855327.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_65 
            
            #layout_box_65 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_65 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_65:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_65 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_65 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_65.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_64.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_64:hover{}
                #layout_box_64:hover .background-img {
                    filter:none;
                }
            
                #layout_box_64 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243603__1644090148 (1).jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_64 
            
            #layout_box_64 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_64 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_64:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_64 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_64 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_64.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_63.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_63:hover{}
                #layout_box_63:hover .background-img {
                    filter:none;
                }
            
                #layout_box_63 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243569_2115_1643952631.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_63 
            
            #layout_box_63 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_63 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_63:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_63 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_63 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_63.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_62.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_62:hover{}
                #layout_box_62:hover .background-img {
                    filter:none;
                }
            
                #layout_box_62 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243464_0b6b_1644855327.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_62 
            
            #layout_box_62 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_62 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_62:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_62 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_62 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_62.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_61.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_61:hover{}#layout_box_61 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_61 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_61 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_61 
            
            #layout_box_61 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_61 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_61:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_61 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_61 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_61.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_60.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_60:hover{}#layout_box_60 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_60 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_60 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_60 .new_layout_button{color:#19bfd3;background-color:transparent;font-weight:500;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_60 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #layout_box_60 
            
            #layout_box_60 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_60 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_60:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_60 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_60 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_60.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_59.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_59:hover{}
                #layout_box_59:hover .background-img {
                    filter:none;
                }
            
                #layout_box_59 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243243_6916_1656405344.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_59 
            
            #layout_box_59 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_59 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_59:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_59 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_59 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_59.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_58.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_58:hover{}
                #layout_box_58:hover .background-img {
                    filter:none;
                }
            
                #layout_box_58 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243210_ce4b_1656422164.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_58 
            
            #layout_box_58 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_58 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_58:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_58 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_58 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_58.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_57.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_57:hover{}
                #layout_box_57:hover .background-img {
                    filter:none;
                }
            
                #layout_box_57 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659243083_87ef_1656404674.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_57 
            
            #layout_box_57 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_57 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_57:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_57 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_57 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_57.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_56.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_56:hover{}
                #layout_box_56:hover .background-img {
                    filter:none;
                }
            
                #layout_box_56 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659242617_d3dd_1649056488.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_56 
            
            #layout_box_56 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_56 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_56:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_56 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_56 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_56.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_55.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_55:hover{}#layout_box_55 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_55 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_55 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_55 
            
            #layout_box_55 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_55 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_55:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_55 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_55 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_55.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_8 .new_layout_box_main{display:grid;width:1200px;grid-template-columns:repeat(8,1fr);grid-template-rows:repeat(9,1fr);column-gap:0px;row-gap:0px;visibility:visible;border-style:none;}.module[data-id_page='1227']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_8{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_8 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_8 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_8 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_8 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_8 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='1228']{;background-color:#941b80;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='1228']:hover{;}.module[data-id_page='1228']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1228'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1228'] 
            
            .module[data-id_page='1228'] .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='1228'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1228']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                .parent-time-box .time-box{
                    width: 70px;
                    height: 70px;
                    display: flex;
                    margin-left: 15px;
                    background-color: rgba(251,251,251,.85);
                    text-align: center;
                    justify-content: center;
                    flex-direction: column;
                    border-radius: 4px;
                    line-height: 20px;
                }
                .parent-time-box .time-box span:first-child{
                    color: #222;
                    font-weight: 500;
                    font-size: 16px;
                }
                .parent-time-box .time-box span:last-child{
                    color: #555;
                    font-size: 14px;
                    font-weight: 400;
                }
            
                        #module_shop_sub_316 .swiper-container{
                            width:890px;
                            margin:0;
                        }
                        #module_shop_sub_316 .img-view-all{
                            width:290px;
                            margin-bottom:15px;
                        }
                        #module_shop_sub_316 .img-view-all img{
                            width:100%;
                        }
                        #module_shop_sub_316 .btn-view-all{
                            width: 150px;
                        }
                    
                    #module_shop_sub_316 .container_backg{
                        width:100%;
                        margin:auto;
                        background-color: transparent;
                    }
                    #module_shop_sub_316 .title-box{
                        font-size:14px;
                    }
                    #module_shop_sub_316 .swiper-button-prev,#module_shop_sub_316 .swiper-button-next {
                        background-image: none;
                        display: flex;
                        justify-content: center;
                        flex-direction: column;
                        text-align: center;
                        width: 50px;
                        height: 90px;
                        font-size: 28px;
                        color: #333;
                        background-color: #fff;
                    }
                    #module_shop_sub_316 .btn-view-all{
                        height: 42px;
                        margin: auto auto  8%;
                        line-height: 42px;
                        text-align: center;
                        border: 1px solid #333;
                        border-radius: 4px;
                    }
                    #module_shop_sub_316 .btn-view-all:hover{
                        border-color: #333;
                    }
                    #module_shop_sub_316 .swiper-button-prev:hover,#module_shop_sub_316 .swiper-button-next:hover {
                        color: #333;
                        background-color: #fff;
                    }
                    #module_shop_sub_316 .swiper-button-prev{
                        border-radius: 4px 0 0 4px;
                        box-shadow: -2px 0 5px #eee;
                        right: 0;
                    }
                    #module_shop_sub_316 .swiper-button-prev:hover{
                        box-shadow: -2px 0 5px #eee;
                    }
                    #module_shop_sub_316 .swiper-button-next{
                        border-radius: 0 4px 4px 0;
                        box-shadow: 2px 0 5px  #eee;
                        left: 0;
                    }
                    #module_shop_sub_316 .swiper-button-next:hover{
                        box-shadow: -2px 0 5px #eee;
                    }
                    #module_shop_sub_316 .btn-view-all i{
                        margin: 0 10px;
                    }
                    #module_shop_sub_316 .swiper-button-disabled{
                        box-shadow: none;
                        color: rgba(0,0,0,0.2);
                    }
                    #module_shop_sub_316 .title-shop{
                        width: 1200px;
                        min-width: 1200px;
                    }
                



                .module_shop_product{
                    overflow: hidden;
                }
                .module_shop_product:hover .iconsSection {
                    left: 10px;
                }
                

                .iconsSection {
                    padding: 10px;
                    position: absolute;
                    top: 10px;
                    left: -100%;
                    z-index: 100;
                    transition: 0.5s ease;
                }
                .img-box:hover .iconsSection{
                               left: 0%;
                }
                .cardMain:hover .iconsSection {
                    left: 10px;
                }

                .icon-bottom svg {
                    height: 14px;
                    width: 14px;
                    padding: 8px;
                }
                .like-svg:hover path{
                    fill: blue;
                }
                .icon-bottom > div {
                    height: 100%;
                }
                .icon-bottom{
                    height: 30px;
                    width: 30px;
                    transition: 0.5s ease-in-out;
                    margin-bottom: 10px;
                    border-radius: 50px;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    background-color: #FEFBF3;
                    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
                }
                .socials_card {
                    left: 0;
                    right: 0;
                    position: absolute;
                    top: 40px;
                    padding-top: 10px;
                    z-index: 50;
                    display: none;
                }
                .shareIcon {
                    width: max-content;
                }
                .icon-bottom > div {
                    height: 100%;
                }
                .socialIcon {
                    border-right: 2px solid #222;
                }
                .red_class{
                    fill: red;
                }
                .red_class:hover path{
                   fill: #ff0000;
                }
            #module_shop_sub_316 .module_shop_product{
                background-color:#ffffff;
                border-radius:3px !important;
            }
            #module_shop_sub_316 .module_shop_product{
                border-radius:2px;
                font-size:13px;
                font-weight:400;
                color:#727272;
                -webkit-transition: 0.55s;
                -moz-transition: 0.55s;
                transition: 0.55s;
                border: 1px solid #eaeaea;
            }
           .module_shop_product .img-box{
                width:100%;
                height:270px;
                padding:1px;
                overflow:hidden;
                position:relative;
            }
            #module_shop_sub_316 .img-box img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            #module_shop_sub_316 .module_shop_product .container-box{
                background-color:#ffffff;
                border-radius:0 0 3px 3px;
            }
            .module_shop_product .container-box{
                padding:10px 15px;
                position:relative;
                text-align:center;
                transition:.2s ease-out;
                overflow:hidden;
                height:calc(100% - 270px);
            }
            .module_shop_product:hover .container-box{
                margin-top: -65px;
                height:calc(100% - 270px + 65px);
            }
            .module_shop_product .star-box{
                min-height:25px;
                height:25px;
                overflow:hidden;
            }
            .module_shop_product .star-box i{
                color:#ffb503;
                font-size:12px;
                margin:5px 1px;
            }
            .module_shop_product .title-box{
                font-size:15px;
                height:50px;
                min-height:50px;
                line-height:25px;
                overflow:hidden;
            }
            #module_shop_sub_316 .module_shop_product .title-box a{
                font-weight:400;
                color:#333;
                transition:color .4s ease-in;
            }
            #module_shop_sub_316 .module_shop_product .title-box a:hover{
                color:#03a9f5;
            }
            .module_shop_product .parent-price-box{
                height:25px;
                min-height:25px;
                line-height:25px;
                overflow:hidden;
            }
            .module_shop_product .tag-box{
                height:20px;
                line-height:20px;
                white-space:nowrap;
                overflow:hidden;
            }
            #module_shop_sub_316 .price-box,#module_shop_sub_316 .discount-box,#module_shop_sub_316 .price-box-delete{
                color:#333;
                font-weight:400;
                font-size:20px;
            }
            #module_shop_sub_316 .price-box-delete{
                text-decoration:line-through;
                color:red;
            }
            #module_shop_sub_316 .background-image-toman{
                height:18px;
                width:32px;
                margin-right:1px
                -webkit-background-size:100% 100%;
                background-size:100% 100%;
                -webkit-background-repeat:no-repeat;
                background-repeat:no-repeat;
                -webkit-background-image:  url("https://noroweb.com/demo-c118/files/main/module/shop/main/img/toman.svg");
                background-image: url("https://noroweb.com/demo-c118/files/main/module/shop/main/img/toman.svg");
                display:inline-block;
                vertical-align:middle;
            }
            .msg-center-box{
                width: 100%;
                text-align: center;
                padding: 100px 0px;
                border: 1px solid;
                font-size: 16px;
                font-weight: 500;
                color: gray;
                margin-top:15px;
            }
            #module_shop_sub_316 .discount-number {
                position: absolute;
                top: 10px;
                right: -14px;
                background: #ff0000;
                background: linear-gradient(133deg, transparent 10px, red 11px);
                padding: 5px 20px;
                color: #fff;
                font-size: 20px;
                min-width: 100px;
            }
            #module_shop_sub_316 .discount-number::after {
                width: 0;
                height: 0;
                border: solid 10px;
                border-color: transparent transparent darkred transparent;
                transform: rotate(-45deg);
                content: "";
                position: absolute;
                right: 4px;
                bottom: -10px;
            }
            #module_shop_sub_316 .new-product{
                position: absolute;
                top: 10px;
                right: 10px;
                padding:0 3px;
                background-color:#03a9f5;
                color:#fff;
                font-size:13px;
                font-weight:400;
                border-radius:4px
            }
            .parent-batc{
                margin-bottom:-65px;
                margin-top:auto;
                height:65px;
                width:100%;
                transition:.2s ease-out;
                opacity:0;
            }
            .module_shop_product:hover .parent-batc{
                opacity:1;
                margin-bottom:0;
            }
            .status_shopping_box_page.unavailable .unavailable_box_page,.shopping_box_page{
                display: flex;
            }
            .unavailable_box_page,.status_shopping_box_page.unavailable .shopping_box_page{
                display: none;
            }
            #module_shop_sub_316 .parent-batc .button-add-to-cart{
                height:45px;
                line-height:45px;
                width:max-content;
                padding:0 10%;
                border-radius:5px;
                background-color:#2879fe;
                color:#fff;
                margin:10px auto;
                cursor:pointer;
                transition:.5s;
                max-width:100%;
            }
            #module_shop_sub_316 .parent-batc .button-add-to-cart:hover{
                background-color:#2266d3;
            }
            .unavailable_box_page button{
                background-color: #7e7880 !important;
            }
            .button-add-to-cart span{
                font-size:14px;
                font-weight:400;
                cursor:pointer;
            }
            .button-add-to-cart i{
                margin-top: -3px;
            }
            .module_shop_product .shop-timer-box{
                position:absolute;
                bottom:10px;
                right:0;
                left:0;
                transition:.2s ease-out;
                background-color:transparent;
            }
            .module_shop_product:hover .shop-timer-box{
                bottom:75px;
            }
            .parent-time-box{
                display:flex;
                justify-content:space-between;
                width:100%;
                padding:0 5px
            }
            .parent-time-box .time-box{
                width:25%;
                max-width:70px;
                margin:0 2px;
                background-color:rgba(256,256,256,.92);
                display:inline-flex;
            }
            .parent-time-box .time-box span{
                color:#4378ff !important;
            }
            .module_shop_product .item_img{
                width: 42px;
                height: 42px;
                margin:8px 2px 2px;
                border-radius: 6px;
                position: relative;
                cursor: pointer;
            }
            .module_shop_product .item_img.active_img{
                border: 2px solid #007bff;
            }
            .module_shop_product .title-item-img{
                position: absolute;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                top: -55px;
                opacity: 0;
                display: block;
                height: 30px;
                line-height: 30px;
                color: #777;
                font-size: 11px;
                font-weight: 400;
                background-color: #fff;
                min-width: 50px;
                white-space: nowrap;
                text-align: center;
                visibility: hidden;
                -webkit-transition: .5s;-moz-transition:  .5s;-ms-transition:  .5s;-o-transition:  .5s;transition:  .5s;
                -webkit-box-shadow: 0 0 5px #f7f8fa;-moz-box-shadow: 0 0 5px #f7f8fa;box-shadow: 0 0 5px #f7f8fa;
                border: 1px solid #efefef;
            }
            .module_shop_product .item_img:hover .title-item-img{
                opacity: 1;
                top: -45px;
                visibility: visible;
            }
            .module_shop_product .item_img .title-item-img:hover{
                opacity: 0;
                top: -55px;
                visibility: hidden;
            }
            .module_shop_product .title-item-img:after{
                content:"";
                border: 7px solid;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                border-color: #efefef transparent transparent transparent;
                position: absolute;
                top: 100%;
            }
            .module_shop_product .item_img .bg-item-img{
                background-size: 60px 60px;
                background-repeat: no-repeat;
                background-position: center center;
                display: block;
                width: 100%;
                height: 100%;
                cursor: pointer;
                border-radius: 4px;
            }
            .chose_size_items .msg-row-box{
                line-height: 35px;
                font-size: 14px;
            }
            .chose_size_items .sub-size-item{
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 12px;
                font-weight: 400;
                text-align: center;
                margin:8px 3px 3px;
                border-radius: 2px;
                vertical-align: middle;
                border: 1px solid #f7f8fa;
                cursor: pointer;
                -webkit-transition: .3s;-moz-transition:  .3s;-ms-transition:  .3s;-o-transition:  .3s;transition:  .3s;
            }
            .chose_size_items .sub-size-item.active_size{
                background-color: #2879fe;
                color: #fff;
                border-color: #6e91ec;
            }
            #module_shop_sub_316 .title-shop{
                margin: 0 auto px;
                background-color: transparent;
                height: px;
                line-height: px;
                text-align: right;
                font-size: px;
                color: ;
            }
            #module_shop_sub_316 .title-shop a{
                color:inherit
            }
            #module_shop_sub_316 .title-shop:hover{
                background-color: transparent;
                color: ;
            }
            #module_shop_sub_316 .btn-view-all{
                text-align: center;
                color: #333;
                background-color: transparent;
                font-size:  14px;
            }
            #module_shop_sub_316 .btn-view-all:hover{
                color: #333;
                background-color: transparent;
            }
            #buy_product a{
                background-color: #2879fe;
                padding: 4px 10px 4px 10px;
                border-radius: 3px;
                color: white;
                display:block;
                width: 100px;
                margin:auto;
                margin-top: 10px;
            }
            #buy_product a:hover{
                background-color: #2266d3;
            }
        
                .module_sub_shop_1.item_img{
                    width:50px;
                    height:50px;
                }
            
                .module_sub_shop_2.item_img{
                    width:50px;
                    height:50px;
                }
            
                .module_sub_shop_3.item_img{
                    width:50px;
                    height:50px;
                }
            .module[data-id_page='1229']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:16px;border-style:none;}.module[data-id_page='1229']:hover{;}.module[data-id_page='1229']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1229'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1229'] 
            
            .module[data-id_page='1229'] .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='1229'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1229']: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;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_240 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_823 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_823 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_823 .background-img{
                border-radius:;
            }
        #medical_box_823 .new_medical_title{color:#ffffff;font-weight:bold;font-size:18px;text-align:right;line-height:32px;}#medical_box_823:hover .new_medical_title{}
                #medical_box_823 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_823 .new_medical_icon{background-size:cover;background-position:center;background-repeat:no-repeat;border-style:none;border-color:#000;}#medical_box_823:hover .new_medical_icon{}#medical_box_823.new_medical_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#medical_box_823:hover{}
                #medical_box_823 
            
            #medical_box_823 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_823 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_823:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #medical_box_823 .mode1-size_823{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_823 .new_medical_box > div{
                width:100%;
            }
             #medical_box_823 > div{
               height:100%;
            }
            #medical_box_823 .mode2-size_823{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_823 .mode3-size_823{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_823 .mode4-size_823{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_823 .mode5-size_823{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_823 .mode6-size_823{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_823 .mode7-size_823{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_823 .mode7-size_823 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_823 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_823 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_823{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_823 span:hover{
                color:!important;
            }
            .custom2_823{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_823 span:hover{
                color:;
            }
            #medical_box_823 .mode-btn1_823{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_823 .mode-btn1_823 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_823 .mode-btn2_823{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_823 .mode-btn2_823 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_823 .div-btn-title_main_823{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_823 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_823 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_822 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/icon/1642400365_images (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_822 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_822 .background-img{
                border-radius:8px;
            }
        
            #medical_box_822 .new_medical_icon{
                
            }
        #medical_box_822 .new_medical_title{color:#000;font-weight:bold;font-size:14px;text-align:right;line-height:32px;}#medical_box_822:hover .new_medical_title{}
                #medical_box_822 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_822 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:7%;height:19px;margin-left:8px;border-style:none;border-color:#000;}#medical_box_822:hover .new_medical_icon{}#medical_box_822.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:left;background-attachment:scroll;width:100%;max-width:100%;height:80px;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#ffffff;}#medical_box_822:hover{}
                #medical_box_822:hover .background-img {
                    filter:none;
                }
            
                #medical_box_822 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_822 
            
            #medical_box_822 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_822 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_822:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_822.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/image/1644994436_lucky-draw.png");
                }
            
            #medical_box_822 .mode1-size_822{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_822 .new_medical_box > div{
                width:100%;
            }
             #medical_box_822 > div{
               height:100%;
            }
            #medical_box_822 .mode2-size_822{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_822 .mode3-size_822{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_822 .mode4-size_822{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_822 .mode5-size_822{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_822 .mode6-size_822{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_822 .mode7-size_822{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_822 .mode7-size_822 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_822 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_822 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_822{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_822 span:hover{
                color:!important;
            }
            .custom2_822{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_822 span:hover{
                color:;
            }
            #medical_box_822 .mode-btn1_822{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_822 .mode-btn1_822 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_822 .mode-btn2_822{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_822 .mode-btn2_822 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_822 .div-btn-title_main_822{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_822 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_822 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_821 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/icon/1642400365_images (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_821 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_821 .background-img{
                border-radius:8px;
            }
        
            #medical_box_821 .new_medical_icon{
                
            }
        #medical_box_821 .new_medical_title{color:#000;font-weight:bold;font-size:14px;text-align:right;line-height:32px;}#medical_box_822:hover .new_medical_title{}
                #medical_box_821 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_821 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:7%;height:19px;margin-left:8px;border-style:none;border-color:#000;}#medical_box_822:hover .new_medical_icon{}#medical_box_821.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:left;background-attachment:scroll;width:100%;max-width:100%;height:80px;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#ffffff;}#medical_box_821:hover{}
                #medical_box_821:hover .background-img {
                    filter:none;
                }
            
                #medical_box_821 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_821 
            
            #medical_box_821 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_821 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_821:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_821.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/image/1644994436_missions.png");
                }
            
            #medical_box_821 .mode1-size_821{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_821 .new_medical_box > div{
                width:100%;
            }
             #medical_box_821 > div{
               height:100%;
            }
            #medical_box_821 .mode2-size_821{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_821 .mode3-size_821{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_821 .mode4-size_821{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_821 .mode5-size_821{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_821 .mode6-size_821{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_821 .mode7-size_821{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_821 .mode7-size_821 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_821 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_821 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_821{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_821 span:hover{
                color:!important;
            }
            .custom2_821{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_821 span:hover{
                color:;
            }
            #medical_box_821 .mode-btn1_821{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_821 .mode-btn1_821 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_821 .mode-btn2_821{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_821 .mode-btn2_821 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_821 .div-btn-title_main_821{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_821 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_821 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        
            #medical_box_820 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/icon/1642400365_images (1).png");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_820 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_820 .background-img{
                border-radius:8px;
            }
        
            #medical_box_820 .new_medical_icon{
                
            }
        #medical_box_820 .new_medical_title{color:#000;font-weight:bold;font-size:14px;text-align:right;line-height:32px;}#medical_box_822:hover .new_medical_title{}
                #medical_box_820 .new_medical_title label{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #medical_box_820 .new_medical_icon{background-size:contain;background-position:center;background-repeat:no-repeat;min-width:7%;height:19px;margin-left:8px;border-style:none;border-color:#000;}#medical_box_822:hover .new_medical_icon{}#medical_box_820.new_medical_module{background-color:#ffffff;background-size:contain;background-repeat:no-repeat;background-position:left;background-attachment:scroll;width:100%;max-width:100%;height:80px;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-radius:8px;border-style:solid;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#ffffff;}#medical_box_820:hover{}
                #medical_box_820:hover .background-img {
                    filter:none;
                }
            
                #medical_box_820 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_820 
            
            #medical_box_820 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_820 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_820:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_820.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/image/1644994436_awards.png");
                }
            
            #medical_box_820 .mode1-size_820{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_820 .new_medical_box > div{
                width:100%;
            }
             #medical_box_820 > div{
               height:100%;
            }
            #medical_box_820 .mode2-size_820{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_820 .mode3-size_820{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_820 .mode4-size_820{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_820 .mode5-size_820{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_820 .mode6-size_820{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_820 .mode7-size_820{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_820 .mode7-size_820 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_820 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_820 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_820{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_820 span:hover{
                color:!important;
            }
            .custom2_820{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_820 span:hover{
                color:;
            }
            #medical_box_820 .mode-btn1_820{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_820 .mode-btn1_820 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_820 .mode-btn2_820{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_820 .mode-btn2_820 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_820 .div-btn-title_main_820{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_820 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_820 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_240 .new_medical_box_main{background-color:#007295;display:flex;flex-wrap:wrap;visibility:visible;padding-top:24px;padding-bottom:24px;padding-right:24px;padding-left:24px;border-radius:8px;border-style:none;}.module[data-id_page='1229']:hover .new_medical_box_main{}
            #module_new_medical_240 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_240 .new_medical_module{
                    width:276px;
                    position:relative;
                    overflow:hidden;
                    margin-left:16px;
                    margin-bottom:0px;
                }
                #module_new_medical_240 .medical_box_main_animation_trigger{
                    margin-left:16px;
                    margin-bottom:0px;
                }
                #module_new_medical_240 .new_medical_module:nth-child(4n){
                    margin-left:0;
                }
                #module_new_medical_240 .medical_box_main_animation_trigger:nth-child(4n){
                    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='1230']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:32px;border-style:none;}.module[data-id_page='1230']:hover{;}.module[data-id_page='1230']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1230'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1230'] 
            
            .module[data-id_page='1230'] .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='1230'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1230']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        #layout_box_102.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:9;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_78:hover{}#layout_box_102 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_102 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_102 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_102 
            
            #layout_box_102 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_102 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_102:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_102 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_102 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_102.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_101.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:8;grid-column-end:9;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_101:hover{}
                #layout_box_101:hover .background-img {
                    filter:none;
                }
            
                #layout_box_101 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245837_121855246.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_101 
            
            #layout_box_101 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_101 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_101:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_101 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_101 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_101.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_100.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:8;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_100:hover{}
                #layout_box_100:hover .background-img {
                    filter:none;
                }
            
                #layout_box_100 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245838_1381500.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_100 
            
            #layout_box_100 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_100 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_100:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_100 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_100 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_100.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_99.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:8;grid-column-end:9;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_99:hover{}
                #layout_box_99:hover .background-img {
                    filter:none;
                }
            
                #layout_box_99 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245840_6b7a_1633248793.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_99 
            
            #layout_box_99 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_99 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_99:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_99 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_99 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_99.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_98.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:8;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_98:hover{}
                #layout_box_98:hover .background-img {
                    filter:none;
                }
            
                #layout_box_98 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245841_f336_1612801080.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_98 
            
            #layout_box_98 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_98 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_98:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_98 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_98 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_98.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_97.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:7;grid-column-end:9;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_73:hover{}#layout_box_97 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_97 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_97 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_97 
            
            #layout_box_97 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_97 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_97:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_97 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_97 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_97.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_96.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:7;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_72:hover{}#layout_box_96 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_96 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_96 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_96 
            
            #layout_box_96 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_96 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_96:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_96 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_96 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_96.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_95.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:6;grid-column-end:7;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_95:hover{}
                #layout_box_95:hover .background-img {
                    filter:none;
                }
            
                #layout_box_95 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245571_d269_1614513251.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_95 
            
            #layout_box_95 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_95 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_95:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_95 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_95 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_95.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_94.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:6;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_94:hover{}
                #layout_box_94:hover .background-img {
                    filter:none;
                }
            
                #layout_box_94 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245573_ac0d_1630351304.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_94 
            
            #layout_box_94 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_94 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_94:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_94 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_94 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_94.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_93.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:6;grid-column-end:7;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_93:hover{}
                #layout_box_93:hover .background-img {
                    filter:none;
                }
            
                #layout_box_93 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245575_a4db_1639393931.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_93 
            
            #layout_box_93 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_93 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_93:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_93 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_93 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_93.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_92.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:6;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_92:hover{}
                #layout_box_92:hover .background-img {
                    filter:none;
                }
            
                #layout_box_92 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659245569_2b26_1641303563.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_92 
            
            #layout_box_92 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_92 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_92:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_92 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_92 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_92.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_91.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:5;grid-column-end:7;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_67:hover{}#layout_box_91 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_91 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_91 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_91 
            
            #layout_box_91 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_91 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_91:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_91 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_91 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_91.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_90.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_66:hover{}#layout_box_90 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_90 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_90 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_90 
            
            #layout_box_90 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_90 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_90:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_90 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_90 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_90.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_89.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_89:hover{}
                #layout_box_89:hover .background-img {
                    filter:none;
                }
            
                #layout_box_89 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244686_08ef_1610993916.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_89 
            
            #layout_box_89 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_89 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_89:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_89 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_89 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_89.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_88.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_88:hover{}
                #layout_box_88:hover .background-img {
                    filter:none;
                }
            
                #layout_box_88 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244687_7024_1652105866.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_88 
            
            #layout_box_88 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_88 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_88:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_88 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_88 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_88.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_87.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:4;grid-column-end:5;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_87:hover{}
                #layout_box_87:hover .background-img {
                    filter:none;
                }
            
                #layout_box_87 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244689_6f97_1635343303.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_87 
            
            #layout_box_87 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_87 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_87:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_87 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_87 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_87.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_86.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:4;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_86:hover{}
                #layout_box_86:hover .background-img {
                    filter:none;
                }
            
                #layout_box_86 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244690_c8fd_1636747381.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_86 
            
            #layout_box_86 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_86 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_86:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_86 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_86 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_86.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_85.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:3;grid-column-end:5;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_61:hover{}#layout_box_85 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_85 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_85 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_85 
            
            #layout_box_85 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_85 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_85:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_85 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_85 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_85.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_84.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:9;grid-row-end:10;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_60:hover{}#layout_box_84 .new_layout_description{color:#000;font-weight:500;text-align:center;border-style:solid;border-color:#555;}#layout_box_60:hover .new_layout_description{}#layout_box_84 .new_layout_title{color:#19bfd3;font-weight:500;font-size:14px;text-align:center;padding-right:88px;line-height:32px;}#layout_box_60:hover .new_layout_title{}
                #layout_box_84 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            #layout_box_84 .new_layout_button{color:#19bfd3;background-color:transparent;font-weight:500;text-align:center;border-style:none;border-color:#000;box-shadow:0px 0px 0px 0px ;}#layout_box_60 .new_layout_button:hover{box-shadow:0px 0px 0px 0px  !important;}
                #layout_box_84 
            
            #layout_box_84 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_84 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_84:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_84 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_84 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_84.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_83.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-left-width:1px;border-color:#e0e0e2;}#layout_box_83:hover{}
                #layout_box_83:hover .background-img {
                    filter:none;
                }
            
                #layout_box_83 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244547_abb1_1634480716.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_83 
            
            #layout_box_83 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_83 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_83:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_83 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_83 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_83.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_82.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:6;grid-row-end:9;padding-right:32px;padding-left:32px;border-style:solid;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_82:hover{}
                #layout_box_82:hover .background-img {
                    filter:none;
                }
            
                #layout_box_82 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244548_f06c_1649315415.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_82 
            
            #layout_box_82 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_82 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_82:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_82 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_82 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_82.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_81.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:2;grid-column-end:3;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_81:hover{}
                #layout_box_81:hover .background-img {
                    filter:none;
                }
            
                #layout_box_81 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244545_8869_1645523389.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_81 
            
            #layout_box_81 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_81 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_81:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_81 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_81 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_81.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_80.new_layout_module{background-size:contain;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:2;grid-row-start:3;grid-row-end:6;padding-right:32px;padding-left:32px;border-style:solid;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_80:hover{}
                #layout_box_80:hover .background-img {
                    filter:none;
                }
            
                #layout_box_80 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    background-image: url("https://noroweb.com/demo-c118/files/1659244550_556a_1630784095.jpg");
                    background-repeat: inherit;
                    background-position: inherit;
                    background-size: inherit;
                    background-attachment: inherit;
                    filter: none;
                }
            
                #layout_box_80 
            
            #layout_box_80 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_80 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_80:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_80 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_80 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_80.cursor_box-layout{
                cursor:auto; 
            }
        #layout_box_79.new_layout_module{background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;grid-column-start:1;grid-column-end:3;grid-row-start:1;grid-row-end:3;padding-top:16px;padding-bottom:16px;padding-right:16px;padding-left:16px;border-style:solid;border-top-width:1px;border-right-width:1px;border-left-width:1px;border-color:#e0e0e2;}#layout_box_55:hover{}#layout_box_79 .new_layout_description{color:#81858b;font-weight:300;font-size:14px;line-height:32px;text-align:right;margin-top:8px;border-style:solid;border-color:#555;}#layout_box_55:hover .new_layout_description{}#layout_box_79 .new_layout_title{color:#232f46;font-weight:bold;font-size:16px;text-align:right;line-height:32px;}#layout_box_55:hover .new_layout_title{}
                #layout_box_79 .new_layout_title h3{
                    font-size:inherit;
                    font-weight:inherit;
                    color:inherit;
                }
            
                #layout_box_79 
            
            #layout_box_79 .new_layout_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #layout_box_79 .layer_first_child {
                width: 100%;
            }
        
            #layout_box_79:hover .new_layout_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #layout_box_79 .new_layout_box{
                    visibility:visible;
                }
            
            #layout_box_79 .container-layout-box{
                height:100%;
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
            }
            #layout_box_79.cursor_box-layout{
                cursor:auto; 
            }
        #module_new_layout_9 .new_layout_box_main{display:grid;width:1200px;grid-template-columns:repeat(8,1fr);grid-template-rows:repeat(9,1fr);column-gap:0px;row-gap:0px;visibility:visible;border-style:none;}.module[data-id_page='1227']:hover .new_layout_box_main{}
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_layout_9{
                overflow:hidden;
                min-width:1200px;
                z-index:15;
            }
            #module_new_layout_9 .new_layout_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_layout_9 .new_layout_box.dno{
                display:none;
            }
            #module_new_layout_9 > .container-main{
                position:relative;
                z-index:11;
                height:100%
            }
            #module_new_layout_9 .new_layout_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            .new_color_tag{
                color: #00AFEF !important;
            }
        
            #module_new_layout_9 .new_layout_module{
                width:100% !important;
                position:relative;
                overflow:hidden;
            }
        .module[data-id_page='1231']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;border-style:none;}.module[data-id_page='1231']:hover{;}.module[data-id_page='1231']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1231'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1231'] 
            
            .module[data-id_page='1231'] .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='1231'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1231']: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;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_241 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            
            #medical_box_824 .new_medical_icon{
                background-image:url("https://noroweb.com/demo-c118/files/");
                 transition: all 0.2s ease-in-out;
                 cursor:unset!important;
            }
            #medical_box_824 .new_medical_layer > div{
                width:100%;
            }
            #medical_box_824 .background-img{
                border-radius:8px;
            }
        #medical_box_824.new_medical_module{background-size:100% 100%;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;height:130px;border-radius:8px;border-style:none;}#medical_box_776:hover{}
                #medical_box_824:hover .background-img {
                    filter:none;
                }
            
                #medical_box_824 .background-img {
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: 0;
                    bottom: 0;
                    z-index: 0;
                    backdrop-filter: none;
                }
            
                #medical_box_824 
            
            #medical_box_824 .new_medical_layer {
                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 10;
                transition: all 600ms ease;
                background-color: rgba(0,0,0,0);
                display: flex;
                
            right:0;
            top:0;
        
            }

            #medical_box_824 .layer_first_child {
                width: 100%;
            }
        
            #medical_box_824:hover .new_medical_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                #medical_box_824.new_medical_module{
                    background-image:url("https://noroweb.com/demo-c118/files/image/1644824986_1841_1644643491.jpg");
                }
            
            #medical_box_824 .mode1-size_824{
               cursor:pointer;
               width:64px;
               height:64px;
            }
			#medical_box_824 .new_medical_box > div{
                width:100%;
            }
             #medical_box_824 > div{
               height:100%;
            }
            #medical_box_824 .mode2-size_824{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_824 .mode3-size_824{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #medical_box_824 .mode4-size_824{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #medical_box_824 .mode5-size_824{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #medical_box_824 .mode6-size_824{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #medical_box_824 .mode7-size_824{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #medical_box_824 .mode7-size_824 span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            #medical_box_824 .new_medical_box .new_medical_description a{
                color:#00AFEF!important;
            }
            #medical_box_824 .new_medical_box .new_medical_description a:hover{
                color:#00AFEF!important;
            }
            .custom1_824{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1_824 span:hover{
                color:!important;
            }
            .custom2_824{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2_824 span:hover{
                color:;
            }
            #medical_box_824 .mode-btn1_824{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_824 .mode-btn1_824 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #medical_box_824 .mode-btn2_824{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #medical_box_824 .mode-btn2_824 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #medical_box_824 .div-btn-title_main_824{
                display: flex;
                justify-content: right;
                align-items: center;
            }
        
                #medical_box_824 .new_medical_box{
                    visibility:visible;
                }
            
            #medical_box_824 .container-medical-box{
                background-repeat: inherit;
                background-position: inherit;
                background-size: inherit;
                background-attachment: inherit;
                width: 100%;
                height: 100%;
            }
        #module_new_medical_241 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='1220']:hover .new_medical_box_main{}
            #module_new_medical_241 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_241 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_241 .medical_box_main_animation_trigger{
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #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='1232']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:16px;border-style:none;}.module[data-id_page='1232']:hover{;}.module[data-id_page='1232']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1232'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1232'] 
            
            .module[data-id_page='1232'] .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='1232'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1232']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                    #module_shop_sub_317 .title-box{
                        font-size:14px;
                    }
                    #module_shop_sub_317 .container_backg{
                        width:100%;
                        margin:auto;
                        background-color: transparent;
                    }
                    #module_shop_sub_317 .w100per{width:100%;}
                    #module_shop_sub_317 .swiper-button-prev,#module_shop_sub_317 .swiper-button-next {
                        display: none;
                    }
                    #module_shop_sub_317 .swiper-button-shop{
                        margin:0 5px;
                        vertical-align:center;
                        width: 40px;
                        text-align: center;
                        cursor: pointer;
                        font-size: 28px;
                        color: #333;
                        -webkit-transition: .2s;-moz-transition:  .2s;-ms-transition:  .2s;-o-transition:  .2s;transition:  .2s;
                    }
                    #module_shop_sub_317 .swiper-button-shop:hover{
                        color: #333;
                    }
                    #module_shop_sub_317 .disabled-button,#module_shop_sub_317 .disabled-button:hover,#module_shop_sub_317 .disabled-button:active{
                        cursor: default;
                        color: #ddd;
                        border: none;
                    }
                    #module_shop_sub_317 .disabled-button i{
                        cursor: default;
                    }
                    #module_shop_sub_317 .title-shop{
                        width: 1200px;
                        min-width: 1200px;
                    }
                    #module_shop_sub_317 .div-title-main{
                        margin-block-start: 0!important;
                    } 
                



                .module_shop_product{
                    overflow: hidden;
                }
                .module_shop_product:hover .iconsSection {
                    left: 10px;
                }
                

                .iconsSection {
                    padding: 10px;
                    position: absolute;
                    top: 10px;
                    left: -100%;
                    z-index: 100;
                    transition: 0.5s ease;
                }
                .img-box:hover .iconsSection{
                               left: 0%;
                }
                .cardMain:hover .iconsSection {
                    left: 10px;
                }

                .icon-bottom svg {
                    height: 14px;
                    width: 14px;
                    padding: 8px;
                }
                .like-svg:hover path{
                    fill: blue;
                }
                .icon-bottom > div {
                    height: 100%;
                }
                .icon-bottom{
                    height: 30px;
                    width: 30px;
                    transition: 0.5s ease-in-out;
                    margin-bottom: 10px;
                    border-radius: 50px;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    background-color: #FEFBF3;
                    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
                }
                .socials_card {
                    left: 0;
                    right: 0;
                    position: absolute;
                    top: 40px;
                    padding-top: 10px;
                    z-index: 50;
                    display: none;
                }
                .shareIcon {
                    width: max-content;
                }
                .icon-bottom > div {
                    height: 100%;
                }
                .socialIcon {
                    border-right: 2px solid #222;
                }
                .red_class{
                    fill: red;
                }
                .red_class:hover path{
                   fill: #ff0000;
                }
            #module_shop_sub_317 .module_shop_product{
                background-color:#ffffff;
                border-radius:3px !important;
            }
            #module_shop_sub_317 .module_shop_product{
                border-radius:2px;
                font-size:13px;
                font-weight:400;
                color:#727272;
                -webkit-transition: 0.55s;
                -moz-transition: 0.55s;
                transition: 0.55s;
                border: 1px solid #eaeaea;
            }
           .module_shop_product .img-box{
                width:100%;
                height:270px;
                padding:1px;
                overflow:hidden;
                position:relative;
            }
            #module_shop_sub_317 .img-box img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            #module_shop_sub_317 .module_shop_product .container-box{
                background-color:#ffffff;
                border-radius:0 0 3px 3px;
            }
            .module_shop_product .container-box{
                padding:10px 15px;
                position:relative;
                text-align:center;
                transition:.2s ease-out;
                overflow:hidden;
                height:calc(100% - 270px);
            }
            .module_shop_product:hover .container-box{
                margin-top: -65px;
                height:calc(100% - 270px + 65px);
            }
            .module_shop_product .star-box{
                min-height:25px;
                height:25px;
                overflow:hidden;
            }
            .module_shop_product .star-box i{
                color:#ffb503;
                font-size:12px;
                margin:5px 1px;
            }
            .module_shop_product .title-box{
                font-size:15px;
                height:50px;
                min-height:50px;
                line-height:25px;
                overflow:hidden;
            }
            #module_shop_sub_317 .module_shop_product .title-box a{
                font-weight:400;
                color:#333;
                transition:color .4s ease-in;
            }
            #module_shop_sub_317 .module_shop_product .title-box a:hover{
                color:#03a9f5;
            }
            .module_shop_product .parent-price-box{
                height:25px;
                min-height:25px;
                line-height:25px;
                overflow:hidden;
            }
            .module_shop_product .tag-box{
                height:20px;
                line-height:20px;
                white-space:nowrap;
                overflow:hidden;
            }
            #module_shop_sub_317 .price-box,#module_shop_sub_317 .discount-box,#module_shop_sub_317 .price-box-delete{
                color:#333;
                font-weight:400;
                font-size:20px;
            }
            #module_shop_sub_317 .price-box-delete{
                text-decoration:line-through;
                color:red;
            }
            #module_shop_sub_317 .background-image-toman{
                height:18px;
                width:32px;
                margin-right:1px
                -webkit-background-size:100% 100%;
                background-size:100% 100%;
                -webkit-background-repeat:no-repeat;
                background-repeat:no-repeat;
                -webkit-background-image:  url("https://noroweb.com/demo-c118/files/main/module/shop/main/img/toman.svg");
                background-image: url("https://noroweb.com/demo-c118/files/main/module/shop/main/img/toman.svg");
                display:inline-block;
                vertical-align:middle;
            }
            .msg-center-box{
                width: 100%;
                text-align: center;
                padding: 100px 0px;
                border: 1px solid;
                font-size: 16px;
                font-weight: 500;
                color: gray;
                margin-top:15px;
            }
            #module_shop_sub_317 .discount-number {
                position: absolute;
                top: 10px;
                right: -14px;
                background: #ff0000;
                background: linear-gradient(133deg, transparent 10px, red 11px);
                padding: 5px 20px;
                color: #fff;
                font-size: 20px;
                min-width: 100px;
            }
            #module_shop_sub_317 .discount-number::after {
                width: 0;
                height: 0;
                border: solid 10px;
                border-color: transparent transparent darkred transparent;
                transform: rotate(-45deg);
                content: "";
                position: absolute;
                right: 4px;
                bottom: -10px;
            }
            #module_shop_sub_317 .new-product{
                position: absolute;
                top: 10px;
                right: 10px;
                padding:0 3px;
                background-color:#03a9f5;
                color:#fff;
                font-size:13px;
                font-weight:400;
                border-radius:4px
            }
            .parent-batc{
                margin-bottom:-65px;
                margin-top:auto;
                height:65px;
                width:100%;
                transition:.2s ease-out;
                opacity:0;
            }
            .module_shop_product:hover .parent-batc{
                opacity:1;
                margin-bottom:0;
            }
            .status_shopping_box_page.unavailable .unavailable_box_page,.shopping_box_page{
                display: flex;
            }
            .unavailable_box_page,.status_shopping_box_page.unavailable .shopping_box_page{
                display: none;
            }
            #module_shop_sub_317 .parent-batc .button-add-to-cart{
                height:45px;
                line-height:45px;
                width:max-content;
                padding:0 10%;
                border-radius:5px;
                background-color:#2879fe;
                color:#fff;
                margin:10px auto;
                cursor:pointer;
                transition:.5s;
                max-width:100%;
            }
            #module_shop_sub_317 .parent-batc .button-add-to-cart:hover{
                background-color:#2266d3;
            }
            .unavailable_box_page button{
                background-color: #7e7880 !important;
            }
            .button-add-to-cart span{
                font-size:14px;
                font-weight:400;
                cursor:pointer;
            }
            .button-add-to-cart i{
                margin-top: -3px;
            }
            .module_shop_product .shop-timer-box{
                position:absolute;
                bottom:10px;
                right:0;
                left:0;
                transition:.2s ease-out;
                background-color:transparent;
            }
            .module_shop_product:hover .shop-timer-box{
                bottom:75px;
            }
            .parent-time-box{
                display:flex;
                justify-content:space-between;
                width:100%;
                padding:0 5px
            }
            .parent-time-box .time-box{
                width:25%;
                max-width:70px;
                margin:0 2px;
                background-color:rgba(256,256,256,.92);
                display:inline-flex;
            }
            .parent-time-box .time-box span{
                color:#4378ff !important;
            }
            .module_shop_product .item_img{
                width: 42px;
                height: 42px;
                margin:8px 2px 2px;
                border-radius: 6px;
                position: relative;
                cursor: pointer;
            }
            .module_shop_product .item_img.active_img{
                border: 2px solid #007bff;
            }
            .module_shop_product .title-item-img{
                position: absolute;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                top: -55px;
                opacity: 0;
                display: block;
                height: 30px;
                line-height: 30px;
                color: #777;
                font-size: 11px;
                font-weight: 400;
                background-color: #fff;
                min-width: 50px;
                white-space: nowrap;
                text-align: center;
                visibility: hidden;
                -webkit-transition: .5s;-moz-transition:  .5s;-ms-transition:  .5s;-o-transition:  .5s;transition:  .5s;
                -webkit-box-shadow: 0 0 5px #f7f8fa;-moz-box-shadow: 0 0 5px #f7f8fa;box-shadow: 0 0 5px #f7f8fa;
                border: 1px solid #efefef;
            }
            .module_shop_product .item_img:hover .title-item-img{
                opacity: 1;
                top: -45px;
                visibility: visible;
            }
            .module_shop_product .item_img .title-item-img:hover{
                opacity: 0;
                top: -55px;
                visibility: hidden;
            }
            .module_shop_product .title-item-img:after{
                content:"";
                border: 7px solid;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                border-color: #efefef transparent transparent transparent;
                position: absolute;
                top: 100%;
            }
            .module_shop_product .item_img .bg-item-img{
                background-size: 60px 60px;
                background-repeat: no-repeat;
                background-position: center center;
                display: block;
                width: 100%;
                height: 100%;
                cursor: pointer;
                border-radius: 4px;
            }
            .chose_size_items .msg-row-box{
                line-height: 35px;
                font-size: 14px;
            }
            .chose_size_items .sub-size-item{
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 12px;
                font-weight: 400;
                text-align: center;
                margin:8px 3px 3px;
                border-radius: 2px;
                vertical-align: middle;
                border: 1px solid #f7f8fa;
                cursor: pointer;
                -webkit-transition: .3s;-moz-transition:  .3s;-ms-transition:  .3s;-o-transition:  .3s;transition:  .3s;
            }
            .chose_size_items .sub-size-item.active_size{
                background-color: #2879fe;
                color: #fff;
                border-color: #6e91ec;
            }
            #module_shop_sub_317 .title-shop{
                margin: 0 auto 16px;
                background-color: transparent;
                height: 48px;
                line-height: 48px;
                text-align: right;
                font-size: 18px;
                color: #236872;
            }
            #module_shop_sub_317 .title-shop a{
                color:inherit
            }
            #module_shop_sub_317 .title-shop:hover{
                background-color: transparent;
                color: #236872;
            }
            #module_shop_sub_317 .btn-view-all{
                text-align: center;
                color: #333;
                background-color: transparent;
                font-size:  14px;
            }
            #module_shop_sub_317 .btn-view-all:hover{
                color: #333;
                background-color: transparent;
            }
            #buy_product a{
                background-color: #2879fe;
                padding: 4px 10px 4px 10px;
                border-radius: 3px;
                color: white;
                display:block;
                width: 100px;
                margin:auto;
                margin-top: 10px;
            }
            #buy_product a:hover{
                background-color: #2266d3;
            }
        .module[data-id_page='1233']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:32px;border-style:none;}.module[data-id_page='1233']:hover{;}.module[data-id_page='1233']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1233'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1233'] 
            
            .module[data-id_page='1233'] .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='1233'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1233']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
                    #module_shop_sub_318 .title-box{
                        font-size:14px;
                    }
                    #module_shop_sub_318 .container_backg{
                        width:100%;
                        margin:auto;
                        background-color: transparent;
                    }
                    #module_shop_sub_318 .w100per{width:100%;}
                    #module_shop_sub_318 .swiper-button-prev,#module_shop_sub_318 .swiper-button-next {
                        display: none;
                    }
                    #module_shop_sub_318 .swiper-button-shop{
                        margin:0 5px;
                        vertical-align:center;
                        width: 40px;
                        text-align: center;
                        cursor: pointer;
                        font-size: 28px;
                        color: #333;
                        -webkit-transition: .2s;-moz-transition:  .2s;-ms-transition:  .2s;-o-transition:  .2s;transition:  .2s;
                    }
                    #module_shop_sub_318 .swiper-button-shop:hover{
                        color: #333;
                    }
                    #module_shop_sub_318 .disabled-button,#module_shop_sub_318 .disabled-button:hover,#module_shop_sub_318 .disabled-button:active{
                        cursor: default;
                        color: #ddd;
                        border: none;
                    }
                    #module_shop_sub_318 .disabled-button i{
                        cursor: default;
                    }
                    #module_shop_sub_318 .title-shop{
                        width: 1200px;
                        min-width: 1200px;
                    }
                    #module_shop_sub_318 .div-title-main{
                        margin-block-start: 0!important;
                    } 
                



                .module_shop_product{
                    overflow: hidden;
                }
                .module_shop_product:hover .iconsSection {
                    left: 10px;
                }
                

                .iconsSection {
                    padding: 10px;
                    position: absolute;
                    top: 10px;
                    left: -100%;
                    z-index: 100;
                    transition: 0.5s ease;
                }
                .img-box:hover .iconsSection{
                               left: 0%;
                }
                .cardMain:hover .iconsSection {
                    left: 10px;
                }

                .icon-bottom svg {
                    height: 14px;
                    width: 14px;
                    padding: 8px;
                }
                .like-svg:hover path{
                    fill: blue;
                }
                .icon-bottom > div {
                    height: 100%;
                }
                .icon-bottom{
                    height: 30px;
                    width: 30px;
                    transition: 0.5s ease-in-out;
                    margin-bottom: 10px;
                    border-radius: 50px;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    background-color: #FEFBF3;
                    box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
                }
                .socials_card {
                    left: 0;
                    right: 0;
                    position: absolute;
                    top: 40px;
                    padding-top: 10px;
                    z-index: 50;
                    display: none;
                }
                .shareIcon {
                    width: max-content;
                }
                .icon-bottom > div {
                    height: 100%;
                }
                .socialIcon {
                    border-right: 2px solid #222;
                }
                .red_class{
                    fill: red;
                }
                .red_class:hover path{
                   fill: #ff0000;
                }
            #module_shop_sub_318 .module_shop_product{
                background-color:#ffffff;
                border-radius:3px !important;
            }
            #module_shop_sub_318 .module_shop_product{
                border-radius:2px;
                font-size:13px;
                font-weight:400;
                color:#727272;
                -webkit-transition: 0.55s;
                -moz-transition: 0.55s;
                transition: 0.55s;
                border: 1px solid #eaeaea;
            }
           .module_shop_product .img-box{
                width:100%;
                height:270px;
                padding:1px;
                overflow:hidden;
                position:relative;
            }
            #module_shop_sub_318 .img-box img{
                width:100%;
                height:100%;
                object-fit:contain;
            }
            #module_shop_sub_318 .module_shop_product .container-box{
                background-color:#ffffff;
                border-radius:0 0 3px 3px;
            }
            .module_shop_product .container-box{
                padding:10px 15px;
                position:relative;
                text-align:center;
                transition:.2s ease-out;
                overflow:hidden;
                height:calc(100% - 270px);
            }
            .module_shop_product:hover .container-box{
                margin-top: -65px;
                height:calc(100% - 270px + 65px);
            }
            .module_shop_product .star-box{
                min-height:25px;
                height:25px;
                overflow:hidden;
            }
            .module_shop_product .star-box i{
                color:#ffb503;
                font-size:12px;
                margin:5px 1px;
            }
            .module_shop_product .title-box{
                font-size:15px;
                height:50px;
                min-height:50px;
                line-height:25px;
                overflow:hidden;
            }
            #module_shop_sub_318 .module_shop_product .title-box a{
                font-weight:400;
                color:#333;
                transition:color .4s ease-in;
            }
            #module_shop_sub_318 .module_shop_product .title-box a:hover{
                color:#03a9f5;
            }
            .module_shop_product .parent-price-box{
                height:25px;
                min-height:25px;
                line-height:25px;
                overflow:hidden;
            }
            .module_shop_product .tag-box{
                height:20px;
                line-height:20px;
                white-space:nowrap;
                overflow:hidden;
            }
            #module_shop_sub_318 .price-box,#module_shop_sub_318 .discount-box,#module_shop_sub_318 .price-box-delete{
                color:#333;
                font-weight:400;
                font-size:20px;
            }
            #module_shop_sub_318 .price-box-delete{
                text-decoration:line-through;
                color:red;
            }
            #module_shop_sub_318 .background-image-toman{
                height:18px;
                width:32px;
                margin-right:1px
                -webkit-background-size:100% 100%;
                background-size:100% 100%;
                -webkit-background-repeat:no-repeat;
                background-repeat:no-repeat;
                -webkit-background-image:  url("https://noroweb.com/demo-c118/files/main/module/shop/main/img/toman.svg");
                background-image: url("https://noroweb.com/demo-c118/files/main/module/shop/main/img/toman.svg");
                display:inline-block;
                vertical-align:middle;
            }
            .msg-center-box{
                width: 100%;
                text-align: center;
                padding: 100px 0px;
                border: 1px solid;
                font-size: 16px;
                font-weight: 500;
                color: gray;
                margin-top:15px;
            }
            #module_shop_sub_318 .discount-number {
                position: absolute;
                top: 10px;
                right: -14px;
                background: #ff0000;
                background: linear-gradient(133deg, transparent 10px, red 11px);
                padding: 5px 20px;
                color: #fff;
                font-size: 20px;
                min-width: 100px;
            }
            #module_shop_sub_318 .discount-number::after {
                width: 0;
                height: 0;
                border: solid 10px;
                border-color: transparent transparent darkred transparent;
                transform: rotate(-45deg);
                content: "";
                position: absolute;
                right: 4px;
                bottom: -10px;
            }
            #module_shop_sub_318 .new-product{
                position: absolute;
                top: 10px;
                right: 10px;
                padding:0 3px;
                background-color:#03a9f5;
                color:#fff;
                font-size:13px;
                font-weight:400;
                border-radius:4px
            }
            .parent-batc{
                margin-bottom:-65px;
                margin-top:auto;
                height:65px;
                width:100%;
                transition:.2s ease-out;
                opacity:0;
            }
            .module_shop_product:hover .parent-batc{
                opacity:1;
                margin-bottom:0;
            }
            .status_shopping_box_page.unavailable .unavailable_box_page,.shopping_box_page{
                display: flex;
            }
            .unavailable_box_page,.status_shopping_box_page.unavailable .shopping_box_page{
                display: none;
            }
            #module_shop_sub_318 .parent-batc .button-add-to-cart{
                height:45px;
                line-height:45px;
                width:max-content;
                padding:0 10%;
                border-radius:5px;
                background-color:#2879fe;
                color:#fff;
                margin:10px auto;
                cursor:pointer;
                transition:.5s;
                max-width:100%;
            }
            #module_shop_sub_318 .parent-batc .button-add-to-cart:hover{
                background-color:#2266d3;
            }
            .unavailable_box_page button{
                background-color: #7e7880 !important;
            }
            .button-add-to-cart span{
                font-size:14px;
                font-weight:400;
                cursor:pointer;
            }
            .button-add-to-cart i{
                margin-top: -3px;
            }
            .module_shop_product .shop-timer-box{
                position:absolute;
                bottom:10px;
                right:0;
                left:0;
                transition:.2s ease-out;
                background-color:transparent;
            }
            .module_shop_product:hover .shop-timer-box{
                bottom:75px;
            }
            .parent-time-box{
                display:flex;
                justify-content:space-between;
                width:100%;
                padding:0 5px
            }
            .parent-time-box .time-box{
                width:25%;
                max-width:70px;
                margin:0 2px;
                background-color:rgba(256,256,256,.92);
                display:inline-flex;
            }
            .parent-time-box .time-box span{
                color:#4378ff !important;
            }
            .module_shop_product .item_img{
                width: 42px;
                height: 42px;
                margin:8px 2px 2px;
                border-radius: 6px;
                position: relative;
                cursor: pointer;
            }
            .module_shop_product .item_img.active_img{
                border: 2px solid #007bff;
            }
            .module_shop_product .title-item-img{
                position: absolute;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                top: -55px;
                opacity: 0;
                display: block;
                height: 30px;
                line-height: 30px;
                color: #777;
                font-size: 11px;
                font-weight: 400;
                background-color: #fff;
                min-width: 50px;
                white-space: nowrap;
                text-align: center;
                visibility: hidden;
                -webkit-transition: .5s;-moz-transition:  .5s;-ms-transition:  .5s;-o-transition:  .5s;transition:  .5s;
                -webkit-box-shadow: 0 0 5px #f7f8fa;-moz-box-shadow: 0 0 5px #f7f8fa;box-shadow: 0 0 5px #f7f8fa;
                border: 1px solid #efefef;
            }
            .module_shop_product .item_img:hover .title-item-img{
                opacity: 1;
                top: -45px;
                visibility: visible;
            }
            .module_shop_product .item_img .title-item-img:hover{
                opacity: 0;
                top: -55px;
                visibility: hidden;
            }
            .module_shop_product .title-item-img:after{
                content:"";
                border: 7px solid;
                right: 50%;
                -webkit-transform: translateX(50%);-moz-transform: translateX(50%);-ms-transform: translateX(50%);-o-transform: translateX(50%);transform: translateX(50%);
                border-color: #efefef transparent transparent transparent;
                position: absolute;
                top: 100%;
            }
            .module_shop_product .item_img .bg-item-img{
                background-size: 60px 60px;
                background-repeat: no-repeat;
                background-position: center center;
                display: block;
                width: 100%;
                height: 100%;
                cursor: pointer;
                border-radius: 4px;
            }
            .chose_size_items .msg-row-box{
                line-height: 35px;
                font-size: 14px;
            }
            .chose_size_items .sub-size-item{
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 12px;
                font-weight: 400;
                text-align: center;
                margin:8px 3px 3px;
                border-radius: 2px;
                vertical-align: middle;
                border: 1px solid #f7f8fa;
                cursor: pointer;
                -webkit-transition: .3s;-moz-transition:  .3s;-ms-transition:  .3s;-o-transition:  .3s;transition:  .3s;
            }
            .chose_size_items .sub-size-item.active_size{
                background-color: #2879fe;
                color: #fff;
                border-color: #6e91ec;
            }
            #module_shop_sub_318 .title-shop{
                margin: 0 auto px;
                background-color: transparent;
                height: px;
                line-height: px;
                text-align: right;
                font-size: px;
                color: ;
            }
            #module_shop_sub_318 .title-shop a{
                color:inherit
            }
            #module_shop_sub_318 .title-shop:hover{
                background-color: transparent;
                color: ;
            }
            #module_shop_sub_318 .btn-view-all{
                text-align: center;
                color: #333;
                background-color: transparent;
                font-size:  14px;
            }
            #module_shop_sub_318 .btn-view-all:hover{
                color: #333;
                background-color: transparent;
            }
            #buy_product a{
                background-color: #2879fe;
                padding: 4px 10px 4px 10px;
                border-radius: 3px;
                color: white;
                display:block;
                width: 100px;
                margin:auto;
                margin-top: 10px;
            }
            #buy_product a:hover{
                background-color: #2266d3;
            }
        .module[data-id_page='1245']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:32px;padding-bottom:16px;border-style:none;}.module[data-id_page='1245']:hover{;}.module[data-id_page='1245']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1245'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1245'] 
            
            .module[data-id_page='1245'] .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='1245'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1245']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #module_new_medical_247 .mode1-size{
               cursor:pointer;
               width:64px;
               height:64px;
            }
            
			#module_new_medical_247 .content_str{
				width:100%;
			}
            #module_new_medical_247 .mode2-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_247 .mode3-size{
               cursor:pointer;
               width:48px;
               height:48px;
            }
            #module_new_medical_247 .mode4-size{
               cursor:pointer;
               width:36px;
               height:36px;
            }
            #module_new_medical_247 .mode5-size{
               cursor:pointer;
               width:20px;
               height:20px;
            }
            #module_new_medical_247 .mode6-size{
               cursor:pointer;
               width:32px;
               height:32px;
            }
            #module_new_medical_247 .mode7-size{
               cursor:pointer;
               display:flex;
               justify-content: center;
               align-items: center;
            }
            #module_new_medical_247 .mode7-size span{
               width:100%;
               text-align:center;
               cursor:pointer;
            }
            .custom1{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom1:hover{
                color:;
            }
            .custom2{
                color:;
                width:px;
                height:px;
                backdrop-filter: blur(0px);
                border:0px dotted ;
            }
            .custom2:hover{
                color:;
              
            }
            #module_new_medical_247 .mode-btn1{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_247 .mode-btn1 svg{
               width:100%;
               height:100%;
               fill:;
            }
            #module_new_medical_247 .mode-btn2{
               ;
                
                    background:
                ;
               margin:0 0.5rem;
               border-radius:px;
               
            }
            #module_new_medical_247 .mode-btn2 svg{
               width:100%;
               height:100%;
               fill:;
            }  
            #module_new_medical_247 .div-btn-title_main{
                display: flex;
                justify-content: right;
                align-items: center;
                padding:0.5rem 0;
            }
        
            #module_new_medical_247 .new_medical_description a,#module_new_medical_247 .new_medical_description_main a{
                color:#00AFEF!important;
            }
            #module_new_medical_247 .new_medical_description a:hover,#module_new_medical_247 .new_medical_description_main a:hover{
                color:#00AFEF!important;
            }
         
                #module_new_medical_247 .swiper-pagination{
                position: absolute;
                left: 50%;
				width:100%!important;
                transform: translate(-50%, -50%);
                height: max-content;
                }
                #module_new_medical_247 .swiper-pagination-bullet{
                    margin: 0 3px;
                }
            #module_new_medical_247 .new_medical_title_main{color:#236872;font-weight:bold;font-size:18px;justify-content:flex-start;text-align:right;line-height:32px;}.module[data-id_page='1245']:hover .new_medical_title_main{}#module_new_medical_247 .new_medical_box_main{display:flex;flex-wrap:wrap;visibility:visible;border-style:none;}.module[data-id_page='1245']:hover .new_medical_box_main{}
            #module_new_medical_247 .new_medical_box > div > div {
                width: 100%;
            }
        
                #module_new_medical_247 .new_medical_module{
                    width:1200px;
                    position:relative;
                    overflow:hidden;
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_247 .medical_box_main_animation_trigger{
                    margin-left:0px;
                    margin-bottom:0px;
                }
                #module_new_medical_247 .new_medical_module:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_247 .medical_box_main_animation_trigger:nth-child(1n){
                    margin-left:0;
                }
                #module_new_medical_247 .new_medical_box_main {
                    display:flex;
                    flex-wrap:wrap;
                }
                #module_new_medical_247 .new_medical_description_main a{
                    color:#00AFEF!important;
                }
                #module_new_medical_247 .new_medical_description_main a:hover{
                    color:#00AFEF!important;
                }
                #module_new_medical_247 .new_medical_box a{
                    cursor:pointer!important;
                }
                #module_new_medical_247 .new_medical_box a .new_medical_title{
                    cursor:pointer!important;
                }
                
            
            #module_new_medical_247 .read-more-less-des {
                width: fit-content;
                text-align: center;
                
                        width: fit-content;
                        margin-right: 50%;
                        transform: translate(50%, 0);
                
                z-index: 1200000;
                position: relative;
            }
            .flex_row_revers{
                flex-direction: row-reverse;
            }
            .flex_row{
                flex-direction: row;
            }
            #module_new_medical_247{
                overflow:hidden;
                min-width:1200px;
            }
            #module_new_medical_247 .new_medical_box{
                margin:auto;
                overflow:hidden;
                position:relative;
                z-index:10;
                display:flex;
                height:100%;
            }
            #module_new_medical_247 .new_medical_box.dno{
                display:none !important;
            }
            #module_new_medical_247 > .container-main{
                position:relative;
                z-index:11;
                /*height:100%*/
            }
            #module_new_medical_247 .new_medical_box{
                height:100%;
                margin-right:auto;
                margin-left:auto;
            }
            
            #module_new_medical_247 .swiper-container{
                width:1200px;
            }
            #module_new_medical_247 .top_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_247 .right_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_247 .left_layer_diagonal{
                z-index:9 !important;
            }
            #module_new_medical_247 .bottom_layer_diagonal{
                z-index:9 !important;
            }
        .module[data-id_page='1246']{;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;padding-top:16px;padding-bottom:32px;border-style:none;}.module[data-id_page='1246']:hover{;}.module[data-id_page='1246']{
                        position:relative;
                        margin-right:auto !important;
                        margin-left:auto !important;
                        overflow:hidden !important;
                    }
                    .module[data-id_page='1246'] > div{
                        position:relative;
                        z-index:12;
                    }
                .module[data-id_page='1246'] 
            
            .module[data-id_page='1246'] .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='1246'] .layer_first_child {
                width: 100%;
            }
        
            .module[data-id_page='1246']:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        .card-box {
  width: 100%;
  padding: 20px 10px 0 10px;
  height: 380px;
  position: relative;
}
.box-radius{
  border-radius: 10px;
  overflow: hidden;
}
.card-box > div {
  height: 100%;
}
.pre {
  position: relative;
}
.card-box:hover .bg-image > img {
  transform: scale(1.2);
  transition: transform 4s ease-out;
}
.bg-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out, opacity 0.35s;
}
.bg-text-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-text-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  content: "";
  background: rgba(0, 0, 0, 0.8);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 65%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 65%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 65%,
    rgba(0, 0, 0, 0.8) 100%
  );
  -webkit-transform: translate3d(0, 35%, 0);
  transform: translate3d(0, 35%, 0);
  -webkit-transition: opacity 0.35s, bottom 0.35s, -webkit-transform 0.4s;
  transition: opacity 0.35s, bottom 0.35s, transform 0.4s;
}
.card-box:hover .bg-text-section::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.text-section {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 30px 25px 30px;
  -webkit-transition: opacity 0.35s, bottom 0.35s, -webkit-transform 0.4s;
  transition: opacity 0.35s, bottom 0.35s, transform 0.4s;
}
.card-box:hover .text-section {
  bottom: 0 !important;
}
.entry-title {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}
.entry-excerpt {
  margin-bottom: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
.post-details {
  color: #fff;
  position: relative;
}
.post-details::after {
  position: absolute;
  display: block;
  
  bottom: -5px;
  width: 0;
  height: 2px;
  content: "";
  transition: width 0.4s ease;
  clear: both;
  background: #1ebbf0;
  background: -webkit-linear-gradient(135deg, #1ebbf0 30%, #39dfaa 100%);
  background: linear-gradient(135deg, #1ebbf0 30%, #39dfaa 100%);
}
.post-details:hover::after {
  width: 100%;
}
.post-details:hover > i{
  color: #1ebbf0;
} 
            .mainContainer{
                padding: 50px;
            }
        
            
                #simple1 .svg_prev{
                    width: 22px;
                    fill: #fff;
                }
                #simple1 .all-content-rw{
                    height:500px;
                }
                #simple1 .svg_next{
                    width: 22px;
                    fill: #fff;
                    transform: rotate(180deg);
                }
                #simple1 .simple_swiper {
                    width: 100%;
                    margin: 0;
                }
                #simple1 .simple_swiper .swiper-slide {
                    text-align: center;
                    font-size: 18px;
                    background: transparent;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                }
                #simple1 .simple_swiper .swiper-next{
                    background: #2a2a2a;
                    color: #fff;
                    width: 50px;
                    height: 50px;
                    opacity: 0.5;
                    cursor: pointer;
                    font-size: 32px;    
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    left: 20px;
                    position: absolute;
                    top: 50%;
                    z-index: 10;
                    transform: translateY(-50%);
                }
                #simple1 .simple_swiper .swiper-prev{
                    background: #2a2a2a;
                    color: #fff;
                    width: 50px;
                    height: 50px;
                    opacity: 0.5;
                    cursor: pointer;
                    font-size: 32px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    right: 20px;
                    position: absolute;
                    top: 50%;
                    z-index: 10;
                    transform: translateY(-50%);
                }
                #simple1 .adv-img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
        
                #module_blogn_sub_1200_1 .swiper-wrapper *{
                    color:inherit;
                }
            
            #module_blogn_sub_1200_1 > div{
                width: 100%;
                margin: 0 auto 0 auto;
                height: auto;
            }
            #module_blogn_sub_1200_1 > div.str_product{
                filter: blur(0px);
                background-color: transparent;
                background-image: transparent;
                background-size: cover;
            }
            #module_blogn_sub_1200_1{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            #module_blogn_sub_1200_1 .title-shop{
                justify-content: flex-start;
                padding:0 15px;
            }
            #module_blogn_sub_1200_1 .title-shop span{
                color: inherit;
                font-size: 16px;
                
                font-weight:500;
                display: flex;
                align-items: center;
            }
            #module_blogn_sub_1200_1 .title-shop a{
                cursor: pointer;
                color: inherit !important;
            }
            #module_blogn_sub_1200_1 .adv-img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                padding: 15px;
                user-drag: none;
                -webkit-user-drag: none;
                user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
            }
        
            body{
                position: relative;
            }
            .dno{
                display: none!important;
            }
            .public-header{
                position: relative;
                transition:5s;
            }
            .absolute-container{
                background-color: #236872;
                border-radius: 7px;
                position: fixed;
                top: 50%;
                left: 2%;
                transform: translateY(-50%);
                padding: 10px;
                z-index: 4900;
            }
            .social-absolute{
                position: relative;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0, 0, 0, .1);
                box-sizing: content-box;
                width: 24px;
                height: 24px;
            }
            .social-absolute:last-child {
                border-bottom: none !important;
            }
            .social-absolute img{
                width: 24px;
                height: 24px;
            }
            .absolute-tooltip{
                position: relative;
                transition: all 0.5s;
                border-radius: 0 7px 7px 0;
                font-size: 14px;
                overflow: hidden;
                white-space: nowrap;
            }
            .absolute-tooltip > span{
                padding: 10px 20px;
                display: block;
            }
            .tooltip-shake{
                display: block;
                width: 100%;
                height: 100%;
            }
            .tooltip-shake:before,
            .tooltip-shake:after {
                position: absolute;
                content: "";
                opacity: 0;
                transition: all 0.4s ease;
                color: #fff;
                font-weight: bold;
            }
            .tooltip-shake:before {
                content: attr(data-tooltip);
                background: #003a8c;
                width: 0;
                padding: 0;
                font-size: 0.9rem;
                top: 50%;
                left: calc(24px + 32px);
                border-radius: 5px;
                transform: translateY(-50%);
                overflow: hidden;
                white-space: nowrap;
            }
            .tooltip-shake:after {
                border-width: 8px 10px 8px 0;
                border-style: solid;
                border-color: transparent #003a8c transparent transparent;
                top: 50%;
                left: calc(24px + 24px);
                transform: translateY(-50%);
            }
            .tooltip-shake:hover::before,
            .tooltip-shake:hover::after {
                opacity: 1;
                overflow: hidden;
                white-space: nowrap;
                transform: translate(0, -50%);
            }
            .tooltip-shake:hover::before {
                width: max-content;
                padding: 10px 25px;
            }
            @keyframes shake {
                0% {
                    transform: rotate(2deg);
                }
                50% {
                    transform: rotate(-3deg);
                }
                70% {
                    transform: rotate(3deg);
                }
                100% {
                    transform: rotate(0deg);
                }
            }
            .social-absolute:hover {
                animation: shake 500ms ease-in-out forwards;
            }
            
                .public-header{
                    width: 100%;
                    background: #fff;
                    background-size: auto;
                    background-repeat: no-repeat;
                }
            
            .adv-banner-container{
                width: 100%;
                height: 64px;
            }
            .adv-banner-container .adv-item{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .top-bar-container{
                width: 100%;
                min-height: 40px;
                height: 40px;
                background: #236872;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-bar{
                width: 1200px;
                height: 100%;
                margin: auto;
                padding: 0 8px;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .top-item{
                height: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container{
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .info-container img{
                width: 32px;
                height: 32px;
            }
            .info-container > span{
                display: inline-flex;
            }
            .top-info,
            .top-social{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-social{
                padding: 5px 0;
            }
            .top-social li a img{
                width: 32px;
                height: 32px;
            }
            .top-social li a span{
                font-size: 0px;
                font-weight: 200;
                color: #fff;
            }
            .top-list{
                width: max-content;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin: 0  0px;
            }
            .top-list:hover{
                color: ;
            }
            
                .top-list:first-child{
                    margin-right : 0;
                }
                .top-list:last-child{
                    margin-left : 0;
                }
            
            .arrow-menu-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .top-list a span,
            .top-list span{
                color: #fff;
                font-weight: bold;
                font-size: 14px;
            }
            .top-list a img,
            .top-list span img{
                margin: 0 5px;
                width: 24px;
                height: 24px;
                object-fit: contain;
            }
            .top-list:first-child a img,
            .top-list:first-child span img{
                margin-right: 0;
            }
            .top-navbar{
                height: 100%;
                background: transparent;
            }
            .top-nav-list{
                position: relative;
                height: 100%;
                padding: 0 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-nav-list a span,
            .top-nav-list span{
                color: #fff;
                font-size: 16px;
                font-weight: 400;search
            }
            .top-nav-list:hover{
                background-color: #ffbb96;
            }
            .top-nav-list .arrow-menu-container svg{
                fill: #fff;
            }
            .top-nav-list:hover a span,
            .top-nav-list:hover span,
            .top-nav-list:hover .arrow-menu-container svg{
                color: #236872;
                fill: #236872;
            }
            .top-nav-list .icon-title-part{
                padding-left: 5px;
            }
            .top-sub-nav > .top-sub-list a span,
            .top-sub-nav > .top-sub-list span{
                color: #000;
            }
            .top-sub-nav > .top-sub-list:hover a span,
            .top-sub-nav > .top-sub-list:hover span{
                color: #236872;
            }
            
            .top-sub-nav{
                flex-direction: column;
                justify-content: center;
                align-content: flex-start;
                position: absolute;
                z-index: 4999;
                min-width: 150px;
                width: max-content;
                background: #2c3e50;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translateY(-10px) scaleY(0.5);
                transform-origin: top;  
                border-radius: 0;
            }
            .top-nav-list:hover > .top-sub-nav{
                display: flex;
                top: 100%;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
        
                .top-nav-list:hover > .top-sub-nav{
                    right: 0;
                }
                .top-sub-list{
                    border-left: 5px solid  #f00;
                }
            
            .top-sub-list{
                width: 100%;
                padding: 8px 20px;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-sub-list:hover{
                background: #ffbb96;
            }
            .header-container{
                display: grid;
                width: 1200px;
                margin: auto;
                height: auto;
                grid-template-rows: 1fr 1fr;  
                grid-template-columns: 1fr 3fr 1fr;
                grid-template-areas: 
                    "top-1 top-2 top-3"
                    "bottom-1 bottom-2 bottom-3"; 
                padding-top: 4px;
                padding-bottom: 4px;
                padding-left: 4px;
                padding-right: 4px;
            }
            .top-section-1{
                grid-area: top-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-2{
                grid-area: top-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .top-section-3{
                grid-area: top-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
                align-items: center;
            }
            .logo-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                padding: 0px  0px;
            }
            .logo-container img{
                display: block;
                width: 148px;
                height: 64px;
                max-width: 148px;
                max-height: 64px;
                object-fit: contain;
            }
            .nav-container{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                box-sizing: border-box;
                margin: 0 10px;
            }
            .nav-container > .navbar{
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                background: ;
                box-sizing: border-box;
                border: px  solid  #ffffff;
                border-radius: 3px;
            }
            
                .nav-container > .navbar{
                    margin-left: calc(0px + 10px);
                }
            
            .max-height{
                height: 700px;
                overflow-x:hidden;
                overflow-y: auto;
                display:flex!important;
                flex-direction: column!important;
                justify-content: flex-start!important;
            }
            .nav-container .navbar .nav-list{
                padding: 10px 18px;
                min-height: 45px;
                position: relative;
                list-style: none;
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-content: center;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list.active{
                background-color: ;
            }
            .nav-container .navbar .nav-list.active a,
            .nav-container .navbar .nav-list.active span{
                color: ;
            }
            
            .nav-container .navbar .nav-list .icon-title-part{
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .nav-container .navbar .nav-list .icon-title-part img{
                width: 24px;
                height: 24px;
                margin: 0 5px;
            }
            .nav-container .navbar .nav-list .overflow-menu{
                justify-content: center !important;
            }
            .nav-container .navbar .nav-list:hover{
                background-color: ;
                box-sizing: border-box;
            }
            .nav-container .navbar .nav-list:hover a,
            .nav-container .navbar .nav-list:hover span{
                color: #d9d9d9 ;
            }
            .nav-container .navbar .nav-list img{
                width: 32px;
                height: 32px;
            }
            .nav-container .navbar .nav-list a,
            .nav-container .navbar .nav-list span{
                text-decoration: none;
                font-size: 14px;
                color: #000;
            }
            .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
            .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                display: flex;
                top: 45px;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                display: flex;
                right: calc(100%  +  2px);
                top: 0;
                clip: auto;
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
            
                    .nav-container .navbar.navbar-sub{
                        position: absolute;
                        z-index: 4999;
                        background: #ffffff;
                        clip: rect(1px, 1px, 1px, 1px);
                        opacity: 0.1;
                        transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                                    opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                        transform: translateY(-10px) scaleY(0.5);
                        transform-origin: top;  
                        border-radius: 0;
                    }
                    .nav-container .navbar.navbar-sub{
                        flex-direction: column;
                        justify-content: center;
                        align-content: flex-start;
                        min-width: 150px;
                        width: max-content;
                    }
                    .nav-container .navbar .nav-list.base-level:hover > .navbar.navbar-sub,
                    .nav-container .navbar .nav-list:hover > .overflow-menu > .navbar.navbar-sub{
                        right: 0;
                    }
                    .nav-container .navbar .nav-list:hover > .navbar.navbar-sub{
                        right: calc(100%  +  2px);
                    }
                    .nav-container .navbar.navbar-sub .nav-list{
                        width:200px;
                        border-left: 2px solid #cf1322;
                    }
                
            .arrow-icon-menu{
                width: 8px;
                height: 8px;
            }
            .arrow-icon-menu.arrow-bottom{
                transform: rotate(90deg);
            }
            
                .arrow-menu-container{
                    margin-right: 5px;
                }
                .arrow-icon-menu.arrow-right,
                .overflow-list .arrow-icon-menu.arrow-bottom{
                    transform: rotate(180deg);
                }
                .nav-container .navbar .nav-list:first-child:hover{
                    border-radius: 0 3px 3px 0;
                }
                .nav-container .navbar .nav-list:last-child:hover{
                    border-radius: 3px 0 0 3px;
                }
            
            .nav-container .navbar .nav-list.base-level svg,
            .nav-container .navbar .nav-list .overflow-menu svg{
                fill: #000;
            }
            .nav-container .navbar .nav-list.base-level:hover svg{
                fill: #d9d9d9;
            }
            .sub-menu-container{
                position: absolute;
                min-width: 150px;
                background-color: #ffffff;
                color: #fff;
                top: 32px;
                right: 0;
                z-index: 4999;
               /* display: none;*/
            } 
            /*.sub-navbar{
                width: 100%;
                height: 100%;
            }*/
            .nav-container .navbar.navbar-sub .nav-list img{
                width: px;
                height: px;
            }
            .nav-container .navbar.navbar-sub .nav-list a,
            .nav-container .navbar.navbar-sub .nav-list span{
                color: #000000;
                font-size: 14px;
            }
            .nav-list.with-sub-menu:hover .sub-menu-container{
                display: block;
            }
            .nav-container .navbar.navbar-sub .nav-list .arrow-menu-container svg{
                fill: #000000;
            }
            .active{
                background-color: ;
            }
            .active a{
                color: ;
            }     
            .icon-container{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
            }
            .icon-container .icon-item{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-content: center;
                box-sizing: border-box;
                min-height: 45px;
                margin: 0 5px;
            }
            
                .icon-container .icon-item:first-child{
                    margin-right: 0 !important;
                }
                .icon-container .icon-item:last-child{
                    margin-left: 0 !important;
                }
                
            
            .icon-container .icon-item a{
                border: 0px  solid  #ffffff;
            }
            .icon-container .icon-item.basket-icon{
                position: relative;
                color: #000;
                min-width: 45px;
                min-height: 45px;
                outline: none;
                border-radius: 3px;
                background: ;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                text-decoration: none;
                margin: 0 10px;
            }
            .icon-container .icon-item .icon-shortcut{
                color: #000;
                min-width: 45px;
                min-height: 45px;
                margin: 0;
                outline: none;
                border-radius: 3px;
                background: ;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: .4s;
                cursor: pointer;
                text-decoration: none;
            }
            
            .basket-shop{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 45px;
                height: 45px;
                border-radius: 3px;
            }
            .icon-container .icon-item .icon-shortcut:hover svg,
            .icon-container .icon-item .icon-shortcut:hover .add-item-to-cart.open span
            {
                fill: #fff;
                color: #fff;
            }
            
                .icon-container .icon-item.basket-icon .add-item-to-cart{
                    color: #000;
                    border-radius: 3px;
                    background: ;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    transition: .4s;
                    cursor: pointer;
                    box-sizing: content-box;
                    border: 0px  solid  #ffffff;
                }
                
                    .icon-container .icon-item.basket-icon .add-item-to-cart{
                        border-left: none !important;
                    }
                    .border-basket{
                        border-right: none !important;
                    }
                
                    .icon-container .icon-item:hover > span,
                    .icon-container .icon-item.login-icon:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover,
                    .icon-container .icon-item.login-icon .icon-shortcut:hover,
                    
                    .icon-container .icon-item.basket-icon .icon-shortcut:hover .add-item-to-cart{
                       background: transparent;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open{
                        width: 45px;
                        border-radius: 0 3px 3px 0;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                    }
                    .icon-container .icon-item.basket-icon:hover .add-item-to-cart.open{
                        background: transparent;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open:hover span{
                        color: #fff;
                    }
                    .icon-container .icon-item.basket-icon .add-item-to-cart.open + .icon-shortcut{
                        border-radius: 3px 0 0 3px;
                    }
                    .icon-container .icon-item.lang-icon .icon-shortcut:hover{
                        background: transparent;
                    }
                    .icon-container .icon-item.search-icon .icon-shortcut .search-container .search-btn:hover{
                        background: transparent;
                    }
                 
            .icon-container .icon-item svg{
                width: 25px;
                height: 25px;
            
                fill: #000;
            
            }
            .icon-container .icon-item.login-icon{
                position: relative;
            }
            /*.icon-container .icon-item.login-icon .icon-shortcut{
                width: 100%;
                height: 100%;
            }*/
            .icon-container .icon-item.login-icon .icon-login{
                width: 25px;
                height: 25px;
            }
            #div_profile_picture, 
            #div_profile_picture_metro {
                display: block;
                width: 0 !important;
                height: 0 !important;
                line-height: unset !important;
            }
            #div_profile_picture .rShowLogin{
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 0;
                z-index: -1000;
            }
            #div_profile_picture .login-container{
                display: none !important;
            }
            #div_profile_picture #profile_picture,
            #div_profile_picture #profile_exit{
                display: none !important;
            }
        
                .icon-container .icon-item.login-icon{
                    color: #000;
                    /*width: 90px !important;*/
                    min-height: 45px;
                    outline: none;
                    border-radius: 3px;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    text-decoration: none;
                    box-sizing: content-box;
                    border: 0px  solid  #ffffff;
                }
                .icon-container .icon-item.login-icon .status-user,
                .icon-container .icon-item.login-icon .icon-login{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    margin: 0 5px;
                    font-size:14px;
                }
            
            .public-header .bottom-section-1{
                grid-area: bottom-1;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-2{
                grid-area: bottom-2;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            .public-header .bottom-section-3{
                grid-area: bottom-3;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
            }
            
                        .search-container .search-input{
                            border-left: none !important;
                            border-radius: 0 3px 3px 0;
                        }
                        .search-container .search-btn{
                            border-right: none !important; 
                            border-radius: 3px 0 0 3px;
                        }
                    
                .search-container{
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 45px;
                    padding: 0 6%;
                    transition: .8s;
                }
                .search-container .search-input{
                    width: 95%;
                    height: calc(2 * 0px + 45px);
                    padding: 5px 10px; 
                    background-color: #f0f0f0;
                    color: #f0f0f0;
                    border: 0px  solid  ;
                }
                .search-container .search-input::placeholder{
                    color: #aaa;
                }
                .search-container .search-btn{
                    width: 45px;
                    height: 100%;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    background-color: #fff;
                    box-sizing: border-box;
                    border: 0px  solid  ;
                }
                .search-container .search-btn svg{
                    width: 20px;
                    height: 20px;
                    fill: #000;
                }
                .icon-container .search-icon{
                    display: none;
                }
                .search-container > .search-btn:hover svg,
                .search-container > .close-search-btn:hover svg{
                    fill: #fff;
                }
            
            .sticky{
                width: 100vw;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 999;
                padding: 2vh 8vw;
                transition: .8s;
                background-color:  !important;
            }
            .public_sticky{
                width: 100%;
                height: max-content;
                position: fixed;
                top: 0;
                right: 0;
                left: 0;
                z-index: 1001;
            }
            .d-none{
                display: none !important;
            }
            .border-left-n{
                border-left: none !important;
            }
            .border-right-n{
                border-right: none !important;
            }
            .w-1200px{
                width: 1200px !important;
                margin: auto;
            }
            .lang-icon{
                position: relative;
            }
            .language-container .lang-btn{
                width: 25px;
                height: 25px;
            }
            .lang-list-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .lang-list{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px;
                background: #fff;
                border-radius: 3px;
            }
            .lang-list::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #fff;
                display: block;
            }
            .lang-nav{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .lang-nav .lang-li{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                list-style: none;
                width: max-content;
                margin: 5px 0;
                
            }
            .lang-nav .lang-li a{
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            .lang-nav .lang-li img{
                width: 25px;
                height: 25px;
                object-fit: cover;
                margin: 0 4px;
            }
            .lang-nav .lang-li span{
                text-transform: uppercase;
                line-height: 2.5;
                font-size: 14px;
                margin: 0 4px;
                color: #fff;
            }
            .lang-nav .lang-li a{
                color: #fff;
            }
            .lang-nav .lang-li span:hover{
                cursor: pointer;
                color: #fff;
            }
            .lang-nav .lang-li .lang-active{
                font-weight: bold;
                color: #fff;
            }
            .icon-item.lang-icon:hover .lang-list-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            /*---------------------------------------------------------------------------------*/
            .link-profile-container{
                width: max-content;
                height: max-content;
                padding-top: 20px;
                position: absolute;
                top: 35px;
                left: 50%;
                clip: rect(1px, 1px, 1px, 1px);
                opacity: 0.1;
                transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1),
                            opacity 0.6s cubic-bezier(0.2, 0, 0.2, 1);
                transform: translate(-50%, 0) scaleY(0.5);
                transform-origin: top;
                z-index: 100;
            }
            .link-profile-container .link-wrapper{
                position: relative;
                width: max-content;
                height: max-content;
                padding: 10px 25px;
                background: #fff;
                border-radius: 3px;
            }
            .link-profile-container .link-wrapper a{
                color: #fff;
            }
            .link-profile-container .link-wrapper a:hover{
                cursor: pointer;
                color: #fff;
            }
            .link-profile-container .link-wrapper::after{
                content: "";
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-bottom: 10px solid #fff;
                display: block;
            }
             .icon-item.login-icon:hover .link-profile-container{
                clip: auto;
                opacity: 1;
                transform: translate(-50%, 0) scaleY(1);
            }
            
            .backTop{
                display: flex !important;
            }
            #back_to_top{
                display: none;
                position: fixed;
                transition: ms;
                right: 15px;
                left: unset;
                bottom: 50px;
                z-index: 100;
                border-radius: 100%;
                border: 3px  solid  #ffffff;
                padding: 10px;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                background-color: #002766;
            }
            #back_to_top svg{
                width: 15px;
                height: 15px;
                fill: #ffffff;
            }
            #back_to_top img{
                width: 15px;
                height: 15px;
                fill: #ffffff;
                object-fit:contain;
            }
            .search-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .basket-shop img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .lang-btn img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
            .icon-login img{
                width: 25px;
                height: 25px;
                object-fit: contain;
            }
        
                    .header-container{
                        grid-template-rows: 1fr .1fr auto;  
                        grid-template-columns: 148px 3fr 1fr;
                        grid-template-areas: 
                            "top-1 top-2 top-3"
                            "line line line"
                            "bottom-1 bottom-1 bottom-1"; 
                    }
                    .line{
                        grid-area: line;
                        width: 100%;
                        border-bottom: 1px solid #2c3e50;
                        padding-top: 15px;
                    }
                    .top-section-1{
                        justify-content: flex-start;
                    }
                    .logo-container{
                        justify-content: flex-start;
                    }
                    .nav-container{
                        padding: 15px;
                        justify-content: center;
                        
                    }
                    .nav-container .navbar{
                        justify-content: center;
                    }
                    .bottom-section-1{
                        justify-content: flex-start;
                    }
                    .search-command{
                        border: 0px  solid  #ffffff !important;
                    }
                    #module_footer_section_1{
;
width:90%;
background-color:#eceff1;
justify-content:center;
padding-top:2vw;
padding-right:2%;
padding-bottom:2vw;
padding-left:2%;
border-style:none;
}#module_footer_column_1{
;
width:18%;
justify-content:center;
border-style:none;
}#module_footer_row_1{
;
justify-content:center;
border-style:none;
}#module_footer_items_1{
;
cursor:default;
text-align:center;
width:6vw;
height:6vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_1:hover{
;
}#module_footer_row_2{
;
justify-content:center;
border-style:none;
}#module_footer_items_2{
;
cursor:default;
text-align:center;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_2:hover{
;
}#module_footer_column_2{
;
width:18%;
justify-content:center;
border-style:none;
}#module_footer_row_4{
;
justify-content:center;
border-style:none;
}#module_footer_items_3{
;
cursor:default;
width:6vw;
height:6vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_3:hover{
;
}#module_footer_row_5{
;
justify-content:center;
border-style:none;
}#module_footer_items_4{
;
cursor:default;
text-align:center;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_4:hover{
;
}#module_footer_column_3{
;
width:18%;
justify-content:center;
border-style:none;
}#module_footer_row_8{
;
justify-content:center;
border-style:none;
}#module_footer_items_5{
;
cursor:default;
width:6vw;
height:6vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_5:hover{
;
}#module_footer_row_9{
;
justify-content:center;
border-style:none;
}#module_footer_items_6{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_6:hover{
;
}#module_footer_column_4{
;
width:18%;
justify-content:center;
border-style:none;
}#module_footer_row_10{
;
justify-content:center;
border-style:none;
}#module_footer_items_7{
;
cursor:default;
width:6vw;
height:6vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_7:hover{
;
}#module_footer_row_11{
;
justify-content:center;
border-style:none;
}#module_footer_items_8{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_8:hover{
;
}#module_footer_column_5{
;
width:18%;
justify-content:center;
border-style:none;
}#module_footer_row_12{
;
justify-content:center;
border-style:none;
}#module_footer_items_9{
;
cursor:default;
width:6vw;
height:6vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_9:hover{
;
}#module_footer_row_13{
;
justify-content:center;
border-style:none;
}#module_footer_items_10{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_10:hover{
;
}#module_footer_section_2{
;
width:90%;
background-color:#eceff1;
padding-top:2vw;
padding-right:2%;
padding-bottom:2vw;
padding-left:2%;
border-style:none;
}#module_footer_column_6{
;
width:30%;
margin-top:0vw;
justify-content:center;
border-style:none;
}#module_footer_row_14{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_11{
;
cursor:default;
font-weight:500;
font-size:1.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_11:hover{
;
}#module_footer_row_15{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_12{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
}#module_footer_items_12:hover{
;
}#module_footer_row_16{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_13{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_13:hover{
;
}#module_footer_row_17{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_14{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_14:hover{
;
}#module_footer_column_7{
;
width:30%;
margin-top:0vw;
justify-content:center;
border-style:none;
}#module_footer_row_18{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_15{
;
cursor:default;
font-weight:500;
font-size:1.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_15:hover{
;
}#module_footer_row_19{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_16{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
}#module_footer_items_16:hover{
;
}#module_footer_row_20{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_17{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_17:hover{
;
}#module_footer_row_21{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_18{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_18:hover{
;
}#module_footer_row_22{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_19{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_19:hover{
;
}#module_footer_row_23{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_20{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_20:hover{
;
}#module_footer_column_8{
;
width:30%;
margin-top:0vw;
justify-content:center;
border-style:none;
}#module_footer_row_24{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_21{
;
cursor:default;
text-align:right;
font-weight:500;
font-size:1.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_21:hover{
;
}#module_footer_row_25{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_22{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_22:hover{
;
}#module_footer_row_28{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_25{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_25:hover{
;
}#module_footer_row_29{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_26{
;
cursor:default;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1vw;
}#module_footer_items_26:hover{
;
}#module_footer_section_3{
;
width:90%;
background-color:#eceff1;
padding-top:2vw;
padding-right:2%;
padding-bottom:2vw;
padding-left:2%;
border-style:none;
}#module_footer_column_10{
;
width:70%;
justify-content:center;
border-style:none;
}#module_footer_row_31{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_28{
;
cursor:default;
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_28:hover{
;
}#module_footer_items_29{
;
cursor:default;
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:1vw;
}#module_footer_items_29:hover{
;
}#module_footer_items_30{
;
cursor:default;
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:1vw;
}#module_footer_items_30:hover{
;
}#module_footer_column_11{
;
width:30%;
justify-content:center;
border-style:none;
}#module_footer_row_32{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_31{
;
cursor:default;
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_31:hover{
;
}#module_footer_row_33{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_32{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
}#module_footer_items_32:hover{
;
}#module_footer_items_33{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
margin-right:1vw;
}#module_footer_items_33:hover{
;
}#module_footer_items_34{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
margin-right:1vw;
}#module_footer_items_34:hover{
;
}#module_footer_items_35{
;
cursor:default;
width:2vw;
height:2vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
margin-right:1vw;
}#module_footer_items_35:hover{
;
}#module_footer_section_4{
;
width:90%;
background-color:#eceff1;
padding-top:2vw;
padding-right:2%;
padding-bottom:2vw;
padding-left:2%;
border-style:none;
}#module_footer_column_12{
;
width:60%;
justify-content:center;
border-style:none;
}#module_footer_row_34{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_36{
;
cursor:default;
font-weight:500;
font-size:1.25vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_36:hover{
;
}#module_footer_row_35{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_37{
;
cursor:default;
line-height:2.25vw;
font-weight:300;
font-size:1vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
margin-top:1.5vw;
}#module_footer_items_37:hover{
;
}#module_footer_column_13{
;
width:40%;
justify-content:center;
border-style:none;
}#module_footer_row_36{
;
justify-content:flex-start;
border-style:none;
}#module_footer_items_38{
;
cursor:default;
width:10vw;
height:10vw;
background-color:#f0f0f0;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:solid;
border-top-width:.10vw;
border-right-width:.10vw;
border-bottom-width:.10vw;
border-left-width:.10vw;
border-color:#e5e5ea;
margin-right:1vw;
padding-top:1vw;
padding-right:1vw;
padding-bottom:1vw;
padding-left:1vw;
}#module_footer_items_38:hover{
;
}
                                #module_footer_items_38{
                                    #f0f0f0
                                }
                            #module_footer_items_39{
;
cursor:default;
width:10vw;
height:10vw;
background-color:#f0f0f0;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:solid;
border-top-width:.10px;
border-right-width:.10px;
border-bottom-width:.10px;
border-left-width:.10px;
border-color:#e5e5ea;
margin-right:1vw;
padding-top:1vw;
padding-right:1vw;
padding-bottom:1vw;
padding-left:1vw;
}#module_footer_items_39:hover{
;
}
                                #module_footer_items_39{
                                    #f0f0f0
                                }
                            #module_footer_section_5{
;
width:90%;
background-color:#eceff1;
padding-top:2vw;
padding-right:2%;
padding-bottom:2vw;
padding-left:2%;
border-style:none;
}#module_footer_column_14{
;
justify-content:center;
border-style:none;
}#module_footer_row_37{
;
justify-content:center;
border-style:none;
}#module_footer_items_41{
;
cursor:default;
font-weight:300;
font-size:.95vw;
transition-duration:600ms;
transition-delay:0ms;
transition-timing-function:ease;
visibility:visible;
opacity:1;
border-style:none;
}#module_footer_items_41:hover{
;
}#public_footer_main_1{;background-color:#eceff1;background-size:cover;background-repeat:no-repeat;background-position:center;background-attachment:scroll;width:100%;max-width:100%;border-style:none;}#public_footer_main_1:hover{;}
                #public_footer_main_1{
                    position:relative;
                    margin-right:auto !important;
                    margin-left:auto !important;
                    overflow:hidden !important;
                }
                #public_footer_main_1 > div{
                    position:relative;
                    z-index:12;
                }
                
                #public_footer_main_1 
            
            #public_footer_main_1 .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_1 .layer_first_child {
                width: 100%;
            }
        
            #public_footer_main_1:hover .new_admin_layer {
                border-radius: 0 !important;
                
                background-color: rgba(0,0,0,0);
            }
        
            #msg_footer.msg_footer,
            #msg_footer_complete.msg_footer{
                position: fixed;
                top: 50px;
                right: 10px;
                width: 400px;
                height: 50px;
                z-index: 10000;
                border-radius: 3px;
            }

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

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

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

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

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